Public Playground
Preview the endpoint before sending a live request
Sample responses, schemas, request previews, and code snippets are visible before sign in. Create an account when you are ready to save an API key and run authenticated requests.
Playground
Retrieve Spotify home sections API Playground
Returns normalized shelves and items from Spotify's Web Player home Pathfinder response.
GETapiKey3 credits/requestspotify.homeResponseDocSpotify
Endpoint details
Returns normalized shelves and items from Spotify's Web Player home Pathfinder response. The endpoint fetches anonymous Spotify credentials at request time; caller-supplied Spotify bearer or client tokens are not required.
- Method
- GET
- Path
- /spotify/home
- Authentication
- apiKey
- Credit cost
- 3 credits/request
- Platform
- Spotify
- Parameters
- 6 documented fields
Request parameters
time_zone:querysp_t:queryfacet:querysection_items_limit:queryinclude_episode_content_ratings_v2:queryx-api-key:header
Response schema fields
codedatadata.facetdata.greetingdata.metadata.meta.appVersiondata.meta.fetchedAtdata.meta.operationNamedata.meta.sectionCountdata.sectionsdata.sections[].itemsdata.sections[].items[].description
Sample response summary
{
"code": 200,
"msg": "OK",
"data": {
"timeZone": "UTC",
"greeting": "Good evening",
"sections": [
{
"title": "Shows to try",
"items": [
{
"uri": "spotify:show:1QQJ7FElLE0K6CIfZNCxU4",
"type": "Podcast",
"title": "Example Show",
"imageUrl": "https://i.scdn.co/image/example",
"externalUrl": "https://open.spotify.com/show/1QQJ7FElLE0K6CIfZNCxU4"
}
]
}
],
"meta": {
"operationName": "home",
"appVersion": "1.2.90.373.g86862e17",
"sectionCount": 1,
"fetchedAt": "2026-05-13T15:22:41Z"
}
}
}cURL example
curl "https://api.crawlora.net/api/v1/spotify/home" \
-H "x-api-key: <api-key>"