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

Choose one catalog endpoint for this request.

8 shown
GETapiKey3 credits/requestspotify.searchResponseDocSpotifyPodcasts
GET /spotify-podcasts/search

Search Spotify Podcasts

Returns normalized Spotify podcast shows, episodes, and top results for a search term.

API key required. Paste a full key or rotate one from the API Keys page.

Set up API key
View docs

API key

API key required for live requests. Your key is only used to send requests from this Playground.

not configured

Active Playground key: not configured

Manage API keys in Console

Required query parameters

Add an API key to send a live request.

If an active API key is configured, Copy cURL includes it. Share links never include API keys.

MCP tool

MCP URL

https://mcp.crawlora.net/mcp

Tool name

spotify_podcasts.search

View docs
Sample responseGET

Shown before your first request. Add an API key and send a request to see the live response, status, latency, and headers.

{
  "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": []
  }
}

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>"