Spotify API

Spotify Podcast API

Fetch a Spotify podcast show's name, publisher, description, rating, and topics by show URL or ID.

POST/v1/run/spotify.podcast
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": {
    "averageRating": 4.6,
    "description": "A short example description of this item.",
    "id": "a1b2c3d4",
    "name": "Example title",
    "publisher": "example",
    "totalRatings": 5,
    "uri": "example"
  },
  "found": true
}
Response interface
interface SpotifyPodcastResponse {
  data: {
    averageRating: number;
    description: string;
    id: string;
    name: string;
    publisher: string;
    totalRatings: number;
    uri: string;
  } | 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
curl -X POST https://api.getanyapi.com/v1/run/spotify.podcast \
  -H "Authorization: Bearer $ANYAPI_KEY" \
  -H "Content-Type: application/json" \
  -d '{"url":"https://open.spotify.com/show/3mliji9352UAk3XnWElnDV"}'
FieldTypeExample value
Request body
idstringSpotify podcast show ID (alternative to url).
urlstring"https://open.spotify.com/show/3mliji9352UAk3XnWElnDV"Spotify podcast show URL (e.g. https://open.spotify.com/show/3mliji9352UAk3XnWElnDV).
Response
dataobject
data.averageRatingnumber
data.descriptionstringPopulated whenever the provider has data for the entity.
data.idstringPopulated whenever the provider has data for the entity.
data.namestringPopulated whenever the provider has data for the entity.
data.publisherstringPopulated whenever the provider has data for the entity.
data.totalRatingsinteger
data.uristringPopulated whenever the provider has data for the entity.
foundboolean
Price
Price per requestUSD$0.0012
Price /1k reqUSD$1.20

FAQ

About the Spotify Podcast API

The AnyAPI Spotify Podcast API returns Spotify podcast data as normalized JSON from one POST call to /v1/run/spotify.podcast. Fetch a Spotify podcast show's name, publisher, description, rating, and topics 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.

Fetch a Spotify podcast show's name, publisher, description, rating, and topics 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.