Endpoint Playground
Test Crawlora's Spotify Podcasts Charts API with realistic prefilled parameters. Generate a cURL request, inspect the expected structured JSON response, and open the full docs or pricing page when you are ready to integrate this public web data extraction endpoint into your application.
curl "https://api.crawlora.net/api/v1/spotify-podcasts/charts?chart=religion-spirituality®ion=us&limit=100" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| chart | string | No | religion-spirituality | Chart slug. Allowed: top-podcasts, top-episodes, trending, arts, business, comedy, education, fiction, health-fitness, history, leisure, music, news, religion-spirituality, science, society-culture, sports, technology, true-crime, tv-film |
| region | string | No | us | Two-letter region code. Allowed: ar, au, at, br, ca, cl, co, dk, fi, fr, de, in, id, ie, it, jp, mx, nz, no, ph, pl, es, se, nl, gb, us |
| limit | integer | No | 100 | Result limit, clamped to 1-100 |
{
"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"
}
}
}Public Playground
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.
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.
{
"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 "https://api.crawlora.net/api/v1/spotify-podcasts/charts" \
-H "x-api-key: $CRAWLORA_API_KEY"