Endpoint Playground
Test Crawlora's Spotify Home API with realistic prefilled parameters. Generate a cURL request, inspect the expected structured JSON response, and open the full docs or pricing page when you are ready to integrate this public web data extraction endpoint into your application.
curl "https://api.crawlora.net/api/v1/spotify/home?time_zone=Asia%2FShanghai&sp_t=00000000-0000-4000-8000-000000000000§ion_items_limit=10&include_episode_content_ratings_v2=false" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| time_zone | string | No | Asia/Shanghai | IANA time zone used by Spotify home personalization |
| sp_t | string | No | 00000000-0000-4000-8000-000000000000 | Optional Spotify session token. A random UUID is generated when omitted |
| facet | string | No | Optional Spotify home facet | |
| section_items_limit | integer | No | 10 | Per-section item limit, clamped to 1-50 |
| include_episode_content_ratings_v2 | boolean | No | false | Include Spotify episode content ratings v2 |
{
"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"
}
}
}Public Playground
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.
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.
{
"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 "https://api.crawlora.net/api/v1/spotify/home" \
-H "x-api-key: $CRAWLORA_API_KEY"