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 artists API Playground
Returns normalized Spotify Web Player artist search results for a search term.
GETapiKey3 credits/requestspotify.searchCatalogResponseDocSpotify
Endpoint details
Returns normalized Spotify Web Player artist search results for a search term.
- Method
- GET
- Path
- /spotify/artists/search
- Authentication
- apiKey
- Credit cost
- 3 credits/request
- Platform
- Spotify
- Parameters
- 4 documented fields
Request parameters
q:queryoffset:querylimit: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",
"results": [
{
"uri": "spotify:artist:example",
"title": "Example Artist"
}
]
}
}cURL example
curl "https://api.crawlora.net/api/v1/spotify/artists/search?q=<q>" \
-H "x-api-key: <api-key>"