Endpoint Playground
Test Crawlora's Spotify Podcasts 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-podcasts/home?uri=spotify%3Agenre%3Apodcasts-web&page_offset=0&page_limit=10§ion_offset=0§ion_limit=10&include_episode_content_ratings_v2=false" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| uri | string | No | spotify:genre:podcasts-web | Spotify page or genre URI |
| page_offset | integer | No | 0 | Page pagination offset |
| page_limit | integer | No | 10 | Page pagination limit, clamped to 1-50 |
| section_offset | integer | No | 0 | Section pagination offset |
| section_limit | integer | No | 10 | Section pagination limit, clamped to 1-50 |
| include_episode_content_ratings_v2 | boolean | No | false | Include Spotify episode content ratings v2 |
{
"code": 200,
"msg": "OK",
"data": {
"uri": "spotify:genre:podcasts-web",
"title": "Podcasts",
"sections": [
{
"uri": "spotify:section:example",
"title": "Featured",
"items": [
{
"uri": "spotify:show:1QQJ7FElLE0K6CIfZNCxU4",
"type": "Podcast",
"title": "Example Show",
"externalUrl": "https://open.spotify.com/show/1QQJ7FElLE0K6CIfZNCxU4"
}
]
}
],
"meta": {
"operationName": "browsePage",
"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 sections and items from Spotify's podcast home browsePage Pathfinder response.
{
"code": 200,
"msg": "OK",
"data": {
"uri": "spotify:genre:podcasts-web",
"title": "Podcasts",
"sections": [
{
"uri": "spotify:section:example",
"title": "Featured",
"items": [
{
"uri": "spotify:show:1QQJ7FElLE0K6CIfZNCxU4",
"type": "Podcast",
"title": "Example Show",
"externalUrl": "https://open.spotify.com/show/1QQJ7FElLE0K6CIfZNCxU4"
}
]
}
],
"meta": {
"operationName": "browsePage",
"sectionCount": 1,
"fetchedAt": "2026-05-13T15:22:41Z"
}
}
}curl "https://api.crawlora.net/api/v1/spotify-podcasts/home" \
-H "x-api-key: $CRAWLORA_API_KEY"