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 show episodes API Playground

Returns normalized podcast episodes for a Spotify show URI.

GETapiKey3 credits/requestspotify.showEpisodesResponseDocSpotifyPodcasts

Endpoint

Choose one catalog endpoint for this request.

8 shown
GETapiKey3 credits/requestspotify.showEpisodesResponseDocSpotifyPodcasts
GET /spotify-podcasts/show/episodes

Retrieve Spotify podcast show episodes

Returns normalized podcast episodes for a Spotify show URI.

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.show_episodes

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: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"
      }
    ]
  }
}

Endpoint details

Returns normalized podcast episodes for a Spotify show URI.

Method
GET
Path
/spotify-podcasts/show/episodes
Authentication
apiKey
Credit cost
3 credits/request
Platform
SpotifyPodcasts
Parameters
5 documented fields

Request parameters

uri:queryoffset:querylimit:queryinclude_episode_content_ratings_v2:queryx-api-key:header

Response schema fields

codedatadata.episodesdata.episodes[].descriptiondata.episodes[].durationMsdata.episodes[].externalUrldata.episodes[].imageUrldata.episodes[].imagesdata.episodes[].images[].heightdata.episodes[].images[].urldata.episodes[].images[].widthdata.episodes[].isExplicit

Sample response summary

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

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