Spotify API

Spotify Podcast episodes API

List a Spotify podcast show's episodes with titles, durations, descriptions, and release dates by show URL or ID.

POST/v1/run/spotify.podcast_episodes
Requests
-
30d

Pricing

One price, in dollars

Providers
Giraffe- served- uptime- p50$1.20/1k reqflat

Try it

Make your first request

Open in
Get a free key
Sample response
Free runs return only the first 3 results. Fund a key to get the full response.
{
  "data": {
    "episodes": [
      {
        "description": "A short example description of this item.",
        "durationMs": 13,
        "id": "a1b2c3d4",
        "name": "Example title",
        "releaseDate": "2024-01-15T09:30:00Z",
        "uri": "example"
      }
    ],
    "nextCursor": "example",
    "totalCount": 12500
  },
  "found": true
}
Response interface
interface SpotifyPodcastEpisodesResponse {
  data: {
    episodes: {
      description: string;
      durationMs: number;
      id: string;
      name: string;
      releaseDate: string;
      uri: string;
    }[];
    nextCursor: string | null;
    totalCount: number;
  } | null;
  found: boolean;
}

Full parameter and response reference - every field, type, and example for this endpoint.

Reference

Request, response, and price

Last verified 2026-09-16 · uptime and latency measured over 30d
POST /v1/run/spotify.podcast_episodes
curl -X POST https://api.getanyapi.com/v1/run/spotify.podcast_episodes \
  -H "Authorization: Bearer $ANYAPI_KEY" \
  -H "Content-Type: application/json" \
  -d '{"url":"https://open.spotify.com/show/4rOoJ6Egrf8K2IrywzwOMk"}'
FieldTypeExample value
Request body
cursorstringPagination cursor from a previous response for subsequent pages.
idstringSpotify podcast show ID (alternative to url).
urlstring"https://open.spotify.com/show/4rOoJ6Egrf8K2IrywzwOMk"Spotify podcast show URL (e.g. https://open.spotify.com/show/4rOoJ6Egrf8K2IrywzwOMk).
Response
dataobject
data.episodesobject[]Populated whenever the provider has data for the entity.
data.episodes[].descriptionstringPopulated whenever the provider has data for the entity.
data.episodes[].durationMsinteger
data.episodes[].idstringPopulated whenever the provider has data for the entity.
data.episodes[].namestringPopulated whenever the provider has data for the entity.
data.episodes[].releaseDatestringPopulated whenever the provider has data for the entity.
data.episodes[].uristringPopulated whenever the provider has data for the entity.
data.nextCursorstringOpaque cursor for the next page of episodes, or null when this lane has no more. Pass it back as cursor to continue.
data.totalCountinteger
foundboolean
Price
Price per requestUSD$0.0012
Price /1k reqUSD$1.20

FAQ

About the Spotify Podcast episodes API

The AnyAPI Spotify Podcast episodes API returns Spotify podcast episodes data as normalized JSON from one POST call to /v1/run/spotify.podcast_episodes. List a Spotify podcast show's episodes with titles, durations, descriptions, and release dates by show URL or ID. AnyAPI returns one normalized schema whichever source serves it. It costs from $1.20 per 1,000 requests, in US dollars with no subscription and no monthly minimum.

It costs from $1.20 per 1,000 requests, in US dollars with no subscription and no monthly minimum. You fund one USD wallet, each call draws it down, and a failed request costs $0.

List a Spotify podcast show's episodes with titles, durations, descriptions, and release dates by show URL or ID. The response is normalized JSON with the same envelope every AnyAPI endpoint returns, so parsing a second endpoint is a change of URL and nothing else.