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 tracks API Playground

Returns normalized Spotify Web Player track search results for a search term. The endpoint fetches anonymous Spotify credentials at request time; caller-supplied Spotify bearer.

GETapiKey3 credits/requestspotify.searchCatalogResponseDocSpotify

Endpoint

Choose one catalog endpoint for this request.

30 shown
GETapiKey3 credits/requestspotify.searchCatalogResponseDocSpotify
GET /spotify/tracks/search

Search Spotify tracks

Returns normalized Spotify Web Player track search results for a search term. The endpoint fetches anonymous Spotify credentials at request time; caller-supplied Spotify bearer or client tokens are not required.

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.tracks_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": "hello",
    "offset": 0,
    "limit": 20,
    "results": [
      {
        "uri": "spotify:track:example",
        "type": "Track",
        "title": "Hello",
        "externalUrl": "https://open.spotify.com/track/example"
      }
    ],
    "tracks": [
      {
        "uri": "spotify:track:example",
        "type": "Track",
        "title": "Hello",
        "externalUrl": "https://open.spotify.com/track/example"
      }
    ],
    "meta": {
      "operationName": "searchTracks",
      "appVersion": "1.2.90.400.g1e02cab1",
      "resultCount": 1,
      "trackCount": 1,
      "fetchedAt": "2026-05-13T15:22:41Z"
    }
  }
}

Endpoint details

Returns normalized Spotify Web Player track search results for a search term. The endpoint fetches anonymous Spotify credentials at request time; caller-supplied Spotify bearer or client tokens are not required.

Method
GET
Path
/spotify/tracks/search
Authentication
apiKey
Credit cost
3 credits/request
Platform
Spotify
Parameters
10 documented fields

Request parameters

q:queryoffset:querylimit:querynumber_of_top_results:queryinclude_audiobooks:queryinclude_pre_releases:queryinclude_album_pre_releases:queryinclude_authors:queryinclude_episode_content_ratings_v2:queryx-api-key:header

Response schema fields

codedatadata.albumsdata.albums[].descriptiondata.albums[].externalUrldata.albums[].imageUrldata.albums[].imagesdata.albums[].images[].heightdata.albums[].images[].urldata.albums[].images[].widthdata.albums[].publisherdata.albums[].subtitle

Sample response summary

{
  "code": 200,
  "msg": "OK",
  "data": {
    "searchTerm": "hello",
    "offset": 0,
    "limit": 20,
    "results": [
      {
        "uri": "spotify:track:example",
        "type": "Track",
        "title": "Hello",
        "externalUrl": "https://open.spotify.com/track/example"
      }
    ],
    "tracks": [
      {
        "uri": "spotify:track:example",
        "type": "Track",
        "title": "Hello",
        "externalUrl": "https://open.spotify.com/track/example"
      }
    ],
    "meta": {
      "operationName": "searchTracks",
      "appVersion": "1.2.90.400.g1e02cab1",
      "resultCount": 1,
      "trackCount": 1,
      "fetchedAt": "2026-05-13T15:22:41Z"
    }
  }
}

cURL example

curl "https://api.crawlora.net/api/v1/spotify/tracks/search?q=<q>" \
  -H "x-api-key: <api-key>"