APIVerve.API.MetadataExtractor 1.1.2

dotnet add package APIVerve.API.MetadataExtractor --version 1.1.2                
NuGet\Install-Package APIVerve.API.MetadataExtractor -Version 1.1.2                
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="APIVerve.API.MetadataExtractor" Version="1.1.2" />                
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add APIVerve.API.MetadataExtractor --version 1.1.2                
#r "nuget: APIVerve.API.MetadataExtractor, 1.1.2"                
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install APIVerve.API.MetadataExtractor as a Cake Addin
#addin nuget:?package=APIVerve.API.MetadataExtractor&version=1.1.2

// Install APIVerve.API.MetadataExtractor as a Cake Tool
#tool nuget:?package=APIVerve.API.MetadataExtractor&version=1.1.2                

Metadata Extractor API

Metadata Extractor is a simple tool for extracting metadata from web pages. It returns the meta title, meta description, and more.

Build Status Code Climate Prod Ready

This is a .NET Wrapper for the Metadata Extractor API


Installation

Using the .NET CLI:

dotnet add package APIVerve.API.MetadataExtractor

Using the Package Manager:

nuget install APIVerve.API.MetadataExtractor

Using the Package Manager Console:

Install-Package APIVerve.API.MetadataExtractor

From within Visual Studio:

  1. Open the Solution Explorer.
  2. Right-click on a project within your solution.
  3. Click on Manage NuGet Packages...
  4. Click on the Browse tab and search for "APIVerve.API.MetadataExtractor".
  5. Click on the APIVerve.API.MetadataExtractor package, select the appropriate version in the right-tab and click Install.

Configuration

Before using the metadataextractor API client, you have to setup your account and obtain your API Key.
You can get it by signing up at https://apiverve.com


Usage

The Metadata Extractor API documentation is found here: https://docs.apiverve.com/api/metadataextractor.
You can find parameters, example responses, and status codes documented here.

Setup

Authentication

Metadata Extractor API uses API Key-based authentication. When you create an instance of the API client, you can pass your API Key as a parameter.

// Create an instance of the API client
var apiClient = new MetadataExtractorAPIClient("[YOUR_API_KEY]", true);

Perform Request

Using the API client, you can perform requests to the API.

