Endpoint Playground
Test Crawlora's Spotify Podcasts Episode 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/episode?uri=spotify%3Aepisode%3A2C2Y5kNq7qCVOVhbA0G3os&id=2C2Y5kNq7qCVOVhbA0G3os" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| uri | string | No | spotify:episode:2C2Y5kNq7qCVOVhbA0G3os | Spotify episode URI or open.spotify.com episode URL |
| id | string | No | 2C2Y5kNq7qCVOVhbA0G3os | Spotify episode ID. Used when uri is omitted |
{
"code": 200,
"msg": "OK",
"data": {
"uri": "spotify:episode:2C2Y5kNq7qCVOVhbA0G3os",
"id": "2C2Y5kNq7qCVOVhbA0G3os",
"type": "Episode",
"name": "#2496 - Julia Mossbridge",
"releaseDate": "2026-05-08T17:00:00Z",
"durationMs": 9761982,
"isExplicit": true,
"isPlayable": true,
"playabilityReason": "PLAYABLE",
"mediaTypes": [
"AUDIO",
"VIDEO"
],
"imageUrl": "https://i.scdn.co/image/example",
"videoThumbnailUrl": "https://i.scdn.co/image/video-example",
"externalUrl": "https://open.spotify.com/episode/2C2Y5kNq7qCVOVhbA0G3os",
"shareUrl": "https://open.spotify.com/episode/2C2Y5kNq7qCVOVhbA0G3os",
"previewAudioUrl": "https://audio-preview.spotifycdn.com/example.mp3",
"previewAudioUrls": [
"https://audio-preview.spotifycdn.com/example.mp3"
],
"transcriptCount": 1,
"show": {
"uri": "spotify:show:4rOoJ6Egrf8K2IrywzwOMk",
"name": "The Joe Rogan Experience",
"externalUrl": "https://open.spotify.com/show/4rOoJ6Egrf8K2IrywzwOMk"
},
"meta": {
"operationName": "getEpisodeOrChapter",
"appVersion": "1.2.90.373.g86862e17",
"sourceUrl": "https://api-partner.spotify.com/pathfinder/v2/query",
"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 public episode metadata from Spotify's getEpisodeOrChapter Pathfinder response, with episode page, embed page, and anonymous oEmbed fallbacks when Pathfinder is unavailable. Provide either uri or id; defaults to a known public episode when omitted.
{
"code": 200,
"msg": "OK",
"data": {
"uri": "spotify:episode:2C2Y5kNq7qCVOVhbA0G3os",
"id": "2C2Y5kNq7qCVOVhbA0G3os",
"type": "Episode",
"name": "#2496 - Julia Mossbridge",
"releaseDate": "2026-05-08T17:00:00Z",
"durationMs": 9761982,
"isExplicit": true,
"isPlayable": true,
"playabilityReason": "PLAYABLE",
"mediaTypes": [
"AUDIO",
"VIDEO"
],
"imageUrl": "https://i.scdn.co/image/example",
"videoThumbnailUrl": "https://i.scdn.co/image/video-example",
"externalUrl": "https://open.spotify.com/episode/2C2Y5kNq7qCVOVhbA0G3os",
"shareUrl": "https://open.spotify.com/episode/2C2Y5kNq7qCVOVhbA0G3os",
"previewAudioUrl": "https://audio-preview.spotifycdn.com/example.mp3",
"previewAudioUrls": [
"https://audio-preview.spotifycdn.com/example.mp3"
],
"transcriptCount": 1,
"show": {
"uri": "spotify:show:4rOoJ6Egrf8K2IrywzwOMk",
"name": "The Joe Rogan Experience",
"externalUrl": "https://open.spotify.com/show/4rOoJ6Egrf8K2IrywzwOMk"
},
"meta": {
"operationName": "getEpisodeOrChapter",
"appVersion": "1.2.90.373.g86862e17",
"sourceUrl": "https://api-partner.spotify.com/pathfinder/v2/query",
"fetchedAt": "2026-05-13T15:22:41Z"
}
}
}curl "https://api.crawlora.net/api/v1/spotify-podcasts/episode" \
-H "x-api-key: $CRAWLORA_API_KEY"