Public Playground

Preview the endpoint before sending a live request

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.

Playground

Retrieve Spotify podcast episode details API Playground

Returns normalized public episode metadata from Spotify's getEpisodeOrChapter Pathfinder response, with episode page, embed page, and anonymous oEmbed fallbacks when Pathfinder.

GETapiKey2 credits/requestspotify.episodeResponseDocSpotifyPodcasts

Endpoint

Choose one catalog endpoint for this request.

8 shown
GETapiKey2 credits/requestspotify.episodeResponseDocSpotifyPodcasts
GET /spotify-podcasts/episode

Retrieve Spotify podcast episode details

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.

API key required. Paste a full key or rotate one from the API Keys page.

Set up API key
View docs

API key

API key required for live requests. Your key is only used to send requests from this Playground.

not configured

Active Playground key: not configured

Manage API keys in Console

Add an API key to send a live request.

If an active API key is configured, Copy cURL includes it. Share links never include API keys.

MCP tool

MCP URL

https://mcp.crawlora.net/mcp

Tool name

spotify_podcasts.episode

View docs
Sample responseGET

Shown before your first request. Add an API key and send a request to see the live response, status, latency, and headers.

{
  "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"
    }
  }
}

Endpoint details

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.

Method
GET
Path
/spotify-podcasts/episode
Authentication
apiKey
Credit cost
2 credits/request
Platform
SpotifyPodcasts
Parameters
3 documented fields

Request parameters

uri:queryid:queryx-api-key:header

Response schema fields

codedatadata.descriptiondata.durationMsdata.externalUrldata.htmlDescriptiondata.iddata.imageUrldata.imagesdata.images[].heightdata.images[].urldata.images[].width

Sample response summary

{
  "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 example

curl "https://api.crawlora.net/api/v1/spotify-podcasts/episode" \
  -H "x-api-key: <api-key>"