Define Query
var queryOptions = new metadataextractorQueryOptions {
  url = "https://myspace.com"
};
Simple Request
var response = apiClient.Execute(queryOptions);
if(response.error != null) {
	Console.WriteLine(response.error);
} else {
    var jsonResponse = JsonConvert.SerializeObject(response, Newtonsoft.Json.Formatting.Indented);
    Console.WriteLine(jsonResponse);
}
Example Response
{
  "status": "ok",
  "error": null,
  "data": {
    "requestUrl": "https://myspace.com",
    "url": "https://myspace.com/",
    "canonical": "https://myspace.com/discover/featured",
    "charset": "utf-8",
    "title": "Featured Content on Myspace",
    "image": "",
    "favicons": [
      {
        "rel": "shortcut icon",
        "href": "https://x.myspacecdn.com/new/common/images/favicons/favicon.ico"
      },
      {
        "rel": "icon",
        "href": "https://x.myspacecdn.com/new/common/images/favicons/favicon.png"
      },
      {
        "rel": "apple-touch-icon",
        "href": "https://x.myspacecdn.com/new/common/images/favicons/57-iPhone.png"
      },
      {
        "rel": "apple-touch-icon",
        "href": "https://x.myspacecdn.com/new/common/images/favicons/72-iPad.png",
        "sizes": "72x72"
      },
      {
        "rel": "apple-touch-icon",
        "href": "https://x.myspacecdn.com/new/common/images/favicons/114-Retina-iPhone.png",
        "sizes": "114x114"
      },
      {
        "rel": "apple-touch-icon",
        "href": "https://x.myspacecdn.com/new/common/images/favicons/144-Retina-iPad.png",
        "sizes": "144x144"
      }
    ],
    "author": "",
    "description": "Featured Content on Myspace",
    "keywords": "Myspace, social entertainment, artist tools, social media, social discovery, creative community, empowering expression, stream music, music videos, music, share music, playlists, mixes, profiles, discovery, discover",
    "source": "",
    "price": "",
    "priceCurrency": "",
    "availability": "",
    "robots": "",
    "jsonld": [],
    "og:url": "https://myspace.com/discover/featured",
    "og:locale": "",
    "og:locale:alternate": "",
    "og:title": "Featured Content on Myspace",
    "og:type": "article",
    "og:description": "Featured Content on Myspace",
    "og:determiner": "",
    "og:site_name": "Myspace",
    "og:image": "",
    "og:image:secure_url": "",
    "og:image:type": "",
    "og:image:width": "",
    "og:image:height": "",
    "twitter:title": "",
    "twitter:description": "",
    "twitter:image": "",
    "twitter:image:alt": "",
    "twitter:card": "",
    "twitter:site": "",
    "twitter:site:id": "",
    "twitter:url": "",
    "twitter:account_id": "",
    "twitter:creator": "",
    "twitter:creator:id": "",
    "twitter:player": "",
    "twitter:player:width": "",
    "twitter:player:height": "",
    "twitter:player:stream": "",
    "twitter:app:name:iphone": "",
    "twitter:app:id:iphone": "",
    "twitter:app:url:iphone": "",
    "twitter:app:name:ipad": "",
    "twitter:app:id:ipad": "",
    "twitter:app:url:ipad": "",
    "twitter:app:name:googleplay": "",
    "twitter:app:id:googleplay": "",
    "twitter:app:url:googleplay": "",
    "headings": [
      {
        "level": "h2",
        "text": "Discover"
      },
      {
        "level": "h2",
        "text": "Thom Yorke Surprise-Releases New Song ‘5.17’"
      },
      {
        "level": "h2",
        "text": "Charli XCX shares full ‘Crash’ track listing"
      },
      {
        "level": "h2",
        "text": "Fly Anakin Carves His Own Lane on Frank"
      },
      {
        "level": "h2",
        "text": "Rammstein share powerful new ballad ‘Zeit’ and unveil new album"
      },
      {
        "level": "h2",
        "text": "Deftones Part Ways With Bassist Sergio Vega"
      },
      {
        "level": "h2",
        "text": "Yeah Yeah Yeahs Tease First New Music in More Than Nine Years"
      },
      {
        "level": "h3",
        "text": "Connect with People"
      },
      {
        "level": "h2",
        "text": "Behind the Scenes of Mothica’s Newest Mental Health-Based Track, ‘Sensitive’"
      },
      {
        "level": "h2",
        "text": "Dolly Parton ‘Respectfully Bows Out’ of Rock Hall Nomination"
      },
      {
        "level": "h2",
        "text": "Bikini Kill Detail 2022 Summer Tour"
      },
      {
        "level": "h2",
        "text": "The Rolling Stones Announce 60th Anniversary Tour"
      },
      {
        "level": "h2",
        "text": "Yungblud Shares ‘The Funeral’ Video With Ozzy and Sharon Osbourne Cameo"
      },
      {
        "level": "h2",
        "text": "Flea Joins Nick Cave and Warren for Performance of ‘We No Who U R’"
      },
      {
        "level": "h2",
        "text": "The Best in Music & Culture. All In One Place."
      },
      {
        "level": "h2",
        "text": "George R.R. Martin gives update on ‘Game Of Thrones’ spin-offs"
      },
      {
        "level": "h2",
        "text": "Mike Cross, Founding Guitarist of Sponge, Dies at 57"
      },
      {
        "level": "h2",
        "text": "Black Keys Announce 11th Studio Album Dropout Boogie, Share ‘Wild Child’"
      },
      {
        "level": "h2",
        "text": "Florence + The Machine Announce Dance Fever, Release ‘My Love’"
      },
      {
        "level": "h2",
        "text": "How MGMT’s ‘Little Dark Age’ Became an Unstoppable TikTok Meme"
      },
      {
        "level": "h2",
        "text": "Pavement Unveil New Video for ‘Harness Your Hopes’"
      },
      {
        "level": "h2",
        "text": "Myspace Exclusives"
      },
      {
        "level": "h3",
        "text": "GETTING NAILED"
      },
      {
        "level": "h4",
        "text": "Too Short - Getting Nailed"
      },
      {
        "level": "h3",
        "text": "THE PEDICAB INTERVIEWS"
      },
      {
        "level": "h4",
        "text": "The Pedicab Interviews: Chris Cole"
      },
      {
        "level": "h2",
        "text": "Red Hot Chili Peppers, Nine Inch Nails, Slipknot and KISS to Headline Louder Than Life Lineup"
      },
      {
        "level": "h2",
        "text": "Florence Pugh in talks to star in ‘Dune: Part Two’"
      },
      {
        "level": "h2",
        "text": "The National’s new album has a “classic” sound with “a lot of energy”"
      },
      {
        "level": "h2",
        "text": "Bob Dylan Announces First New Book in 18 Years"
      },
      {
        "level": "h2",
        "text": "The Muppets series about Electric Mayhem Band in the works"
      },
      {
        "level": "h2",
        "text": "King Gizzard and the Lizard Wizard Tease First Double LP With 18-Minute Single"
      },
      {
        "level": "h2",
        "text": "Alanis Morissette Details Jagged Little Pill 25th Anniversary Tour"
      },
      {
        "level": "h2",
        "text": "Blink-182’s Travis Barker is developing a new reality TV series, ‘Inked And Iced’"
      },
      {
        "level": "h2",
        "text": "John Doe to Release New Solo Album"
      },
      {
        "level": "h2",
        "text": "Snoop Dogg joins esports outfit Faze Clan as a content creator"
      },
      {
        "level": "h2",
        "text": "The Weeknd to Appear on Upcoming Episode of The Simpsons"
      },
      {
        "level": "h2",
        "text": "Arcade Fire continue to tease new material with sheet music and postcards"
      },
      {
        "level": "h2",
        "text": "Wage War on Their Rise and the Importance of Mental Health"
      },
      {
        "level": "h2",
        "text": "Watch Vince Staples’ Surrealist Video for ‘Magic’"
      },
      {
        "level": "h2",
        "text": "Sam Smith and Normani sued for “obvious” copyright infringement on collaboration"
      },
      {
        "level": "h2",
        "text": "Lady Gaga Announces Chromatica Ball Summer Stadium Tour"
      },
      {
        "level": "h2",
        "text": "‘Peaky Blinders’ fans celebrate Tom Hardy’s return as Alfie Solomons"
      },
      {
        "level": "h2",
        "text": "Phoebe Bridgers Shares Haunting Cover of Billie Eilish’s ‘When The Party’s Over’"
      },
      {
        "level": "h2",
        "text": "Dua Lipa reacts to Oscar Isaac fan-fiction story about her on ‘Saturday Night Live’"
      },
      {
        "level": "h2",
        "text": "A Portrait of the Artist as A Jung Man"
      },
      {
        "level": "h2",
        "text": "Pearl Jam’s Stone Gossard on Reviving Loosegroove Label: ‘I’m Still A Kid in the Sandbox’"
      },
      {
        "level": "h2",
        "text": "‘The Batman’: Post-credits tease features a secret Riddler message"
      },
      {
        "level": "h2",
        "text": "Red Hot Chili Peppers Share Latest Single ‘Poster Child’"
      },
      {
        "level": "h2",
        "text": "James Gunn supports Pete Davidson after Kanye West’s controversial ‘Eazy’ video"
      },
      {
        "level": "h2",
        "text": "Kevin Morby Announces New Album This Is A Photograph"
      },
      {
        "level": "h2",
        "text": "‘The Boys’ actor Antony Starr gets suspended prison sentence after assault in pub"
      },
      {
        "level": "h2",
        "text": "Madonna, Sickick and Fireboy DML Remix Her 1998 Hit ‘Frozen’"
      },
      {
        "level": "h2",
        "text": "The Lemonheads Headline Official SPIN SXSW Showcase With 30th Anniversary Set of It’s a Shame About Ray"
      },
      {
        "level": "h2",
        "text": "The Weeknd Details 2022 North American Stadium Tour Dates"
      },
      {
        "level": "h2",
        "text": "L’Eclair Are Jamming Their Way to Instrumental Bliss"
      },
      {
        "level": "h2",
        "text": "Jack White and Q-Tip Join Forces on New Single ‘Hi-De-Ho’"
      },
      {
        "level": "h2",
        "text": "Band of Horses Survived…Barely"
      },
      {
        "level": "h2",
        "text": "Brad Pitt takes on Bad Bunny in trailer for action thriller ‘Bullet Train’"
      },
      {
        "level": "h2",
        "text": "Belle and Sebastian to Release First Album in 7 Years, Listen to ‘Unnecessary Drama’"
      },
      {
        "level": "h2",
        "text": "John DiMaggio to return as Bender in ‘Futurama’ revival: “I’m back, baby!”"
      },
      {
        "level": "h2",
        "text": "The Offspring Detail U.S. Spring Tour"
      },
      {
        "level": "h2",
        "text": "Charli XCX tells critics of new single: “I’m living my best life – and that’s the tea”"
      },
      {
        "level": "h2",
        "text": "PUP Release ‘Matilda’ Off Upcoming Album"
      },
      {
        "level": "h2",
        "text": "King Hannah Isn’t Sorry"
      },
      {
        "level": "h2",
        "text": "‘The Batman’: Zoë Kravitz “interpreted” Catwoman as bisexual"
      },
      {
        "level": "h2",
        "text": "Bartees Strange Pays Homage to Loved Ones With A ‘Heavy Heart’"
      },
      {
        "level": "h2",
        "text": "‘South Park’ prepares for nuclear war in new promo clip"
      },
      {
        "level": "h2",
        "text": "Sharon Van Etten Shares New Single ‘Used to It’ and Accompanying Video"
      },
      {
        "level": "h2",
        "text": "Watch Avril Lavigne perform with Travis Barker and Blackbear on ‘Kimmel’"
      },
      {
        "level": "h2",
        "text": "Hear Wet Leg’s Upbeat New Song ‘Angelica’"
      },
      {
        "level": "h2",
        "text": "Roosevelt Gets Bodies Moving and Hearts Racing on Polydans"
      },
      {
        "level": "h2",
        "text": "Watch Maynard James Keenan try to play Jenga during a Tool show"
      },
      {
        "level": "h2",
        "text": "Bridget Everett Is Trying Her Best"
      },
      {
        "level": "h2",
        "text": "Ryan Reynolds opens up about struggling with anxiety"
      },
      {
        "level": "h2",
        "text": "Courtney Love Addresses Complicated Relationship With Mark Lanegan on Instagram, Deletes Post"
      },
      {
        "level": "h2",
        "text": "‘Euphoria’ sparks rise in young people seeking help for addiction"
      },
      {
        "level": "h2",
        "text": "LCD Soundsystem Go Deep Into Their Catalog in Second Saturday Night Live Performance"
      },
      {
        "level": "h2",
        "text": "‘Peaky Blinders’ cast hit Birmingham for season six premiere"
      },
      {
        "level": "h2",
        "text": "Bonnie Raitt Announces First Album in 6 Years, Share New Song ‘Made Up Mind’"
      },
      {
        "level": "h2",
        "text": "Megan Thee Stallion shares texts after Tory Lanez shooting"
      },
      {
        "level": "h2",
        "text": "Tears for Fears The Tipping Point"
      },
      {
        "level": "h2",
        "text": "Bloc Party share soaring new single ‘Sex Magik’"
      },
      {
        "level": "h2",
        "text": "On Blossoms’ New Album, Tom Ogden Needed to Lean into the Past to Move Forward"
      },
      {
        "level": "h2",
        "text": "With Love Sux, Avril Lavigne Cements Pop-Punk Legacy"
      },
      {
        "level": "h2",
        "text": "Watch Dave Grohl drink multiple shots and discuss his love of UFOs on ‘Hot Ones’"
      },
      {
        "level": "h2",
        "text": "O.N.E. The Duo Carve Their Own Path From Wu-Tang Roots to Country Music"
      },
      {
        "level": "h2",
        "text": "‘The Fairly OddParents’ live-action reboot trailer draws criticism: “Like a bad ‘SNL’ parody”"
      },
      {
        "level": "h2",
        "text": "Florence + The Machine Unveil Womanhood Anthem ‘King’"
      },
      {
        "level": "h2",
        "text": "‘What Lies In The Multiverse’ gets new M-rated trailer ahead of upcoming release"
      },
      {
        "level": "h2",
        "text": "Coldplay Cover Kid Cudi and Share New Version of ‘Let Somebody Go’ for Spotify Singles"
      },
      {
        "level": "h2",
        "text": "Tianna Esperanza Unveils Debut Single ‘Lewis’"
      },
      {
        "level": "h2",
        "text": "Johnny Knoxville reveals stunts ‘Jackass’ cast refuse to do"
      },
      {
        "level": "h2",
        "text": "Difficult Fun: February 2022’s Best Punk"
      },
      {
        "level": "h2",
        "text": "Watch Green Day drive around in a convertible in new “1972” music teaser"
      },
      {
        "level": "h2",
        "text": "Mark Lanegan Remembered: Iggy Pop, Peter Hook, Garbage, Greg Dulli and More Pay Tribute"
      },
      {
        "level": "h2",
        "text": "LCD Soundsystem announce Philadelphia and Boston residencies"
      },
      {
        "level": "h2",
        "text": "Sigur Rós Announce First Dates in Extensive World Tour, Kjartan Sveinsson Rejoins"
      },
      {
        "level": "h2",
        "text": "The Smashing Pumpkins Announce 11-Date U.S. Tour"
      },
      {
        "level": "h2",
        "text": "Florence + The Machine announce their return: “Something’s coming”"
      },
      {
        "level": "h2",
        "text": "Dua Lipa, My Chemical Romance, Green Day and Halsey to Headline Firefly Festival"
      },
      {
        "level": "h2",
        "text": "Idris Elba is planning on “leaning away” from acting to focus more on music"
      },
      {
        "level": "h2",
        "text": "Britney Spears Signs $15 Million Book Deal for Memoir"
      },
      {
        "level": "h2",
        "text": "‘Euphoria’: fans think Tom Holland has a secret cameo in new episode"
      },
      {
        "level": "h2",
        "text": "The Weeknd Unveils Fully Immersive Music Special, The Weeknd x The Dawn FM Experience"
      },
      {
        "level": "h2",
        "text": "49 Winchester Detail Fourth Album, Share Video for ‘Annabel’"
      },
      {
        "level": "h2",
        "text": "John Williams to compose theme for ‘Obi-Wan Kenobi’ series"
      },
      {
        "level": "h2",
        "text": "5 Albums I Can’t Live Without: Avril Lavigne"
      },
      {
        "level": "h3",
        "text": "Search Myspace"
      },
      {
        "level": "h2",
        "text": "You're now in slide show mode."
      },
      {
        "level": "h1",
        "text": "Sign in to Myspace"
      },
      {
        "level": "h1",
        "text": "Forgot your password?"
      },
      {
        "level": "h1",
        "text": "Password request sent"
      },
      {
        "level": "h2",
        "text": ""
      },
      {
        "level": "h1",
        "text": "Join Myspace"
      },
      {
        "level": "h1",
        "text": "Join with your email address"
      },
      {
        "level": "h1",
        "text": "You're almost ready..."
      },
      {
        "level": "h1",
        "text": "You're almost ready..."
      },
      {
        "level": "h4",
        "text": "Welcome to Myspace. Just start typing to find music."
      },
      {
        "level": "h5",
        "text": ""
      },
      {
        "level": "h6",
        "text": "Play Next"
      },
      {
        "level": "h6",
        "text": "Play Last"
      },
      {
        "level": "h6",
        "text": "Start Radio"
      },
      {
        "level": "h6",
        "text": "New Mix"
      },
      {
        "level": "h3",
        "text": "Connecting to your webcam."
      },
      {
        "level": "h6",
        "text": ""
      }
    ],
    "imgTags": [
      {
        "src": "https://a4-images.myspacecdn.com/images03/30/8a09e233cd474d95a612b79fe3f4df37/300x300.jpg"
      },
      {
        "src": "https://a4-images.myspacecdn.com/images04/1/2b69174db2ee4fc494f2667ca48f2820/300x300.jpg"
      },
      {
        "src": "https://a3-images.myspacecdn.com/images04/10/7d1cfa40c19b457fb9da2a8c78a2112c/300x300.jpg"
      },
      {
        "src": "https://a3-images.myspacecdn.com/images04/12/f0d10ec3ba46462980833898b9e3348e/300x300.jpg"
      },
      {
        "src": "https://a3-images.myspacecdn.com/images04/12/fd257fff4a5743098109d1878249b2f0/600x600.jpg"
      },
      {
        "src": "https://a2-images.myspacecdn.com/images04/12/ad521e6cfd234a97b17639a9acbb75ab/600x600.jpg"
      },
      {
        "src": "https://a2-images.myspacecdn.com/images04/2/2f1b3a0e2eea44c78ced4338bb93c654/600x600.jpg"
      },
      {
        "src": "https://a2-images.myspacecdn.com/images04/8/62c7e1db20d8425c97250c1adc1d3780/600x600.jpg"
      },
      {
        "src": "https://a1-images.myspacecdn.com/images04/4/e3c2a9a3db324025890e3bd048b963b5/600x600.jpg"
      },
      {
        "src": "https://a2-images.myspacecdn.com/images04/8/5eba528b219443ffacdf1c4a6958ed3a/600x600.jpg"
      },
      {
        "src": "https://a2-images.myspacecdn.com/images04/12/b165cd1d41594a57a00ff903fd4e1fb2/600x600.jpg"
      },
      {
        "src": "https://a3-images.myspacecdn.com/images04/7/d1a1f90a989048c5aaa0378e0892f53c/600x600.jpg"
      },
      {
        "src": "https://a4-images.myspacecdn.com/images04/9/ab5f1ff04eef45f1a3603e22b6295478/600x600.jpg"
      },
      {
        "src": "https://a4-images.myspacecdn.com/images04/11/fa8fe089c95f445f8d4b438ec42fd2a6/600x600.jpg"
      },
      {
        "src": "https://a1-images.myspacecdn.com/images04/9/77174a2cf89841479f0b8aa95926feba/600x600.jpg"
      },
      {
        "src": "https://a4-images.myspacecdn.com/images04/7/dc5f4fd1e70f469aa50c287843640e94/600x600.jpg"
      },
      {
        "src": "https://a3-images.myspacecdn.com/images04/6/a812b34240054828bd39773f61259b17/640w.jpg",
        "alt": ""
      },
      {
        "src": "",
        "alt": ""
      },
      {
        "src": ""
      },
      {
        "src": "https://a1-images.myspacecdn.com/images04/3/cf6f426bd7864dc698ca8eebcc66cba9/640w.jpg",
        "alt": ""
      },
      {
        "src": "",
        "alt": ""
      },
      {
        "src": ""
      },
      {
        "src": "https://a3-images.myspacecdn.com/images04/3/d0f820f5f0f04df1866f7fab1d247563/600x600.jpg"
      },
      {
        "src": "https://a2-images.myspacecdn.com/images04/9/948b5e1091ea4169bf2e15cba00d4ffd/600x600.jpg"
      },
      {
        "src": "https://a2-images.myspacecdn.com/images04/6/a85de33f196143aea1482127c0d8a95c/600x600.jpg"
      },
      {
        "src": "https://a2-images.myspacecdn.com/images04/9/70d2d589120445cb989fecb6c6f5bf1f/600x600.jpg"
      },
      {
        "src": "https://a2-images.myspacecdn.com/images04/9/f306a067f34644eda8ccdf596c2a7495/600x600.jpg"
      },
      {
        "src": "https://a2-images.myspacecdn.com/images04/9/983e297fb3ad4428abbacd7fa9c366a5/600x600.jpg"
      },
      {
        "src": "https://a3-images.myspacecdn.com/images04/3/e29cd250edaf42f1a2fb88e90669c1b5/600x600.jpg"
      },
      {
        "src": "https://a2-images.myspacecdn.com/images04/11/bf338b1d4c8c4b39ae6a0023ec9a3b03/600x600.jpg"
      },
      {
        "src": "https://a1-images.myspacecdn.com/images04/2/c8d422533ec24a34afa00858b5b2378e/600x600.jpg"
      },
      {
        "src": "https://a2-images.myspacecdn.com/images04/6/45fc7bd54b214f5986aa63955c110ab9/600x600.jpg"
      },
      {
        "src": "https://a2-images.myspacecdn.com/images04/11/ccc08cbf5f0b4c1b8da39802fecc46f0/600x600.jpg"
      },
      {
        "src": "https://a4-images.myspacecdn.com/images04/7/5f444b6ae4eb4d99bd7d462311853510/600x600.jpg"
      },
      {
        "src": "https://a4-images.myspacecdn.com/images04/3/659bcfcfc84c4819a937e8b99978bd94/600x600.jpg"
      },
      {
        "src": "https://a4-images.myspacecdn.com/images04/3/3831d279935446fdb2c15427a33828b8/600x600.jpg"
      },
      {
        "src": "https://a1-images.myspacecdn.com/images04/3/8bf73f43a05448028ca22c3e2d595c27/600x600.jpg"
      },
      {
        "src": "https://a4-images.myspacecdn.com/images04/11/88757d0c6b0749e3ac6abeaba4b090e1/600x600.jpg"
      },
      {
        "src": "https://a4-images.myspacecdn.com/images04/8/26c6795c1b2642e6b2cd509ad1e38fb5/600x600.jpg"
      },
      {
        "src": "https://a3-images.myspacecdn.com/images04/9/6bce6ee7a1ba4426850ff61175f0be02/600x600.jpg"
      },
      {
        "src": "https://a2-images.myspacecdn.com/images04/7/16f6dbc9d3184bba879e949fce5f2ce6/600x600.jpg"
      },
      {
        "src": "https://a4-images.myspacecdn.com/images04/11/dbce964b9b854f81bced6072c004a3df/600x600.jpg"
      },
      {
        "src": "https://a2-images.myspacecdn.com/images04/8/a7d05b3ffbd245d8b9bf97ff63b13075/600x600.jpg"
      },
      {
        "src": "https://a3-images.myspacecdn.com/images04/12/6ad58391fd3c40a992c30d4c7f9e1738/600x600.jpg"
      },
      {
        "src": "https://a4-images.myspacecdn.com/images04/7/cbb3359be5b34ad0a4e9f2f28ee84f4d/600x600.jpg"
      },
      {
        "src": "https://a1-images.myspacecdn.com/images04/3/dc4a7bd0beac450c8583532bd02b311b/600x600.jpg"
      },
      {
        "src": "https://a2-images.myspacecdn.com/images04/7/f9301901da29418a9e97a910df838009/600x600.jpg"
      },
      {
        "src": "https://a2-images.myspacecdn.com/images04/11/15152d272c644d058c6a6139fc749a9d/600x600.jpg"
      },
      {
        "src": "https://a3-images.myspacecdn.com/images04/8/5b34dca825d54f9c8e3ab8194eae9eeb/600x600.jpg"
      },
      {
        "src": "https://a4-images.myspacecdn.com/images04/7/0cef053ac86c4a09994c9d157174946a/600x600.jpg"
      },
      {
        "src": "https://a2-images.myspacecdn.com/images04/6/acf81d754b794aac8fb14d364c340d94/600x600.jpg"
      },
      {
        "src": "https://a4-images.myspacecdn.com/images04/11/5e9685e122694bd691667a8bb8bdd44b/600x600.jpg"
      },
      {
        "src": "https://a4-images.myspacecdn.com/images04/11/7f3c3c16f1fd4e1d9a25c0da20d335db/600x600.jpg"
      },
      {
        "src": "https://a1-images.myspacecdn.com/images04/9/d26c72214b31400390fc9f03816349f0/600x600.jpg"
      },
      {
        "src": "https://a2-images.myspacecdn.com/images04/11/97e48b05567447f1aaef1fdc10bdc37a/600x600.jpg"
      },
      {
        "src": "https://a2-images.myspacecdn.com/images04/11/af44fbc8e472489fb201e5085eefc86e/600x600.jpg"
      },
      {
        "src": "https://a2-images.myspacecdn.com/images04/2/2a51308c966f4c9f8cfed55f06a8c803/600x600.jpg"
      },
      {
        "src": "https://a2-images.myspacecdn.com/images04/7/696556afeb6142099eeeacb957504299/600x600.jpg"
      },
      {
        "src": "https://a3-images.myspacecdn.com/images04/11/5a931aa8f0db4cb4a8e32e5d853f14bb/600x600.jpg"
      },
      {
        "src": "https://a4-images.myspacecdn.com/images04/6/e34b2b38d6114bd6a1ee93540190e91f/600x600.jpg"
      },
      {
        "src": "https://a2-images.myspacecdn.com/images04/3/7f8f5e1a305b42c9833b7d60e42e7414/600x600.jpg"
      },
      {
        "src": "https://a4-images.myspacecdn.com/images04/2/a50641b41f664effbce0da64a9dcb3c4/600x600.jpg"
      },
      {
        "src": "https://a3-images.myspacecdn.com/images04/4/a1d64f87860348849f63394c73cf7d9e/600x600.jpg"
      },
      {
        "src": "https://a2-images.myspacecdn.com/images04/8/e2649451eeb24ff3b914d77b4cf436ed/600x600.jpg"
      },
      {
        "src": "https://a3-images.myspacecdn.com/images04/12/899ebf2b5a67492bba4e809c32a4272a/600x600.jpg"
      },
      {
        "src": "https://a1-images.myspacecdn.com/images04/3/7851482948bb468f9a710cac0e4151d1/600x600.jpg"
      },
      {
        "src": "https://a2-images.myspacecdn.com/images04/8/3dff14416ecd486bb6ae65e31578f830/600x600.jpg"
      },
      {
        "src": "https://a3-images.myspacecdn.com/images04/3/4dab28b5bd004feeb4e7aef0002930c5/600x600.jpg"
      },
      {
        "src": "https://a2-images.myspacecdn.com/images04/8/6690c090d23b41e79de87d620175c363/600x600.jpg"
      },
      {
        "src": "https://a3-images.myspacecdn.com/images04/12/3c0a1707ea204555acb95837c70586ff/600x600.jpg"
      },
      {
        "src": "https://a2-images.myspacecdn.com/images04/8/085dd9bf2cc64e28be6e97baf913afcd/600x600.jpg"
      },
      {
        "src": "https://a3-images.myspacecdn.com/images04/7/d09a550adbf1486ba3a0cacffe7940ca/600x600.jpg"
      },
      {
        "src": "https://a3-images.myspacecdn.com/images04/8/278825a857964ed1b1f7dbd86b30348e/600x600.jpg"
      },
      {
        "src": "https://a2-images.myspacecdn.com/images04/9/b8ef2fd4be36461db6c6b3b2c34d61bd/600x600.jpg"
      },
      {
        "src": "https://a4-images.myspacecdn.com/images04/3/2403950feb69411cbaa1b5e311132506/600x600.jpg"
      },
      {
        "src": "https://a4-images.myspacecdn.com/images04/2/6eb41b402db940c6a349e6e9d1faf604/600x600.jpg"
      },
      {
        "src": "https://a4-images.myspacecdn.com/images04/12/7d5f8b8cc0c04449b0806e8fa59abfa7/600x600.jpg"
      },
      {
        "src": "https://a4-images.myspacecdn.com/images04/6/356f086b72904c3eb9a63bb93df863db/600x600.jpg"
      },
      {
        "src": "https://a4-images.myspacecdn.com/images04/11/bf91e31ee39f4d9b99b6a6568832141c/600x600.jpg"
      },
      {
        "src": "https://a1-images.myspacecdn.com/images04/11/fa1392a79235435bac0c319765741b2e/600x600.jpg"
      },
      {
        "src": "https://a3-images.myspacecdn.com/images04/4/7339e7e17c50408da8dbd4b5dd205dce/600x600.jpg"
      },
      {
        "src": "https://a1-images.myspacecdn.com/images04/11/bd56cd786040412fa5d09fbe8b543338/600x600.jpg"
      },
      {
        "src": "https://a3-images.myspacecdn.com/images04/3/a5b8eb17eb294f6eb6e29b3cb5108922/600x600.jpg"
      },
      {
        "src": "https://a4-images.myspacecdn.com/images04/9/108f618041ba47d8b87fe47a7d3169ee/600x600.jpg"
      },
      {
        "src": "https://a3-images.myspacecdn.com/images04/9/75313e5a9f844f4893ff43c5567bf5da/600x600.jpg"
      },
      {
        "src": "https://a2-images.myspacecdn.com/images04/4/b40719f126f743ba84fe895f6e992710/600x600.jpg"
      },
      {
        "src": "https://a2-images.myspacecdn.com/images04/7/14fa785610574658a6b2017a7dc4b32b/600x600.jpg"
      },
      {
        "src": "https://a4-images.myspacecdn.com/images04/3/b7ce34a19fc64996811ba97706b580d4/600x600.jpg"
      },
      {
        "src": "https://a3-images.myspacecdn.com/images04/9/f997bda2be9f41afa399d0738f52aa2d/600x600.jpg"
      },
      {
        "src": "https://a4-images.myspacecdn.com/images04/8/81775de14fe440d1b4cc596aa2c97c48/600x600.jpg"
      },
      {
        "src": "https://a3-images.myspacecdn.com/images04/4/59d29f3a0e114f3881a397955c3f1f4d/600x600.jpg"
      },
      {
        "src": "https://a1-images.myspacecdn.com/images04/12/90fe5392617f42e1bc9403fdbf659b3a/600x600.jpg"
      },
      {
        "src": "https://a2-images.myspacecdn.com/images04/12/be63f4aba7314e8cbc031e467e4b1dc5/600x600.jpg"
      },
      {
        "src": "https://a4-images.myspacecdn.com/images04/12/aec3565c8ba24537b159b0ea07c5c4d6/600x600.jpg"
      },
      {
        "src": "https://a1-images.myspacecdn.com/images04/2/5ab221c166ea4e439a27f00ee8f8c453/600x600.jpg"
      },
      {
        "src": "https://a2-images.myspacecdn.com/images04/2/3df5990cfc364776ac4cba4b6718d8ac/600x600.jpg"
      },
      {
        "src": "https://a4-images.myspacecdn.com/images04/6/27efdb4eea414f54919b6882eae5631b/600x600.jpg"
      },
      {
        "src": "https://a4-images.myspacecdn.com/images04/2/a11a57c64aca46a0b664a53ae5389cfe/600x600.jpg"
      },
      {
        "src": "https://a3-images.myspacecdn.com/images04/6/07a12a2334a741f9ae4273e07ace78b2/600x600.jpg"
      },
      {
        "src": "https://a1-images.myspacecdn.com/images04/7/5afa66259df548e989fc72f7093335aa/600x600.jpg"
      },
      {
        "src": "https://a3-images.myspacecdn.com/images04/6/72d748cfb08043ee8482fa5474f88a35/600x600.jpg"
      },
      {
        "src": "https://a1-images.myspacecdn.com/images04/7/d518d7edff9146c9a113ee9806c2ff3a/600x600.jpg"
      },
      {
        "src": "https://a4-images.myspacecdn.com/images04/3/c19385bc4b1744ff806fee6a8e8cc87e/600x600.jpg"
      },
      {
        "src": "https://a2-images.myspacecdn.com/images04/4/0266f48bb8c4491eabf5b8138c6c90c2/600x600.jpg"
      },
      {
        "src": ""
      }
    ],
    "responseBody": "",
    "fb:app_id": "373499472709067",
    "msapplication-TileColor": "#313131",
    "msapplication-TileImage": "https://x.myspacecdn.com/new/common/images/favicons/tile.png",
    "p:domain_verify": "9069a95798cb530a18cfa50cec2757d1"
  }
}

Customer Support

Need any assistance? Get in touch with Customer Support.


Updates

Stay up to date by following @apiverveHQ on Twitter.


All usage of the APIVerve website, API, and services is subject to the APIVerve Terms of Service and all legal documents and agreements.


License

Licensed under the The MIT License (MIT)

Copyright (©) 2024 APIVerve, and Evlar LLC

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 is compatible.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 is compatible. 
.NET Framework net20 is compatible.  net35 is compatible.  net40 is compatible.  net403 was computed.  net45 is compatible.  net451 was computed.  net452 was computed.  net46 was computed.  net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.1.2 77 7/17/2024
1.0.8 82 5/16/2024
1.0.7 88 5/16/2024
1.0.6 88 5/15/2024
1.0.5 91 5/14/2024
1.0.4 78 5/14/2024