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 catalog API Playground
Returns normalized Spotify Web Player catalog search results across tracks, artists, albums, playlists, shows, episodes, audiobooks, and top results.
GETapiKey3 credits/requestspotify.searchCatalogResponseDocSpotify
Endpoint details
Returns normalized Spotify Web Player catalog search results across tracks, artists, albums, playlists, shows, episodes, audiobooks, and top results. The endpoint fetches anonymous Spotify credentials at request time; caller-supplied Spotify bearer or client tokens are not required.
- Method
- GET
- Path
- /spotify/search
- Authentication
- apiKey
- Credit cost
- 3 credits/request
- Platform
- Spotify
- Parameters
- 12 documented fields
Request parameters
q:queryoffset:querylimit:querynumber_of_top_results:queryinclude_audiobooks:queryinclude_artist_has_concerts_field:queryinclude_pre_releases:queryinclude_album_pre_releases:queryinclude_authors:queryinclude_episode_content_ratings_v2:queryis_prefix: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": 10,
"topResults": [
{
"uri": "spotify:track:example",
"type": "Track",
"title": "Hello",
"externalUrl": "https://open.spotify.com/track/example"
}
],
"results": [
{
"uri": "spotify:artist:example",
"type": "Artist",
"title": "Example Artist",
"externalUrl": "https://open.spotify.com/artist/example"
}
],
"artists": [
{
"uri": "spotify:artist:example",
"type": "Artist",
"title": "Example Artist",
"externalUrl": "https://open.spotify.com/artist/example"
}
],
"meta": {
"operationName": "searchDesktop",
"appVersion": "1.2.90.400.g1e02cab1",
"resultCount": 1,
"artistCount": 1,
"topCount": 1,
"fetchedAt": "2026-05-13T15:22:41Z"
}
}
}cURL example
curl "https://api.crawlora.net/api/v1/spotify/search?q=<q>" \
-H "x-api-key: <api-key>"