Metadata Extractor
Metadata Extractor is a simple tool for extracting metadata from web pages. It returns the meta title, meta description, and more.
This API provides reliable and fast access to metadata extractor data through a simple REST interface. Built for developers who need consistent, high-quality results with minimal setup time.
To use this API, you need an API key. You can get one by creating a free account and visiting your dashboard.
View API in DirectoryEndpoint
POST https://api.apiverve.com/v1/metadataextractorCode Examples
Here are examples of how to call this API in different programming languages:
curl -X POST \
"https://api.apiverve.com/v1/metadataextractor" \
-H "X-API-Key: your_api_key_here" \
-H "Content-Type: application/json" \
-d '{
"url": "https://apiverve.com"
}'const response = await fetch('https://api.apiverve.com/v1/metadataextractor', {
method: 'POST',
headers: {
'X-API-Key': 'your_api_key_here',
'Content-Type': 'application/json'
},
body: JSON.stringify({
"url": "https://apiverve.com"
})
});
const data = await response.json();
console.log(data);import requests
headers = {
'X-API-Key': 'your_api_key_here',
'Content-Type': 'application/json'
}
payload = {
"url": "https://apiverve.com"
}
response = requests.post('https://api.apiverve.com/v1/metadataextractor', headers=headers, json=payload)
data = response.json()
print(data)const https = require('https');
const url = require('url');
const options = {
method: 'POST',
headers: {
'X-API-Key': 'your_api_key_here',
'Content-Type': 'application/json'
}
};
const postData = JSON.stringify({
"url": "https://apiverve.com"
});
const req = https.request('https://api.apiverve.com/v1/metadataextractor', options, (res) => {
let data = '';
res.on('data', (chunk) => data += chunk);
res.on('end', () => console.log(JSON.parse(data)));
});
req.write(postData);
req.end();<?php
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, 'https://api.apiverve.com/v1/metadataextractor');
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_CUSTOMREQUEST, 'POST');
curl_setopt($ch, CURLOPT_HTTPHEADER, [
'X-API-Key: your_api_key_here',
'Content-Type: application/json'
]);
curl_setopt($ch, CURLOPT_POSTFIELDS, json_encode({
'url': 'https://apiverve.com'
}));
$response = curl_exec($ch);
curl_close($ch);
$data = json_decode($response, true);
print_r($data);
?>package main
import (
"fmt"
"io"
"net/http"
"bytes"
"encoding/json"
)
func main() {
payload := map[string]interface{}{
"url": "https://apiverve.com"
}
jsonPayload, _ := json.Marshal(payload)
req, _ := http.NewRequest("POST", "https://api.apiverve.com/v1/metadataextractor", bytes.NewBuffer(jsonPayload))
req.Header.Set("X-API-Key", "your_api_key_here")
req.Header.Set("Content-Type", "application/json")
client := &http.Client{}
resp, err := client.Do(req)
if err != nil {
panic(err)
}
defer resp.Body.Close()
body, _ := io.ReadAll(resp.Body)
fmt.Println(string(body))
}require 'net/http'
require 'json'
uri = URI('https://api.apiverve.com/v1/metadataextractor')
http = Net::HTTP.new(uri.host, uri.port)
http.use_ssl = true
payload = {
"url": "https://apiverve.com"
}
request = Net::HTTP::Post.new(uri)
request['X-API-Key'] = 'your_api_key_here'
request['Content-Type'] = 'application/json'
request.body = payload.to_json
response = http.request(request)
puts JSON.pretty_generate(JSON.parse(response.body))Authentication
This API requires authentication via API key. Include your API key in the request header:
X-API-Key: your_api_key_hereGraphQL AccessBETA
Most APIVerve APIs support GraphQL queries, allowing you to combine multiple API calls into a single request and retrieve only the data you need. This powerful feature enables you to orchestrate complex data fetching with precise field selection.
This API does not currently support GraphQL as it requires a POST request. GraphQL support for POST APIs is coming soon.
Response
The API returns responses in JSON, XML, and YAML formats:
Example Responses
{
"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": "Date, Network, and Connect with People"
},
{
"level": "h2",
"text": "Listen to Damiano Davidโs uplifting new single โBorn With A Broken Heartโ"
},
{
"level": "h2",
"text": "Idris Elba is moving to Africa to support its film industry"
},
{
"level": "h2",
"text": "Hereโs every song in โVenom: The Last Danceโ"
},
{
"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 Best in Music & Culture. All In One Place."
},
{
"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": "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": "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": "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": "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": "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://content.myspacecdn.com/images03/30/8a09e233cd474d95a612b79fe3f4df37/300x300.jpg"
},
{
"src": "https://content.myspacecdn.com/images04/1/2b69174db2ee4fc494f2667ca48f2820/300x300.jpg"
},
{
"src": "https://content.myspacecdn.com/images04/10/7d1cfa40c19b457fb9da2a8c78a2112c/300x300.jpg"
},
{
"src": "https://content.myspacecdn.com/images04/12/f0d10ec3ba46462980833898b9e3348e/300x300.jpg"
},
{
"src": "https://content.myspacecdn.com/images03/1/9318d5bf18cc4e36988b51a63a2f9070/600x600.jpg"
},
{
"src": "https://content.myspacecdn.com/images03/1/090e487e9e3c4403a789ba76a2ed669c/600x600.jpg"
},
{
"src": "https://content.myspacecdn.com/images03/1/2ab6a5c086cd4796a0050c2065a2a08d/600x600.jpg"
},
{
"src": "https://content.myspacecdn.com/images04/12/fd257fff4a5743098109d1878249b2f0/600x600.jpg"
},
{
"src": "https://content.myspacecdn.com/images04/12/ad521e6cfd234a97b17639a9acbb75ab/600x600.jpg"
},
{
"src": "https://content.myspacecdn.com/images04/2/2f1b3a0e2eea44c78ced4338bb93c654/600x600.jpg"
},
{
"src": "https://content.myspacecdn.com/images04/8/62c7e1db20d8425c97250c1adc1d3780/600x600.jpg"
},
{
"src": "https://content.myspacecdn.com/images04/4/e3c2a9a3db324025890e3bd048b963b5/600x600.jpg"
},
{
"src": "https://content.myspacecdn.com/images04/8/5eba528b219443ffacdf1c4a6958ed3a/600x600.jpg"
},
{
"src": "https://content.myspacecdn.com/images04/12/b165cd1d41594a57a00ff903fd4e1fb2/600x600.jpg"
},
{
"src": "https://content.myspacecdn.com/images03/1/523b0e234b7b44f99e556f52b55be6c0/600x600.jpg"
},
{
"src": "https://content.myspacecdn.com/images03/1/b2176637f8824a95bc4638a0d2227233/600x600.jpg"
},
{
"src": "https://content.myspacecdn.com/images04/6/a812b34240054828bd39773f61259b17/640w.jpg",
"alt": ""
},
{
"src": "",
"alt": ""
},
{
"src": ""
},
{
"src": "https://content.myspacecdn.com/images04/3/cf6f426bd7864dc698ca8eebcc66cba9/640w.jpg",
"alt": ""
},
{
"src": "",
"alt": ""
},
{
"src": ""
},
{
"src": "https://content.myspacecdn.com/images03/1/c486b6c8897c46c39d4c7cc2689f8894/600x600.jpg"
},
{
"src": "https://content.myspacecdn.com/images03/1/86cecc36959444629806f5049fad1ed6/600x600.jpg"
},
{
"src": "https://content.myspacecdn.com/images03/1/e2de025fefe8443d84a9414f3286066e/600x600.jpg"
},
{
"src": "https://content.myspacecdn.com/images04/3/d0f820f5f0f04df1866f7fab1d247563/600x600.jpg"
},
{
"src": "https://content.myspacecdn.com/images04/9/948b5e1091ea4169bf2e15cba00d4ffd/600x600.jpg"
},
{
"src": "https://content.myspacecdn.com/images03/1/0e49b6c6b219419f8687b2299e1fd44a/600x600.jpg"
},
{
"src": "https://content.myspacecdn.com/images03/1/12eabe82405d4d70bc4197eb4ced16ce/600x600.jpg"
},
{
"src": "https://content.myspacecdn.com/images03/1/e27fa6be9d7148418ec08377d639af99/600x600.jpg"
},
{
"src": "https://content.myspacecdn.com/images03/1/cf9bc2d9402e455eb351c08b8a9c05a5/600x600.jpg"
},
{
"src": "https://content.myspacecdn.com/images03/1/06e426f8007f4b89b4acbea3b7090ae8/600x600.jpg"
},
{
"src": "https://content.myspacecdn.com/images03/1/b8fb3da3d9164e278f04921827b6948d/600x600.jpg"
},
{
"src": "https://content.myspacecdn.com/images03/1/bca73a5414be4d07a8f6280da89e180b/600x600.jpg"
},
{
"src": "https://content.myspacecdn.com/images03/1/c4e044c951374002b750c4a8a86238ca/600x600.jpg"
},
{
"src": "https://content.myspacecdn.com/images03/1/b93fea92ae1f48a99ec14bc52e317053/600x600.jpg"
},
{
"src": "https://content.myspacecdn.com/images03/1/497b36f5bf6a4a34927f130f0fb10e65/600x600.jpg"
},
{
"src": "https://content.myspacecdn.com/images03/1/96ddcdd8b7e949d9ac1d568a488c46bb/600x600.jpg"
},
{
"src": "https://content.myspacecdn.com/images03/1/1cdde4b322b44c0c84bb765c6ef98554/600x600.jpg"
},
{
"src": "https://content.myspacecdn.com/images03/1/3a591c8fc1cd4b329d0144122bcb9320/600x600.jpg"
},
{
"src": "https://content.myspacecdn.com/images03/1/c5d8ab1c01e84bb286e535a36cc61d57/600x600.jpg"
},
{
"src": "https://content.myspacecdn.com/images03/1/bbf36605a04a4cac86303d46ad17fe74/600x600.jpg"
},
{
"src": "https://content.myspacecdn.com/images03/1/9741ba06dc194da99770b80ba2a928d5/600x600.jpg"
},
{
"src": "https://content.myspacecdn.com/images03/1/9c89c58b61594a628301d23340db17ad/600x600.jpg"
},
{
"src": "https://content.myspacecdn.com/images03/1/c78080636a9c4e4c9dae6d827255b01c/600x600.jpg"
},
{
"src": "https://content.myspacecdn.com/images03/1/1ebf54eda24c40c4a2646385c2720e44/600x600.jpg"
},
{
"src": "https://content.myspacecdn.com/images03/1/72369b92792a453f8eaa1d4347e53a87/600x600.jpg"
},
{
"src": "https://content.myspacecdn.com/images03/1/23eb3d7fb6c74f0d841e8d0023eed599/600x600.jpg"
},
{
"src": "https://content.myspacecdn.com/images03/1/fc744949d24d46e6baf830ca921634a8/600x600.jpg"
},
{
"src": "https://content.myspacecdn.com/images03/1/31969c6cb733482fa0576d51d9e60f77/600x600.jpg"
},
{
"src": "https://content.myspacecdn.com/images03/1/22e118b28b92451f93f2551476dde06c/600x600.jpg"
},
{
"src": "https://content.myspacecdn.com/images03/1/4ec0b1f3095b4eb1ac97996cfd7a9811/600x600.jpg"
},
{
"src": "https://content.myspacecdn.com/images03/1/307f98980dae4a3194476a210d797dca/600x600.jpg"
},
{
"src": "https://content.myspacecdn.com/images03/1/59820823c75b459a83f84c008147c4dd/600x600.jpg"
},
{
"src": "https://content.myspacecdn.com/images03/1/68abd6a2e0654dd9bd7af1928d1fc340/600x600.jpg"
},
{
"src": "https://content.myspacecdn.com/images03/1/b7729020f8594730a94b5303f27d8361/600x600.jpg"
},
{
"src": "https://content.myspacecdn.com/images03/1/13b0e6a116ef4acb89b5c05ab071a250/600x600.jpg"
},
{
"src": "https://content.myspacecdn.com/images03/1/611eb5194e8c4fe1a3542641d51e21e4/600x600.jpg"
},
{
"src": "https://content.myspacecdn.com/images03/1/066e482379084eacaaf3481ecec086ee/600x600.jpg"
},
{
"src": "https://content.myspacecdn.com/images03/1/fee3bb16f94a474da540ff5a720f3c1b/600x600.jpg"
},
{
"src": "https://content.myspacecdn.com/images03/1/81ba0822582941248a5e29dbf236e5dc/600x600.jpg"
},
{
"src": "https://content.myspacecdn.com/images03/1/7edf416088864f88b9f976060b199793/600x600.jpg"
},
{
"src": "https://content.myspacecdn.com/images03/1/45617ed02b884d6f9894f30fa5e79804/600x600.jpg"
},
{
"src": "https://content.myspacecdn.com/images03/1/9c82f95520564d25811bfe0f94aee27b/600x600.jpg"
},
{
"src": "https://content.myspacecdn.com/images03/1/0e124acca45b45228b192cb048f34f49/600x600.jpg"
},
{
"src": "https://content.myspacecdn.com/images03/1/d420e5d2fba34348a0956cc4c8f2608b/600x600.jpg"
},
{
"src": "https://content.myspacecdn.com/images03/1/660bed5f21f547be9730fbdb665baa48/600x600.jpg"
},
{
"src": "https://content.myspacecdn.com/images03/1/9c33fed7657f4f18899e801f9ab732e2/600x600.jpg"
},
{
"src": "https://content.myspacecdn.com/images03/1/93834fddf25f4ed6b66d52c2daa5ebb5/600x600.jpg"
},
{
"src": "https://content.myspacecdn.com/images03/1/d1dc0798e1504220950c3610c53c623a/600x600.jpg"
},
{
"src": "https://content.myspacecdn.com/images03/1/2f6189657b204d7caaa2b04348f61d78/600x600.jpg"
},
{
"src": "https://content.myspacecdn.com/images03/1/272ea68c1a854f9b893669846bcff6a9/600x600.jpg"
},
{
"src": "https://content.myspacecdn.com/images03/1/3c3f739e14b84b8892b656fdf5e55e33/600x600.jpg"
},
{
"src": "https://content.myspacecdn.com/images03/1/d27025d999a646a68c98149eb44dc798/600x600.jpg"
},
{
"src": "https://content.myspacecdn.com/images03/1/c87a6b392007469697ac3e19ce2f9448/600x600.jpg"
},
{
"src": "https://content.myspacecdn.com/images03/1/150b153e396746c9a49f9faef2ec0b1e/600x600.jpg"
},
{
"src": "https://content.myspacecdn.com/images03/1/6959d3e8c11e4f58b7fc3833fb56234e/600x600.jpg"
},
{
"src": "https://content.myspacecdn.com/images03/1/15c7811cc6684ca29a68824475a78979/600x600.jpg"
},
{
"src": "https://content.myspacecdn.com/images03/1/2ca92f27986040fa975a4247b2ba508f/600x600.jpg"
},
{
"src": "https://content.myspacecdn.com/images03/1/e6c49c1917e243a59544760bb0de0bea/600x600.jpg"
},
{
"src": "https://content.myspacecdn.com/images03/1/35e014b74ea7492e85c09ca92e16a329/600x600.jpg"
},
{
"src": "https://content.myspacecdn.com/images03/1/672a6e4a9fb34b23ae50652512dcd914/600x600.jpg"
},
{
"src": "https://content.myspacecdn.com/images03/1/ca011b437c724d23b0cba7f31a538846/600x600.jpg"
},
{
"src": "https://content.myspacecdn.com/images03/1/88cd5a62e7d346ada76b8b2aa5118b7b/600x600.jpg"
},
{
"src": "https://content.myspacecdn.com/images03/1/20d1fbd0d30b42e6a5524dc3db63f83f/600x600.jpg"
},
{
"src": "https://content.myspacecdn.com/images03/1/123dc1c59a704917a6a61bb4d52a76f7/600x600.jpg"
},
{
"src": "https://content.myspacecdn.com/images03/1/c191f318985f49e69d839f8d97b0a294/600x600.jpg"
},
{
"src": "https://content.myspacecdn.com/images03/1/1597f8dfb26d4974a9e426f1a3468ee2/600x600.jpg"
},
{
"src": "https://content.myspacecdn.com/images03/1/ea54328ee6c34450ab061374bc961252/600x600.jpg"
},
{
"src": "https://content.myspacecdn.com/images03/1/cb1ea3c2873647f9883e812da51ee876/600x600.jpg"
},
{
"src": "https://content.myspacecdn.com/images03/1/d52ad85c9a8b4dc9ad358376a81cd853/600x600.jpg"
},
{
"src": "https://content.myspacecdn.com/images03/1/efab65c168f3472c96617cb9c873af6d/600x600.jpg"
},
{
"src": "https://content.myspacecdn.com/images03/1/242b3262e4144c8aba9abc4684439228/600x600.jpg"
},
{
"src": "https://content.myspacecdn.com/images03/1/9e7f8297bb0c43ec9b67e76a7eaad38e/600x600.jpg"
},
{
"src": "https://content.myspacecdn.com/images03/1/d7607dd1a5f14c6eb5751f6cda4a7faf/600x600.jpg"
},
{
"src": "https://content.myspacecdn.com/images03/1/d8984834515e4a04ba96b52576b9a51a/600x600.jpg"
},
{
"src": "https://content.myspacecdn.com/images03/1/99f96de23b844987a2b431a8513c4ac8/600x600.jpg"
},
{
"src": "https://content.myspacecdn.com/images03/1/830af16a791143358912339f78bb712f/600x600.jpg"
},
{
"src": "https://content.myspacecdn.com/images03/1/2738edba810446ba8bd91196ad2beba1/600x600.jpg"
},
{
"src": "https://content.myspacecdn.com/images03/1/163a0f76bc21461c99c5934e84d21afc/600x600.jpg"
},
{
"src": "https://content.myspacecdn.com/images03/1/b9e36ead7cb14594a9dbf73b48eed747/600x600.jpg"
},
{
"src": "https://content.myspacecdn.com/images03/1/b905fc6cbcde4753bdf7d03b3a6adb87/600x600.jpg"
},
{
"src": "https://content.myspacecdn.com/images03/1/9092c90f19a845df9a809f2eb3c4883e/600x600.jpg"
},
{
"src": "https://content.myspacecdn.com/images03/1/7fe125ca6ede46a0bfea52c2c915f837/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"
}
}<Root>
<status>ok</status>
<error />
<data>
<requestUrl>https://myspace.com</requestUrl>
<url>https://myspace.com/</url>
<canonical>https://myspace.com/discover/featured</canonical>
<charset>utf-8</charset>
<title>Featured Content on Myspace</title>
<image></image>
<favicons>
<rel>shortcut icon</rel>
<href>https://x.myspacecdn.com/new/common/images/favicons/favicon.ico</href>
</favicons>
<favicons>
<rel>icon</rel>
<href>https://x.myspacecdn.com/new/common/images/favicons/favicon.png</href>
</favicons>
<favicons>
<rel>apple-touch-icon</rel>
<href>https://x.myspacecdn.com/new/common/images/favicons/57-iPhone.png</href>
</favicons>
<favicons>
<rel>apple-touch-icon</rel>
<href>https://x.myspacecdn.com/new/common/images/favicons/72-iPad.png</href>
<sizes>72x72</sizes>
</favicons>
<favicons>
<rel>apple-touch-icon</rel>
<href>https://x.myspacecdn.com/new/common/images/favicons/114-Retina-iPhone.png</href>
<sizes>114x114</sizes>
</favicons>
<favicons>
<rel>apple-touch-icon</rel>
<href>https://x.myspacecdn.com/new/common/images/favicons/144-Retina-iPad.png</href>
<sizes>144x144</sizes>
</favicons>
<author></author>
<description>Featured Content on Myspace</description>
<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</keywords>
<source></source>
<price></price>
<priceCurrency></priceCurrency>
<availability></availability>
<robots></robots>
<og_x003A_url>https://myspace.com/discover/featured</og_x003A_url>
<og_x003A_locale></og_x003A_locale>
<og_x003A_locale_x003A_alternate></og_x003A_locale_x003A_alternate>
<og_x003A_title>Featured Content on Myspace</og_x003A_title>
<og_x003A_type>article</og_x003A_type>
<og_x003A_description>Featured Content on Myspace</og_x003A_description>
<og_x003A_determiner></og_x003A_determiner>
<og_x003A_site_name>Myspace</og_x003A_site_name>
<og_x003A_image></og_x003A_image>
<og_x003A_image_x003A_secure_url></og_x003A_image_x003A_secure_url>
<og_x003A_image_x003A_type></og_x003A_image_x003A_type>
<og_x003A_image_x003A_width></og_x003A_image_x003A_width>
<og_x003A_image_x003A_height></og_x003A_image_x003A_height>
<twitter_x003A_title></twitter_x003A_title>
<twitter_x003A_description></twitter_x003A_description>
<twitter_x003A_image></twitter_x003A_image>
<twitter_x003A_image_x003A_alt></twitter_x003A_image_x003A_alt>
<twitter_x003A_card></twitter_x003A_card>
<twitter_x003A_site></twitter_x003A_site>
<twitter_x003A_site_x003A_id></twitter_x003A_site_x003A_id>
<twitter_x003A_url></twitter_x003A_url>
<twitter_x003A_account_id></twitter_x003A_account_id>
<twitter_x003A_creator></twitter_x003A_creator>
<twitter_x003A_creator_x003A_id></twitter_x003A_creator_x003A_id>
<twitter_x003A_player></twitter_x003A_player>
<twitter_x003A_player_x003A_width></twitter_x003A_player_x003A_width>
<twitter_x003A_player_x003A_height></twitter_x003A_player_x003A_height>
<twitter_x003A_player_x003A_stream></twitter_x003A_player_x003A_stream>
<twitter_x003A_app_x003A_name_x003A_iphone></twitter_x003A_app_x003A_name_x003A_iphone>
<twitter_x003A_app_x003A_id_x003A_iphone></twitter_x003A_app_x003A_id_x003A_iphone>
<twitter_x003A_app_x003A_url_x003A_iphone></twitter_x003A_app_x003A_url_x003A_iphone>
<twitter_x003A_app_x003A_name_x003A_ipad></twitter_x003A_app_x003A_name_x003A_ipad>
<twitter_x003A_app_x003A_id_x003A_ipad></twitter_x003A_app_x003A_id_x003A_ipad>
<twitter_x003A_app_x003A_url_x003A_ipad></twitter_x003A_app_x003A_url_x003A_ipad>
<twitter_x003A_app_x003A_name_x003A_googleplay></twitter_x003A_app_x003A_name_x003A_googleplay>
<twitter_x003A_app_x003A_id_x003A_googleplay></twitter_x003A_app_x003A_id_x003A_googleplay>
<twitter_x003A_app_x003A_url_x003A_googleplay></twitter_x003A_app_x003A_url_x003A_googleplay>
<headings>
<level>h2</level>
<text>Discover</text>
</headings>
<headings>
<level>h2</level>
<text>Thom Yorke Surprise-Releases New Song โ5.17โ</text>
</headings>
<headings>
<level>h2</level>
<text>Charli XCX shares full โCrashโ track listing</text>
</headings>
<headings>
<level>h2</level>
<text>Fly Anakin Carves His Own Lane on Frank</text>
</headings>
<headings>
<level>h2</level>
<text>Rammstein share powerful new ballad โZeitโ and unveil new album</text>
</headings>
<headings>
<level>h2</level>
<text>Deftones Part Ways With Bassist Sergio Vega</text>
</headings>
<headings>
<level>h2</level>
<text>Yeah Yeah Yeahs Tease First New Music in More Than Nine Years</text>
</headings>
<headings>
<level>h3</level>
<text>Date, Network, and Connect with People</text>
</headings>
<headings>
<level>h2</level>
<text>Listen to Damiano Davidโs uplifting new single โBorn With A Broken Heartโ</text>
</headings>
<headings>
<level>h2</level>
<text>Idris Elba is moving to Africa to support its film industry</text>
</headings>
<headings>
<level>h2</level>
<text>Hereโs every song in โVenom: The Last Danceโ</text>
</headings>
<headings>
<level>h2</level>
<text>Behind the Scenes of Mothicaโs Newest Mental Health-Based Track, โSensitiveโ</text>
</headings>
<headings>
<level>h2</level>
<text>Dolly Parton โRespectfully Bows Outโ of Rock Hall Nomination</text>
</headings>
<headings>
<level>h2</level>
<text>Bikini Kill Detail 2022 Summer Tour</text>
</headings>
<headings>
<level>h2</level>
<text>The Best in Music & Culture. All In One Place.</text>
</headings>
<headings>
<level>h2</level>
<text>The Rolling Stones Announce 60th Anniversary Tour</text>
</headings>
<headings>
<level>h2</level>
<text>Yungblud Shares โThe Funeralโ Video With Ozzy and Sharon Osbourne Cameo</text>
</headings>
<headings>
<level>h2</level>
<text>Flea Joins Nick Cave and Warren for Performance of โWe No Who U Rโ</text>
</headings>
<headings>
<level>h2</level>
<text>George R.R. Martin gives update on โGame Of Thronesโ spin-offs</text>
</headings>
<headings>
<level>h2</level>
<text>Mike Cross, Founding Guitarist of Sponge, Dies at 57</text>
</headings>
<headings>
<level>h2</level>
<text>Black Keys Announce 11th Studio Album Dropout Boogie, Share โWild Childโ</text>
</headings>
<headings>
<level>h2</level>
<text>Myspace Exclusives</text>
</headings>
<headings>
<level>h3</level>
<text>GETTING NAILED</text>
</headings>
<headings>
<level>h4</level>
<text>Too Short - Getting Nailed</text>
</headings>
<headings>
<level>h3</level>
<text>THE PEDICAB INTERVIEWS</text>
</headings>
<headings>
<level>h4</level>
<text>The Pedicab Interviews: Chris Cole</text>
</headings>
<headings>
<level>h2</level>
<text>Florence + The Machine Announce Dance Fever, Release โMy Loveโ</text>
</headings>
<headings>
<level>h2</level>
<text>How MGMTโs โLittle Dark Ageโ Became an Unstoppable TikTok Meme</text>
</headings>
<headings>
<level>h2</level>
<text>Pavement Unveil New Video for โHarness Your Hopesโ</text>
</headings>
<headings>
<level>h2</level>
<text>Red Hot Chili Peppers, Nine Inch Nails, Slipknot and KISS to Headline Louder Than Life Lineup</text>
</headings>
<headings>
<level>h2</level>
<text>Florence Pugh in talks to star in โDune: Part Twoโ</text>
</headings>
<headings>
<level>h2</level>
<text>The Nationalโs new album has a โclassicโ sound with โa lot of energyโ</text>
</headings>
<headings>
<level>h2</level>
<text>Bob Dylan Announces First New Book in 18 Years</text>
</headings>
<headings>
<level>h2</level>
<text>The Muppets series about Electric Mayhem Band in the works</text>
</headings>
<headings>
<level>h2</level>
<text>King Gizzard and the Lizard Wizard Tease First Double LP With 18-Minute Single</text>
</headings>
<headings>
<level>h2</level>
<text>Alanis Morissette Details Jagged Little Pill 25th Anniversary Tour</text>
</headings>
<headings>
<level>h2</level>
<text>Blink-182โs Travis Barker is developing a new reality TV series, โInked And Icedโ</text>
</headings>
<headings>
<level>h2</level>
<text>John Doe to Release New Solo Album</text>
</headings>
<headings>
<level>h2</level>
<text>Snoop Dogg joins esports outfit Faze Clan as a content creator</text>
</headings>
<headings>
<level>h2</level>
<text>The Weeknd to Appear on Upcoming Episode of The Simpsons</text>
</headings>
<headings>
<level>h2</level>
<text>Arcade Fire continue to tease new material with sheet music and postcards</text>
</headings>
<headings>
<level>h2</level>
<text>Wage War on Their Rise and the Importance of Mental Health</text>
</headings>
<headings>
<level>h2</level>
<text>Watch Vince Staplesโ Surrealist Video for โMagicโ</text>
</headings>
<headings>
<level>h2</level>
<text>Sam Smith and Normani sued for โobviousโ copyright infringement on collaboration</text>
</headings>
<headings>
<level>h2</level>
<text>Lady Gaga Announces Chromatica Ball Summer Stadium Tour</text>
</headings>
<headings>
<level>h2</level>
<text>โPeaky Blindersโ fans celebrate Tom Hardyโs return as Alfie Solomons</text>
</headings>
<headings>
<level>h2</level>
<text>Phoebe Bridgers Shares Haunting Cover of Billie Eilishโs โWhen The Partyโs Overโ</text>
</headings>
<headings>
<level>h2</level>
<text>Dua Lipa reacts to Oscar Isaac fan-fiction story about her on โSaturday Night Liveโ</text>
</headings>
<headings>
<level>h2</level>
<text>A Portrait of the Artist as A Jung Man</text>
</headings>
<headings>
<level>h2</level>
<text>Pearl Jamโs Stone Gossard on Reviving Loosegroove Label: โIโm Still A Kid in the Sandboxโ</text>
</headings>
<headings>
<level>h2</level>
<text>โThe Batmanโ: Post-credits tease features a secret Riddler message</text>
</headings>
<headings>
<level>h2</level>
<text>Red Hot Chili Peppers Share Latest Single โPoster Childโ</text>
</headings>
<headings>
<level>h2</level>
<text>James Gunn supports Pete Davidson after Kanye Westโs controversial โEazyโ video</text>
</headings>
<headings>
<level>h2</level>
<text>Kevin Morby Announces New Album This Is A Photograph</text>
</headings>
<headings>
<level>h2</level>
<text>โThe Boysโ actor Antony Starr gets suspended prison sentence after assault in pub</text>
</headings>
<headings>
<level>h2</level>
<text>Madonna, Sickick and Fireboy DML Remix Her 1998 Hit โFrozenโ</text>
</headings>
<headings>
<level>h2</level>
<text>The Lemonheads Headline Official SPIN SXSW Showcase With 30th Anniversary Set of Itโs a Shame About Ray</text>
</headings>
<headings>
<level>h2</level>
<text>The Weeknd Details 2022 North American Stadium Tour Dates</text>
</headings>
<headings>
<level>h2</level>
<text>LโEclair Are Jamming Their Way to Instrumental Bliss</text>
</headings>
<headings>
<level>h2</level>
<text>Jack White and Q-Tip Join Forces on New Single โHi-De-Hoโ</text>
</headings>
<headings>
<level>h2</level>
<text>Band of Horses SurvivedโฆBarely</text>
</headings>
<headings>
<level>h2</level>
<text>Brad Pitt takes on Bad Bunny in trailer for action thriller โBullet Trainโ</text>
</headings>
<headings>
<level>h2</level>
<text>Belle and Sebastian to Release First Album in 7 Years, Listen to โUnnecessary Dramaโ</text>
</headings>
<headings>
<level>h2</level>
<text>John DiMaggio to return as Bender in โFuturamaโ revival: โIโm back, baby!โ</text>
</headings>
<headings>
<level>h2</level>
<text>The Offspring Detail U.S. Spring Tour</text>
</headings>
<headings>
<level>h2</level>
<text>Charli XCX tells critics of new single: โIโm living my best life โ and thatโs the teaโ</text>
</headings>
<headings>
<level>h2</level>
<text>PUP Release โMatildaโ Off Upcoming Album</text>
</headings>
<headings>
<level>h2</level>
<text>King Hannah Isnโt Sorry</text>
</headings>
<headings>
<level>h2</level>
<text>โThe Batmanโ: Zoรซ Kravitz โinterpretedโ Catwoman as bisexual</text>
</headings>
<headings>
<level>h2</level>
<text>Bartees Strange Pays Homage to Loved Ones With A โHeavy Heartโ</text>
</headings>
<headings>
<level>h2</level>
<text>โSouth Parkโ prepares for nuclear war in new promo clip</text>
</headings>
<headings>
<level>h2</level>
<text>Sharon Van Etten Shares New Single โUsed to Itโ and Accompanying Video</text>
</headings>
<headings>
<level>h2</level>
<text>Watch Avril Lavigne perform with Travis Barker and Blackbear on โKimmelโ</text>
</headings>
<headings>
<level>h2</level>
<text>Hear Wet Legโs Upbeat New Song โAngelicaโ</text>
</headings>
<headings>
<level>h2</level>
<text>Roosevelt Gets Bodies Moving and Hearts Racing on Polydans</text>
</headings>
<headings>
<level>h2</level>
<text>Watch Maynard James Keenan try to play Jenga during a Tool show</text>
</headings>
<headings>
<level>h2</level>
<text>Bridget Everett Is Trying Her Best</text>
</headings>
<headings>
<level>h2</level>
<text>Ryan Reynolds opens up about struggling with anxiety</text>
</headings>
<headings>
<level>h2</level>
<text>Courtney Love Addresses Complicated Relationship With Mark Lanegan on Instagram, Deletes Post</text>
</headings>
<headings>
<level>h2</level>
<text>โEuphoriaโ sparks rise in young people seeking help for addiction</text>
</headings>
<headings>
<level>h2</level>
<text>LCD Soundsystem Go Deep Into Their Catalog in Second Saturday Night Live Performance</text>
</headings>
<headings>
<level>h2</level>
<text>โPeaky Blindersโ cast hit Birmingham for season six premiere</text>
</headings>
<headings>
<level>h2</level>
<text>Bonnie Raitt Announces First Album in 6 Years, Share New Song โMade Up Mindโ</text>
</headings>
<headings>
<level>h2</level>
<text>Megan Thee Stallion shares texts after Tory Lanez shooting</text>
</headings>
<headings>
<level>h2</level>
<text>Tears for Fears The Tipping Point</text>
</headings>
<headings>
<level>h2</level>
<text>Bloc Party share soaring new single โSex Magikโ</text>
</headings>
<headings>
<level>h2</level>
<text>On Blossomsโ New Album, Tom Ogden Needed to Lean into the Past to Move Forward</text>
</headings>
<headings>
<level>h2</level>
<text>With Love Sux, Avril Lavigne Cements Pop-Punk Legacy</text>
</headings>
<headings>
<level>h2</level>
<text>Watch Dave Grohl drink multiple shots and discuss his love of UFOs on โHot Onesโ</text>
</headings>
<headings>
<level>h2</level>
<text>O.N.E. The Duo Carve Their Own Path From Wu-Tang Roots to Country Music</text>
</headings>
<headings>
<level>h2</level>
<text>โThe Fairly OddParentsโ live-action reboot trailer draws criticism: โLike a bad โSNLโ parodyโ</text>
</headings>
<headings>
<level>h2</level>
<text>Florence + The Machine Unveil Womanhood Anthem โKingโ</text>
</headings>
<headings>
<level>h2</level>
<text>โWhat Lies In The Multiverseโ gets new M-rated trailer ahead of upcoming release</text>
</headings>
<headings>
<level>h2</level>
<text>Coldplay Cover Kid Cudi and Share New Version of โLet Somebody Goโ for Spotify Singles</text>
</headings>
<headings>
<level>h2</level>
<text>Tianna Esperanza Unveils Debut Single โLewisโ</text>
</headings>
<headings>
<level>h2</level>
<text>Johnny Knoxville reveals stunts โJackassโ cast refuse to do</text>
</headings>
<headings>
<level>h2</level>
<text>Difficult Fun: February 2022โs Best Punk</text>
</headings>
<headings>
<level>h2</level>
<text>Watch Green Day drive around in a convertible in new โ1972โ music teaser</text>
</headings>
<headings>
<level>h2</level>
<text>Mark Lanegan Remembered: Iggy Pop, Peter Hook, Garbage, Greg Dulli and More Pay Tribute</text>
</headings>
<headings>
<level>h2</level>
<text>LCD Soundsystem announce Philadelphia and Boston residencies</text>
</headings>
<headings>
<level>h2</level>
<text>Sigur Rรณs Announce First Dates in Extensive World Tour, Kjartan Sveinsson Rejoins</text>
</headings>
<headings>
<level>h2</level>
<text>The Smashing Pumpkins Announce 11-Date U.S. Tour</text>
</headings>
<headings>
<level>h2</level>
<text>Florence + The Machine announce their return: โSomethingโs comingโ</text>
</headings>
<headings>
<level>h2</level>
<text>Dua Lipa, My Chemical Romance, Green Day and Halsey to Headline Firefly Festival</text>
</headings>
<headings>
<level>h2</level>
<text>Idris Elba is planning on โleaning awayโ from acting to focus more on music</text>
</headings>
<headings>
<level>h2</level>
<text>Britney Spears Signs $15 Million Book Deal for Memoir</text>
</headings>
<headings>
<level>h2</level>
<text>โEuphoriaโ: fans think Tom Holland has a secret cameo in new episode</text>
</headings>
<headings>
<level>h2</level>
<text>The Weeknd Unveils Fully Immersive Music Special, The Weeknd x The Dawn FM Experience</text>
</headings>
<headings>
<level>h3</level>
<text>Search Myspace</text>
</headings>
<headings>
<level>h2</level>
<text>You're now in slide show mode.</text>
</headings>
<headings>
<level>h1</level>
<text>Sign in to Myspace</text>
</headings>
<headings>
<level>h1</level>
<text>Forgot your password?</text>
</headings>
<headings>
<level>h1</level>
<text>Password request sent</text>
</headings>
<headings>
<level>h2</level>
<text></text>
</headings>
<headings>
<level>h1</level>
<text>Join Myspace</text>
</headings>
<headings>
<level>h1</level>
<text>Join with your email address</text>
</headings>
<headings>
<level>h1</level>
<text>You're almost ready...</text>
</headings>
<headings>
<level>h1</level>
<text>You're almost ready...</text>
</headings>
<headings>
<level>h4</level>
<text>Welcome to Myspace. Just start typing to find music.</text>
</headings>
<headings>
<level>h5</level>
<text></text>
</headings>
<headings>
<level>h6</level>
<text>Play Next</text>
</headings>
<headings>
<level>h6</level>
<text>Play Last</text>
</headings>
<headings>
<level>h6</level>
<text>Start Radio</text>
</headings>
<headings>
<level>h6</level>
<text>New Mix</text>
</headings>
<headings>
<level>h3</level>
<text>Connecting to your webcam.</text>
</headings>
<headings>
<level>h6</level>
<text></text>
</headings>
<imgTags>
<src>https://content.myspacecdn.com/images03/30/8a09e233cd474d95a612b79fe3f4df37/300x300.jpg</src>
</imgTags>
<imgTags>
<src>https://content.myspacecdn.com/images04/1/2b69174db2ee4fc494f2667ca48f2820/300x300.jpg</src>
</imgTags>
<imgTags>
<src>https://content.myspacecdn.com/images04/10/7d1cfa40c19b457fb9da2a8c78a2112c/300x300.jpg</src>
</imgTags>
<imgTags>
<src>https://content.myspacecdn.com/images04/12/f0d10ec3ba46462980833898b9e3348e/300x300.jpg</src>
</imgTags>
<imgTags>
<src>https://content.myspacecdn.com/images03/1/9318d5bf18cc4e36988b51a63a2f9070/600x600.jpg</src>
</imgTags>
<imgTags>
<src>https://content.myspacecdn.com/images03/1/090e487e9e3c4403a789ba76a2ed669c/600x600.jpg</src>
</imgTags>
<imgTags>
<src>https://content.myspacecdn.com/images03/1/2ab6a5c086cd4796a0050c2065a2a08d/600x600.jpg</src>
</imgTags>
<imgTags>
<src>https://content.myspacecdn.com/images04/12/fd257fff4a5743098109d1878249b2f0/600x600.jpg</src>
</imgTags>
<imgTags>
<src>https://content.myspacecdn.com/images04/12/ad521e6cfd234a97b17639a9acbb75ab/600x600.jpg</src>
</imgTags>
<imgTags>
<src>https://content.myspacecdn.com/images04/2/2f1b3a0e2eea44c78ced4338bb93c654/600x600.jpg</src>
</imgTags>
<imgTags>
<src>https://content.myspacecdn.com/images04/8/62c7e1db20d8425c97250c1adc1d3780/600x600.jpg</src>
</imgTags>
<imgTags>
<src>https://content.myspacecdn.com/images04/4/e3c2a9a3db324025890e3bd048b963b5/600x600.jpg</src>
</imgTags>
<imgTags>
<src>https://content.myspacecdn.com/images04/8/5eba528b219443ffacdf1c4a6958ed3a/600x600.jpg</src>
</imgTags>
<imgTags>
<src>https://content.myspacecdn.com/images04/12/b165cd1d41594a57a00ff903fd4e1fb2/600x600.jpg</src>
</imgTags>
<imgTags>
<src>https://content.myspacecdn.com/images03/1/523b0e234b7b44f99e556f52b55be6c0/600x600.jpg</src>
</imgTags>
<imgTags>
<src>https://content.myspacecdn.com/images03/1/b2176637f8824a95bc4638a0d2227233/600x600.jpg</src>
</imgTags>
<imgTags>
<src>https://content.myspacecdn.com/images04/6/a812b34240054828bd39773f61259b17/640w.jpg</src>
<alt></alt>
</imgTags>
<imgTags>
<src></src>
<alt></alt>
</imgTags>
<imgTags>
<src></src>
</imgTags>
<imgTags>
<src>https://content.myspacecdn.com/images04/3/cf6f426bd7864dc698ca8eebcc66cba9/640w.jpg</src>
<alt></alt>
</imgTags>
<imgTags>
<src></src>
<alt></alt>
</imgTags>
<imgTags>
<src></src>
</imgTags>
<imgTags>
<src>https://content.myspacecdn.com/images03/1/c486b6c8897c46c39d4c7cc2689f8894/600x600.jpg</src>
</imgTags>
<imgTags>
<src>https://content.myspacecdn.com/images03/1/86cecc36959444629806f5049fad1ed6/600x600.jpg</src>
</imgTags>
<imgTags>
<src>https://content.myspacecdn.com/images03/1/e2de025fefe8443d84a9414f3286066e/600x600.jpg</src>
</imgTags>
<imgTags>
<src>https://content.myspacecdn.com/images04/3/d0f820f5f0f04df1866f7fab1d247563/600x600.jpg</src>
</imgTags>
<imgTags>
<src>https://content.myspacecdn.com/images04/9/948b5e1091ea4169bf2e15cba00d4ffd/600x600.jpg</src>
</imgTags>
<imgTags>
<src>https://content.myspacecdn.com/images03/1/0e49b6c6b219419f8687b2299e1fd44a/600x600.jpg</src>
</imgTags>
<imgTags>
<src>https://content.myspacecdn.com/images03/1/12eabe82405d4d70bc4197eb4ced16ce/600x600.jpg</src>
</imgTags>
<imgTags>
<src>https://content.myspacecdn.com/images03/1/e27fa6be9d7148418ec08377d639af99/600x600.jpg</src>
</imgTags>
<imgTags>
<src>https://content.myspacecdn.com/images03/1/cf9bc2d9402e455eb351c08b8a9c05a5/600x600.jpg</src>
</imgTags>
<imgTags>
<src>https://content.myspacecdn.com/images03/1/06e426f8007f4b89b4acbea3b7090ae8/600x600.jpg</src>
</imgTags>
<imgTags>
<src>https://content.myspacecdn.com/images03/1/b8fb3da3d9164e278f04921827b6948d/600x600.jpg</src>
</imgTags>
<imgTags>
<src>https://content.myspacecdn.com/images03/1/bca73a5414be4d07a8f6280da89e180b/600x600.jpg</src>
</imgTags>
<imgTags>
<src>https://content.myspacecdn.com/images03/1/c4e044c951374002b750c4a8a86238ca/600x600.jpg</src>
</imgTags>
<imgTags>
<src>https://content.myspacecdn.com/images03/1/b93fea92ae1f48a99ec14bc52e317053/600x600.jpg</src>
</imgTags>
<imgTags>
<src>https://content.myspacecdn.com/images03/1/497b36f5bf6a4a34927f130f0fb10e65/600x600.jpg</src>
</imgTags>
<imgTags>
<src>https://content.myspacecdn.com/images03/1/96ddcdd8b7e949d9ac1d568a488c46bb/600x600.jpg</src>
</imgTags>
<imgTags>
<src>https://content.myspacecdn.com/images03/1/1cdde4b322b44c0c84bb765c6ef98554/600x600.jpg</src>
</imgTags>
<imgTags>
<src>https://content.myspacecdn.com/images03/1/3a591c8fc1cd4b329d0144122bcb9320/600x600.jpg</src>
</imgTags>
<imgTags>
<src>https://content.myspacecdn.com/images03/1/c5d8ab1c01e84bb286e535a36cc61d57/600x600.jpg</src>
</imgTags>
<imgTags>
<src>https://content.myspacecdn.com/images03/1/bbf36605a04a4cac86303d46ad17fe74/600x600.jpg</src>
</imgTags>
<imgTags>
<src>https://content.myspacecdn.com/images03/1/9741ba06dc194da99770b80ba2a928d5/600x600.jpg</src>
</imgTags>
<imgTags>
<src>https://content.myspacecdn.com/images03/1/9c89c58b61594a628301d23340db17ad/600x600.jpg</src>
</imgTags>
<imgTags>
<src>https://content.myspacecdn.com/images03/1/c78080636a9c4e4c9dae6d827255b01c/600x600.jpg</src>
</imgTags>
<imgTags>
<src>https://content.myspacecdn.com/images03/1/1ebf54eda24c40c4a2646385c2720e44/600x600.jpg</src>
</imgTags>
<imgTags>
<src>https://content.myspacecdn.com/images03/1/72369b92792a453f8eaa1d4347e53a87/600x600.jpg</src>
</imgTags>
<imgTags>
<src>https://content.myspacecdn.com/images03/1/23eb3d7fb6c74f0d841e8d0023eed599/600x600.jpg</src>
</imgTags>
<imgTags>
<src>https://content.myspacecdn.com/images03/1/fc744949d24d46e6baf830ca921634a8/600x600.jpg</src>
</imgTags>
<imgTags>
<src>https://content.myspacecdn.com/images03/1/31969c6cb733482fa0576d51d9e60f77/600x600.jpg</src>
</imgTags>
<imgTags>
<src>https://content.myspacecdn.com/images03/1/22e118b28b92451f93f2551476dde06c/600x600.jpg</src>
</imgTags>
<imgTags>
<src>https://content.myspacecdn.com/images03/1/4ec0b1f3095b4eb1ac97996cfd7a9811/600x600.jpg</src>
</imgTags>
<imgTags>
<src>https://content.myspacecdn.com/images03/1/307f98980dae4a3194476a210d797dca/600x600.jpg</src>
</imgTags>
<imgTags>
<src>https://content.myspacecdn.com/images03/1/59820823c75b459a83f84c008147c4dd/600x600.jpg</src>
</imgTags>
<imgTags>
<src>https://content.myspacecdn.com/images03/1/68abd6a2e0654dd9bd7af1928d1fc340/600x600.jpg</src>
</imgTags>
<imgTags>
<src>https://content.myspacecdn.com/images03/1/b7729020f8594730a94b5303f27d8361/600x600.jpg</src>
</imgTags>
<imgTags>
<src>https://content.myspacecdn.com/images03/1/13b0e6a116ef4acb89b5c05ab071a250/600x600.jpg</src>
</imgTags>
<imgTags>
<src>https://content.myspacecdn.com/images03/1/611eb5194e8c4fe1a3542641d51e21e4/600x600.jpg</src>
</imgTags>
<imgTags>
<src>https://content.myspacecdn.com/images03/1/066e482379084eacaaf3481ecec086ee/600x600.jpg</src>
</imgTags>
<imgTags>
<src>https://content.myspacecdn.com/images03/1/fee3bb16f94a474da540ff5a720f3c1b/600x600.jpg</src>
</imgTags>
<imgTags>
<src>https://content.myspacecdn.com/images03/1/81ba0822582941248a5e29dbf236e5dc/600x600.jpg</src>
</imgTags>
<imgTags>
<src>https://content.myspacecdn.com/images03/1/7edf416088864f88b9f976060b199793/600x600.jpg</src>
</imgTags>
<imgTags>
<src>https://content.myspacecdn.com/images03/1/45617ed02b884d6f9894f30fa5e79804/600x600.jpg</src>
</imgTags>
<imgTags>
<src>https://content.myspacecdn.com/images03/1/9c82f95520564d25811bfe0f94aee27b/600x600.jpg</src>
</imgTags>
<imgTags>
<src>https://content.myspacecdn.com/images03/1/0e124acca45b45228b192cb048f34f49/600x600.jpg</src>
</imgTags>
<imgTags>
<src>https://content.myspacecdn.com/images03/1/d420e5d2fba34348a0956cc4c8f2608b/600x600.jpg</src>
</imgTags>
<imgTags>
<src>https://content.myspacecdn.com/images03/1/660bed5f21f547be9730fbdb665baa48/600x600.jpg</src>
</imgTags>
<imgTags>
<src>https://content.myspacecdn.com/images03/1/9c33fed7657f4f18899e801f9ab732e2/600x600.jpg</src>
</imgTags>
<imgTags>
<src>https://content.myspacecdn.com/images03/1/93834fddf25f4ed6b66d52c2daa5ebb5/600x600.jpg</src>
</imgTags>
<imgTags>
<src>https://content.myspacecdn.com/images03/1/d1dc0798e1504220950c3610c53c623a/600x600.jpg</src>
</imgTags>
<imgTags>
<src>https://content.myspacecdn.com/images03/1/2f6189657b204d7caaa2b04348f61d78/600x600.jpg</src>
</imgTags>
<imgTags>
<src>https://content.myspacecdn.com/images03/1/272ea68c1a854f9b893669846bcff6a9/600x600.jpg</src>
</imgTags>
<imgTags>
<src>https://content.myspacecdn.com/images03/1/3c3f739e14b84b8892b656fdf5e55e33/600x600.jpg</src>
</imgTags>
<imgTags>
<src>https://content.myspacecdn.com/images03/1/d27025d999a646a68c98149eb44dc798/600x600.jpg</src>
</imgTags>
<imgTags>
<src>https://content.myspacecdn.com/images03/1/c87a6b392007469697ac3e19ce2f9448/600x600.jpg</src>
</imgTags>
<imgTags>
<src>https://content.myspacecdn.com/images03/1/150b153e396746c9a49f9faef2ec0b1e/600x600.jpg</src>
</imgTags>
<imgTags>
<src>https://content.myspacecdn.com/images03/1/6959d3e8c11e4f58b7fc3833fb56234e/600x600.jpg</src>
</imgTags>
<imgTags>
<src>https://content.myspacecdn.com/images03/1/15c7811cc6684ca29a68824475a78979/600x600.jpg</src>
</imgTags>
<imgTags>
<src>https://content.myspacecdn.com/images03/1/2ca92f27986040fa975a4247b2ba508f/600x600.jpg</src>
</imgTags>
<imgTags>
<src>https://content.myspacecdn.com/images03/1/e6c49c1917e243a59544760bb0de0bea/600x600.jpg</src>
</imgTags>
<imgTags>
<src>https://content.myspacecdn.com/images03/1/35e014b74ea7492e85c09ca92e16a329/600x600.jpg</src>
</imgTags>
<imgTags>
<src>https://content.myspacecdn.com/images03/1/672a6e4a9fb34b23ae50652512dcd914/600x600.jpg</src>
</imgTags>
<imgTags>
<src>https://content.myspacecdn.com/images03/1/ca011b437c724d23b0cba7f31a538846/600x600.jpg</src>
</imgTags>
<imgTags>
<src>https://content.myspacecdn.com/images03/1/88cd5a62e7d346ada76b8b2aa5118b7b/600x600.jpg</src>
</imgTags>
<imgTags>
<src>https://content.myspacecdn.com/images03/1/20d1fbd0d30b42e6a5524dc3db63f83f/600x600.jpg</src>
</imgTags>
<imgTags>
<src>https://content.myspacecdn.com/images03/1/123dc1c59a704917a6a61bb4d52a76f7/600x600.jpg</src>
</imgTags>
<imgTags>
<src>https://content.myspacecdn.com/images03/1/c191f318985f49e69d839f8d97b0a294/600x600.jpg</src>
</imgTags>
<imgTags>
<src>https://content.myspacecdn.com/images03/1/1597f8dfb26d4974a9e426f1a3468ee2/600x600.jpg</src>
</imgTags>
<imgTags>
<src>https://content.myspacecdn.com/images03/1/ea54328ee6c34450ab061374bc961252/600x600.jpg</src>
</imgTags>
<imgTags>
<src>https://content.myspacecdn.com/images03/1/cb1ea3c2873647f9883e812da51ee876/600x600.jpg</src>
</imgTags>
<imgTags>
<src>https://content.myspacecdn.com/images03/1/d52ad85c9a8b4dc9ad358376a81cd853/600x600.jpg</src>
</imgTags>
<imgTags>
<src>https://content.myspacecdn.com/images03/1/efab65c168f3472c96617cb9c873af6d/600x600.jpg</src>
</imgTags>
<imgTags>
<src>https://content.myspacecdn.com/images03/1/242b3262e4144c8aba9abc4684439228/600x600.jpg</src>
</imgTags>
<imgTags>
<src>https://content.myspacecdn.com/images03/1/9e7f8297bb0c43ec9b67e76a7eaad38e/600x600.jpg</src>
</imgTags>
<imgTags>
<src>https://content.myspacecdn.com/images03/1/d7607dd1a5f14c6eb5751f6cda4a7faf/600x600.jpg</src>
</imgTags>
<imgTags>
<src>https://content.myspacecdn.com/images03/1/d8984834515e4a04ba96b52576b9a51a/600x600.jpg</src>
</imgTags>
<imgTags>
<src>https://content.myspacecdn.com/images03/1/99f96de23b844987a2b431a8513c4ac8/600x600.jpg</src>
</imgTags>
<imgTags>
<src>https://content.myspacecdn.com/images03/1/830af16a791143358912339f78bb712f/600x600.jpg</src>
</imgTags>
<imgTags>
<src>https://content.myspacecdn.com/images03/1/2738edba810446ba8bd91196ad2beba1/600x600.jpg</src>
</imgTags>
<imgTags>
<src>https://content.myspacecdn.com/images03/1/163a0f76bc21461c99c5934e84d21afc/600x600.jpg</src>
</imgTags>
<imgTags>
<src>https://content.myspacecdn.com/images03/1/b9e36ead7cb14594a9dbf73b48eed747/600x600.jpg</src>
</imgTags>
<imgTags>
<src>https://content.myspacecdn.com/images03/1/b905fc6cbcde4753bdf7d03b3a6adb87/600x600.jpg</src>
</imgTags>
<imgTags>
<src>https://content.myspacecdn.com/images03/1/9092c90f19a845df9a809f2eb3c4883e/600x600.jpg</src>
</imgTags>
<imgTags>
<src>https://content.myspacecdn.com/images03/1/7fe125ca6ede46a0bfea52c2c915f837/600x600.jpg</src>
</imgTags>
<imgTags>
<src></src>
</imgTags>
<responseBody></responseBody>
<fb_x003A_app_id>373499472709067</fb_x003A_app_id>
<msapplication-TileColor>#313131</msapplication-TileColor>
<msapplication-TileImage>https://x.myspacecdn.com/new/common/images/favicons/tile.png</msapplication-TileImage>
<p_x003A_domain_verify>9069a95798cb530a18cfa50cec2757d1</p_x003A_domain_verify>
</data>
</Root>status: ok
error:
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: Date, Network, and Connect with People
- level: h2
text: Listen to Damiano Davidโs uplifting new single โBorn With A Broken Heartโ
- level: h2
text: Idris Elba is moving to Africa to support its film industry
- level: h2
text: 'Hereโs every song in โVenom: The Last Danceโ'
- 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 Best in Music & Culture. All In One Place.
- 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: 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: 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: 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: 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: 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://content.myspacecdn.com/images03/30/8a09e233cd474d95a612b79fe3f4df37/300x300.jpg
- src: https://content.myspacecdn.com/images04/1/2b69174db2ee4fc494f2667ca48f2820/300x300.jpg
- src: https://content.myspacecdn.com/images04/10/7d1cfa40c19b457fb9da2a8c78a2112c/300x300.jpg
- src: https://content.myspacecdn.com/images04/12/f0d10ec3ba46462980833898b9e3348e/300x300.jpg
- src: https://content.myspacecdn.com/images03/1/9318d5bf18cc4e36988b51a63a2f9070/600x600.jpg
- src: https://content.myspacecdn.com/images03/1/090e487e9e3c4403a789ba76a2ed669c/600x600.jpg
- src: https://content.myspacecdn.com/images03/1/2ab6a5c086cd4796a0050c2065a2a08d/600x600.jpg
- src: https://content.myspacecdn.com/images04/12/fd257fff4a5743098109d1878249b2f0/600x600.jpg
- src: https://content.myspacecdn.com/images04/12/ad521e6cfd234a97b17639a9acbb75ab/600x600.jpg
- src: https://content.myspacecdn.com/images04/2/2f1b3a0e2eea44c78ced4338bb93c654/600x600.jpg
- src: https://content.myspacecdn.com/images04/8/62c7e1db20d8425c97250c1adc1d3780/600x600.jpg
- src: https://content.myspacecdn.com/images04/4/e3c2a9a3db324025890e3bd048b963b5/600x600.jpg
- src: https://content.myspacecdn.com/images04/8/5eba528b219443ffacdf1c4a6958ed3a/600x600.jpg
- src: https://content.myspacecdn.com/images04/12/b165cd1d41594a57a00ff903fd4e1fb2/600x600.jpg
- src: https://content.myspacecdn.com/images03/1/523b0e234b7b44f99e556f52b55be6c0/600x600.jpg
- src: https://content.myspacecdn.com/images03/1/b2176637f8824a95bc4638a0d2227233/600x600.jpg
- src: https://content.myspacecdn.com/images04/6/a812b34240054828bd39773f61259b17/640w.jpg
alt: ''
- src: ''
alt: ''
- src: ''
- src: https://content.myspacecdn.com/images04/3/cf6f426bd7864dc698ca8eebcc66cba9/640w.jpg
alt: ''
- src: ''
alt: ''
- src: ''
- src: https://content.myspacecdn.com/images03/1/c486b6c8897c46c39d4c7cc2689f8894/600x600.jpg
- src: https://content.myspacecdn.com/images03/1/86cecc36959444629806f5049fad1ed6/600x600.jpg
- src: https://content.myspacecdn.com/images03/1/e2de025fefe8443d84a9414f3286066e/600x600.jpg
- src: https://content.myspacecdn.com/images04/3/d0f820f5f0f04df1866f7fab1d247563/600x600.jpg
- src: https://content.myspacecdn.com/images04/9/948b5e1091ea4169bf2e15cba00d4ffd/600x600.jpg
- src: https://content.myspacecdn.com/images03/1/0e49b6c6b219419f8687b2299e1fd44a/600x600.jpg
- src: https://content.myspacecdn.com/images03/1/12eabe82405d4d70bc4197eb4ced16ce/600x600.jpg
- src: https://content.myspacecdn.com/images03/1/e27fa6be9d7148418ec08377d639af99/600x600.jpg
- src: https://content.myspacecdn.com/images03/1/cf9bc2d9402e455eb351c08b8a9c05a5/600x600.jpg
- src: https://content.myspacecdn.com/images03/1/06e426f8007f4b89b4acbea3b7090ae8/600x600.jpg
- src: https://content.myspacecdn.com/images03/1/b8fb3da3d9164e278f04921827b6948d/600x600.jpg
- src: https://content.myspacecdn.com/images03/1/bca73a5414be4d07a8f6280da89e180b/600x600.jpg
- src: https://content.myspacecdn.com/images03/1/c4e044c951374002b750c4a8a86238ca/600x600.jpg
- src: https://content.myspacecdn.com/images03/1/b93fea92ae1f48a99ec14bc52e317053/600x600.jpg
- src: https://content.myspacecdn.com/images03/1/497b36f5bf6a4a34927f130f0fb10e65/600x600.jpg
- src: https://content.myspacecdn.com/images03/1/96ddcdd8b7e949d9ac1d568a488c46bb/600x600.jpg
- src: https://content.myspacecdn.com/images03/1/1cdde4b322b44c0c84bb765c6ef98554/600x600.jpg
- src: https://content.myspacecdn.com/images03/1/3a591c8fc1cd4b329d0144122bcb9320/600x600.jpg
- src: https://content.myspacecdn.com/images03/1/c5d8ab1c01e84bb286e535a36cc61d57/600x600.jpg
- src: https://content.myspacecdn.com/images03/1/bbf36605a04a4cac86303d46ad17fe74/600x600.jpg
- src: https://content.myspacecdn.com/images03/1/9741ba06dc194da99770b80ba2a928d5/600x600.jpg
- src: https://content.myspacecdn.com/images03/1/9c89c58b61594a628301d23340db17ad/600x600.jpg
- src: https://content.myspacecdn.com/images03/1/c78080636a9c4e4c9dae6d827255b01c/600x600.jpg
- src: https://content.myspacecdn.com/images03/1/1ebf54eda24c40c4a2646385c2720e44/600x600.jpg
- src: https://content.myspacecdn.com/images03/1/72369b92792a453f8eaa1d4347e53a87/600x600.jpg
- src: https://content.myspacecdn.com/images03/1/23eb3d7fb6c74f0d841e8d0023eed599/600x600.jpg
- src: https://content.myspacecdn.com/images03/1/fc744949d24d46e6baf830ca921634a8/600x600.jpg
- src: https://content.myspacecdn.com/images03/1/31969c6cb733482fa0576d51d9e60f77/600x600.jpg
- src: https://content.myspacecdn.com/images03/1/22e118b28b92451f93f2551476dde06c/600x600.jpg
- src: https://content.myspacecdn.com/images03/1/4ec0b1f3095b4eb1ac97996cfd7a9811/600x600.jpg
- src: https://content.myspacecdn.com/images03/1/307f98980dae4a3194476a210d797dca/600x600.jpg
- src: https://content.myspacecdn.com/images03/1/59820823c75b459a83f84c008147c4dd/600x600.jpg
- src: https://content.myspacecdn.com/images03/1/68abd6a2e0654dd9bd7af1928d1fc340/600x600.jpg
- src: https://content.myspacecdn.com/images03/1/b7729020f8594730a94b5303f27d8361/600x600.jpg
- src: https://content.myspacecdn.com/images03/1/13b0e6a116ef4acb89b5c05ab071a250/600x600.jpg
- src: https://content.myspacecdn.com/images03/1/611eb5194e8c4fe1a3542641d51e21e4/600x600.jpg
- src: https://content.myspacecdn.com/images03/1/066e482379084eacaaf3481ecec086ee/600x600.jpg
- src: https://content.myspacecdn.com/images03/1/fee3bb16f94a474da540ff5a720f3c1b/600x600.jpg
- src: https://content.myspacecdn.com/images03/1/81ba0822582941248a5e29dbf236e5dc/600x600.jpg
- src: https://content.myspacecdn.com/images03/1/7edf416088864f88b9f976060b199793/600x600.jpg
- src: https://content.myspacecdn.com/images03/1/45617ed02b884d6f9894f30fa5e79804/600x600.jpg
- src: https://content.myspacecdn.com/images03/1/9c82f95520564d25811bfe0f94aee27b/600x600.jpg
- src: https://content.myspacecdn.com/images03/1/0e124acca45b45228b192cb048f34f49/600x600.jpg
- src: https://content.myspacecdn.com/images03/1/d420e5d2fba34348a0956cc4c8f2608b/600x600.jpg
- src: https://content.myspacecdn.com/images03/1/660bed5f21f547be9730fbdb665baa48/600x600.jpg
- src: https://content.myspacecdn.com/images03/1/9c33fed7657f4f18899e801f9ab732e2/600x600.jpg
- src: https://content.myspacecdn.com/images03/1/93834fddf25f4ed6b66d52c2daa5ebb5/600x600.jpg
- src: https://content.myspacecdn.com/images03/1/d1dc0798e1504220950c3610c53c623a/600x600.jpg
- src: https://content.myspacecdn.com/images03/1/2f6189657b204d7caaa2b04348f61d78/600x600.jpg
- src: https://content.myspacecdn.com/images03/1/272ea68c1a854f9b893669846bcff6a9/600x600.jpg
- src: https://content.myspacecdn.com/images03/1/3c3f739e14b84b8892b656fdf5e55e33/600x600.jpg
- src: https://content.myspacecdn.com/images03/1/d27025d999a646a68c98149eb44dc798/600x600.jpg
- src: https://content.myspacecdn.com/images03/1/c87a6b392007469697ac3e19ce2f9448/600x600.jpg
- src: https://content.myspacecdn.com/images03/1/150b153e396746c9a49f9faef2ec0b1e/600x600.jpg
- src: https://content.myspacecdn.com/images03/1/6959d3e8c11e4f58b7fc3833fb56234e/600x600.jpg
- src: https://content.myspacecdn.com/images03/1/15c7811cc6684ca29a68824475a78979/600x600.jpg
- src: https://content.myspacecdn.com/images03/1/2ca92f27986040fa975a4247b2ba508f/600x600.jpg
- src: https://content.myspacecdn.com/images03/1/e6c49c1917e243a59544760bb0de0bea/600x600.jpg
- src: https://content.myspacecdn.com/images03/1/35e014b74ea7492e85c09ca92e16a329/600x600.jpg
- src: https://content.myspacecdn.com/images03/1/672a6e4a9fb34b23ae50652512dcd914/600x600.jpg
- src: https://content.myspacecdn.com/images03/1/ca011b437c724d23b0cba7f31a538846/600x600.jpg
- src: https://content.myspacecdn.com/images03/1/88cd5a62e7d346ada76b8b2aa5118b7b/600x600.jpg
- src: https://content.myspacecdn.com/images03/1/20d1fbd0d30b42e6a5524dc3db63f83f/600x600.jpg
- src: https://content.myspacecdn.com/images03/1/123dc1c59a704917a6a61bb4d52a76f7/600x600.jpg
- src: https://content.myspacecdn.com/images03/1/c191f318985f49e69d839f8d97b0a294/600x600.jpg
- src: https://content.myspacecdn.com/images03/1/1597f8dfb26d4974a9e426f1a3468ee2/600x600.jpg
- src: https://content.myspacecdn.com/images03/1/ea54328ee6c34450ab061374bc961252/600x600.jpg
- src: https://content.myspacecdn.com/images03/1/cb1ea3c2873647f9883e812da51ee876/600x600.jpg
- src: https://content.myspacecdn.com/images03/1/d52ad85c9a8b4dc9ad358376a81cd853/600x600.jpg
- src: https://content.myspacecdn.com/images03/1/efab65c168f3472c96617cb9c873af6d/600x600.jpg
- src: https://content.myspacecdn.com/images03/1/242b3262e4144c8aba9abc4684439228/600x600.jpg
- src: https://content.myspacecdn.com/images03/1/9e7f8297bb0c43ec9b67e76a7eaad38e/600x600.jpg
- src: https://content.myspacecdn.com/images03/1/d7607dd1a5f14c6eb5751f6cda4a7faf/600x600.jpg
- src: https://content.myspacecdn.com/images03/1/d8984834515e4a04ba96b52576b9a51a/600x600.jpg
- src: https://content.myspacecdn.com/images03/1/99f96de23b844987a2b431a8513c4ac8/600x600.jpg
- src: https://content.myspacecdn.com/images03/1/830af16a791143358912339f78bb712f/600x600.jpg
- src: https://content.myspacecdn.com/images03/1/2738edba810446ba8bd91196ad2beba1/600x600.jpg
- src: https://content.myspacecdn.com/images03/1/163a0f76bc21461c99c5934e84d21afc/600x600.jpg
- src: https://content.myspacecdn.com/images03/1/b9e36ead7cb14594a9dbf73b48eed747/600x600.jpg
- src: https://content.myspacecdn.com/images03/1/b905fc6cbcde4753bdf7d03b3a6adb87/600x600.jpg
- src: https://content.myspacecdn.com/images03/1/9092c90f19a845df9a809f2eb3c4883e/600x600.jpg
- src: https://content.myspacecdn.com/images03/1/7fe125ca6ede46a0bfea52c2c915f837/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: 9069a95798cb530a18cfa50cec2757d1Response Structure
All API responses follow a consistent structure with the following fields:
| Field | Type | Description | Example |
|---|---|---|---|
| status | string | Indicates whether the request was successful ("ok") or failed ("error") | ok |
| error | string | null | Contains error message if status is "error", otherwise null | null |
| data | object | null | Contains the API response data if successful, otherwise null | {...} |
Response Data Fields
When the request is successful, the data object contains the following fields:
| Field | Type | Sample Value |
|---|---|---|
| requestUrl | string | "https://myspace.com" |
| url | string | "https://myspace.com/" |
| canonical | string | "https://myspace.com/discover/featured" |
| charset | string | "utf-8" |
| title | string | "Featured Content on Myspace" |
| image | string | "" |
| favicons | array | [{"rel":"shortcut icon","href":"https://x.myspacecdn.com/new/common/images/favicons/favicon.ico"}, ...] |
| author | string | "" |
| description | string | "Featured Content on Myspace" |
| keywords | string | "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 | string | "" |
| price | string | "" |
| priceCurrency | string | "" |
| availability | string | "" |
| robots | string | "" |
| jsonld | array | [] |
| og:url | string | "https://myspace.com/discover/featured" |
| og:locale | string | "" |
| og:locale:alternate | string | "" |
| og:title | string | "Featured Content on Myspace" |
Headers
Required and optional headers for API requests:
| Header Name | Required | Example Value | Description |
|---|---|---|---|
| X-API-Key | Yes | your_api_key_here | Your APIVerve API key. Found in your dashboard under API Keys. |
| Accept | No | application/json | Specify response format: application/json (default), application/xml, or application/yaml |
| User-Agent | No | MyApp/1.0 | Identifies your application for analytics and debugging purposes |
| X-Request-ID | No | req_123456789 | Custom request identifier for tracking and debugging requests |
| Cache-Control | No | no-cache | Control caching behavior for the request and response |
Client Libraries
To get started with minimal code, most of our APIs are available through client libraries and clients:
Error Codes
The API uses standard HTTP status codes to indicate success or failure:
| Status Code | Message | Description |
|---|---|---|
| 200 | OK | Request successful, data returned |
| 400 | Bad Request | Invalid request parameters or malformed request |
| 401 | Unauthorized | Missing or invalid API key |
| 403 | Forbidden | API key does not have permission for this endpoint |
| 429 | Too Many Requests | Rate limit exceeded, please slow down requests |
| 500 | Internal Server Error | Server error, please try again later |
Was this page helpful?
Help us improve our documentation




