Endpoint Playground
Test Crawlora's Spotify Podcasts Search 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/search?q=chatgpt&offset=0&limit=30&number_of_top_results=20&include_pre_releases=false&include_album_pre_releases=false&include_audiobooks=true&include_authors=false&include_episode_content_ratings_v2=false" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| q | string | Yes | chatgpt | Podcast search term |
| offset | integer | No | 0 | Search offset |
| limit | integer | No | 30 | Result limit, clamped to 1-50 |
| number_of_top_results | integer | No | 20 | Top result limit, clamped to 1-50 |
| include_pre_releases | boolean | No | false | Include pre-release results |
| include_album_pre_releases | boolean | No | false | Include album pre-release results |
| include_audiobooks | boolean | No | true | Include audiobooks |
| include_authors | boolean | No | false | Include authors |
| include_episode_content_ratings_v2 | boolean | No | false | Include Spotify episode content ratings v2 |
{
"code": 200,
"msg": "OK",
"data": {
"searchTerm": "chatgpt",
"offset": 0,
"limit": 30,
"shows": [
{
"uri": "spotify:show:example",
"type": "Podcast",
"title": "Example Show",
"publisher": "Example Publisher",
"externalUrl": "https://open.spotify.com/show/example"
}
],
"episodes": []
}
}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 shows, episodes, and top results for a search term.
{
"code": 200,
"msg": "OK",
"data": {
"searchTerm": "chatgpt",
"offset": 0,
"limit": 30,
"shows": [
{
"uri": "spotify:show:example",
"type": "Podcast",
"title": "Example Show",
"publisher": "Example Publisher",
"externalUrl": "https://open.spotify.com/show/example"
}
],
"episodes": []
}
}curl "https://api.crawlora.net/api/v1/spotify-podcasts/search?q=<q>" \
-H "x-api-key: $CRAWLORA_API_KEY"