Endpoint Playground
Test Crawlora's Spotify Podcasts Show 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?uri=spotify%3Ashow%3A1QQJ7FElLE0K6CIfZNCxU4&include_content_capability_trait=false&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 |
| include_content_capability_trait | boolean | No | false | Include content capability trait |
| include_episode_content_ratings_v2 | boolean | No | false | Include Spotify episode content ratings v2 |
{
"code": 200,
"msg": "OK",
"data": {
"uri": "spotify:show:1QQJ7FElLE0K6CIfZNCxU4",
"type": "Podcast",
"name": "Example Show",
"publisher": "Example Publisher",
"description": "A normalized show description.",
"mediaType": "AUDIO",
"totalEpisodes": 42,
"externalUrl": "https://open.spotify.com/show/1QQJ7FElLE0K6CIfZNCxU4"
}
}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 show metadata from Spotify Pathfinder.
{
"code": 200,
"msg": "OK",
"data": {
"uri": "spotify:show:1QQJ7FElLE0K6CIfZNCxU4",
"type": "Podcast",
"name": "Example Show",
"publisher": "Example Publisher",
"description": "A normalized show description.",
"mediaType": "AUDIO",
"totalEpisodes": 42,
"externalUrl": "https://open.spotify.com/show/1QQJ7FElLE0K6CIfZNCxU4"
}
}curl "https://api.crawlora.net/api/v1/spotify-podcasts/show" \
-H "x-api-key: $CRAWLORA_API_KEY"