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 charts API Playground
Returns normalized Spotify podcast chart rankings from podcastcharts.byspotify.com.
GETapiKey3 credits/requestspotify.chartsResponseDocSpotifyPodcasts
Endpoint details
Returns normalized Spotify podcast chart rankings from podcastcharts.byspotify.com. The chart and region parameters are validated against Spotify's supported podcast chart slugs and countries. Category charts are available only in au, br, de, gb, mx, se, and us.
- Method
- GET
- Path
- /spotify-podcasts/charts
- Authentication
- apiKey
- Credit cost
- 3 credits/request
- Platform
- SpotifyPodcasts
- Parameters
- 4 documented fields
Request parameters
chart:queryregion:querylimit:queryx-api-key:header
Response schema fields
codedatadata.chartdata.chartNamedata.chartTypedata.itemsdata.items[].descriptiondata.items[].episodeDescriptiondata.items[].episodeExternalUrldata.items[].episodeImageUrldata.items[].episodeNamedata.items[].episodeUri
Sample response summary
{
"code": 200,
"msg": "OK",
"data": {
"chart": "religion-spirituality",
"chartName": "Religion & Spirituality",
"chartType": "category",
"region": "us",
"regionName": "United States",
"limit": 100,
"items": [
{
"rank": 1,
"uri": "spotify:show:4Pppt42NPK2XzKwNIoW7BR",
"rankMove": "UNCHANGED",
"name": "The Bible in a Year (with Fr. Mike Schmitz)",
"publisher": "Ascension",
"imageUrl": "https://i.scdn.co/image/example",
"description": "A podcast description.",
"externalUrl": "https://open.spotify.com/show/4Pppt42NPK2XzKwNIoW7BR"
}
],
"meta": {
"sourceUrl": "https://podcastcharts.byspotify.com/api/charts/religion-spirituality?limit=100®ion=us",
"count": 1,
"fetchedAt": "2026-05-13T15:22:41Z"
}
}
}cURL example
curl "https://api.crawlora.net/api/v1/spotify-podcasts/charts" \
-H "x-api-key: <api-key>"