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
Search Spotify Podcasts API Playground
Returns normalized Spotify podcast shows, episodes, and top results for a search term.
GETapiKey3 credits/requestspotify.searchResponseDocSpotifyPodcasts
Endpoint details
Returns normalized Spotify podcast shows, episodes, and top results for a search term.
- Method
- GET
- Path
- /spotify-podcasts/search
- Authentication
- apiKey
- Credit cost
- 3 credits/request
- Platform
- SpotifyPodcasts
- Parameters
- 10 documented fields
Request parameters
q:queryoffset:querylimit:querynumber_of_top_results:queryinclude_pre_releases:queryinclude_album_pre_releases:queryinclude_audiobooks:queryinclude_authors:queryinclude_episode_content_ratings_v2:queryx-api-key:header
Response schema fields
codedatadata.episodesdata.episodes[].descriptiondata.episodes[].durationMsdata.episodes[].externalUrldata.episodes[].imageUrldata.episodes[].imagesdata.episodes[].images[].heightdata.episodes[].images[].urldata.episodes[].images[].widthdata.episodes[].isExplicit
Sample response summary
{
"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 example
curl "https://api.crawlora.net/api/v1/spotify-podcasts/search?q=<q>" \
-H "x-api-key: <api-key>"