Endpoint Playground
Test Crawlora's Spotify Podcasts Show Episodes 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/show/episodes?uri=spotify%3Ashow%3A1QQJ7FElLE0K6CIfZNCxU4&offset=0&limit=50&include_episode_content_ratings_v2=false" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| uri | string | No | spotify:show:1QQJ7FElLE0K6CIfZNCxU4 | Spotify show URI |
| offset | integer | No | 0 | Episode offset |
| limit | integer | No | 50 | Episode 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:show:1QQJ7FElLE0K6CIfZNCxU4",
"offset": 0,
"limit": 50,
"total": 42,
"episodes": [
{
"uri": "spotify:episode:example",
"type": "Episode",
"name": "Example Episode",
"description": "A normalized episode description.",
"releaseDate": "2026-05-01",
"durationMs": 123456,
"externalUrl": "https://open.spotify.com/episode/example"
}
]
}
}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 podcast episodes for a Spotify show URI.
{
"code": 200,
"msg": "OK",
"data": {
"uri": "spotify:show:1QQJ7FElLE0K6CIfZNCxU4",
"offset": 0,
"limit": 50,
"total": 42,
"episodes": [
{
"uri": "spotify:episode:example",
"type": "Episode",
"name": "Example Episode",
"description": "A normalized episode description.",
"releaseDate": "2026-05-01",
"durationMs": 123456,
"externalUrl": "https://open.spotify.com/episode/example"
}
]
}
}curl "https://api.crawlora.net/api/v1/spotify-podcasts/show/episodes" \
-H "x-api-key: $CRAWLORA_API_KEY"