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