Docs menu
Spotify API endpoint
Search Spotify artists
Returns normalized Spotify Web Player artist search results for a search term.
/spotify/artists/searchOverview
Returns normalized Spotify Web Player artist search results for a search term.
Request schema
| Name | In | Type | Required | Enum | Example | Description |
|---|---|---|---|---|---|---|
| q | query | string | Yes | hello | Search term | |
| offset | query | integer | No | 0 | Search offset | |
| limit | query | integer | No | 20 | Result limit, clamped to 1-50 | |
| x-api-key | header | string | Yes | API key required |
Authentication
Send your scraping API key in the x-api-key header. Use the console API Keys page to rotate or select the active key.
Billing
Endpoint usage is metered in credits. The plan prices, included credits, limits, and overage rates below match the active backend billing configuration.
- Credit cost
- 3 credits/request
- Charged response
- Successful 2xx responses
| Plan | Price | Included credits | Daily cap | Rate limit | Overage |
|---|---|---|---|---|---|
| Free | $0/mo | 2,000 | 500 daily credits | 5/min | No overage |
| Starter | $9/mo | 20,000 | 5,000 daily credits | 15/min | $0.75/1,000 overage credits when enabled |
| Growth | $29/mo | 100,000 | 25,000 daily credits | 45/min | $0.45/1,000 overage credits when enabled |
| Pro | $79/mo | 400,000 | No daily cap | 120/min | $0.30/1,000 overage credits |
| Business | $199/mo | 1,200,000 | No daily cap | 300/min | $0.20/1,000 overage credits |
| Enterprise | $499/mo | 5,000,000 | No daily cap | 1,000/min | $0.12/1,000 overage credits |
Infrastructure behavior
This endpoint is executed through Crawlora's managed scraping infrastructure.
- Proxy strategy: managed automatically where needed
- Browser rendering: enabled for supported targets that require rendered HTML or JavaScript execution
- Browser cluster: supported dynamic workloads can be routed through distributed browser instances
- Retry behavior: automatic retry/fallback may be used depending on endpoint type
- Challenge handling: challenged pages or unusable upstream HTML are detected and surfaced clearly when they cannot be used
- Billing: credits are charged only for successful 2xx responses
- Observability: responses include request context where available
Response behavior
The endpoint returns artist results in both `results` and `artists` for caller convenience. Missing `q` returns `400`; upstream private API failures return `502`.
Error behavior
Crawlora does not silently return bad data when the upstream page cannot be used.
| Status | Common failure case |
|---|---|
| 400 | Invalid input or missing required parameter |
| 429 | Plan or endpoint rate limit exceeded |
| 500 | Internal execution error |
| 502 | Upstream platform failed, returned unusable HTML, or served a challenge page that could not be resolved |
When possible, Crawlora returns structured error context so your integration can retry, back off, or inspect the request.
Failure responses
| Status | Description | Schema |
|---|---|---|
| 400 | Bad Request | #/definitions/app.Response |
| 429 | Too Many Requests | #/definitions/app.Response |
| 502 | Bad Gateway | #/definitions/app.Response |
Example response
{
"code": 200,
"msg": "OK",
"data": {
"searchTerm": "hello",
"results": [
{
"uri": "spotify:artist:example",
"title": "Example Artist"
}
]
}
}Request schema
No body schema
Response schema
#/definitions/spotify.searchCatalogResponseDoc
| Field | Type | Required | Enum | Bounds | Example | Description |
|---|---|---|---|---|---|---|
| code | integer | No | Code is the HTTP status code or a custom code used to indicate the result of the request @example 200 | |||
| data | spotify.SearchResponse | No | ||||
| data.albums | array | No | ||||
| data.albums[].description | string | No | The official podcast of comedian Joe Rogan. | |||
| data.albums[].externalUrl | string | No | https://open.spotify.com/show/4rOoJ6Egrf8K2IrywzwOMk | |||
| data.albums[].imageUrl | string | No | https://i.scdn.co/image/ab67656300005f1f54e6837957803d762a3f4d2b | |||
| data.albums[].images | array | No | ||||
| data.albums[].images[].height | integer | No | 640 | |||
| data.albums[].images[].url | string | No | https://i.scdn.co/image/ab6765630000ba8ab0484f8ee2933eceab32bac0 | |||
| data.albums[].images[].width | integer | No | 640 | |||
| data.albums[].publisher | string | No | Joe Rogan | |||
| data.albums[].subtitle | string | No | Joe Rogan | |||
| data.albums[].title | string | No | The Joe Rogan Experience | |||
| data.albums[].type | string | No | Podcast | |||
| data.albums[].uri | string | No | spotify:show:4rOoJ6Egrf8K2IrywzwOMk | |||
| data.artists | array | No | ||||
| data.artists[].description | string | No | The official podcast of comedian Joe Rogan. | |||
| data.artists[].externalUrl | string | No | https://open.spotify.com/show/4rOoJ6Egrf8K2IrywzwOMk | |||
| data.artists[].imageUrl | string | No | https://i.scdn.co/image/ab67656300005f1f54e6837957803d762a3f4d2b | |||
| data.artists[].images | array | No | ||||
| data.artists[].images[].height | integer | No | 640 | |||
| data.artists[].images[].url | string | No | https://i.scdn.co/image/ab6765630000ba8ab0484f8ee2933eceab32bac0 | |||
| data.artists[].images[].width | integer | No | 640 | |||
| data.artists[].publisher | string | No | Joe Rogan | |||
| data.artists[].subtitle | string | No | Joe Rogan | |||
| data.artists[].title | string | No | The Joe Rogan Experience | |||
| data.artists[].type | string | No | Podcast | |||
| data.artists[].uri | string | No | spotify:show:4rOoJ6Egrf8K2IrywzwOMk | |||
| data.audiobooks | array | No | ||||
| data.audiobooks[].description | string | No | The official podcast of comedian Joe Rogan. | |||
| data.audiobooks[].externalUrl | string | No | https://open.spotify.com/show/4rOoJ6Egrf8K2IrywzwOMk | |||
| data.audiobooks[].imageUrl | string | No | https://i.scdn.co/image/ab67656300005f1f54e6837957803d762a3f4d2b | |||
| data.audiobooks[].images | array | No | ||||
| data.audiobooks[].images[].height | integer | No | 640 | |||
| data.audiobooks[].images[].url | string | No | https://i.scdn.co/image/ab6765630000ba8ab0484f8ee2933eceab32bac0 | |||
| data.audiobooks[].images[].width | integer | No | 640 | |||
| data.audiobooks[].publisher | string | No | Joe Rogan | |||
| data.audiobooks[].subtitle | string | No | Joe Rogan | |||
| data.audiobooks[].title | string | No | The Joe Rogan Experience | |||
| data.audiobooks[].type | string | No | Podcast | |||
| data.audiobooks[].uri | string | No | spotify:show:4rOoJ6Egrf8K2IrywzwOMk | |||
| data.episodes | array | No | ||||
| data.episodes[].description | string | No | The official podcast of comedian Joe Rogan. | |||
| data.episodes[].externalUrl | string | No | https://open.spotify.com/show/4rOoJ6Egrf8K2IrywzwOMk | |||
| data.episodes[].imageUrl | string | No | https://i.scdn.co/image/ab67656300005f1f54e6837957803d762a3f4d2b | |||
| data.episodes[].images | array | No | ||||
| data.episodes[].images[].height | integer | No | 640 | |||
| data.episodes[].images[].url | string | No | https://i.scdn.co/image/ab6765630000ba8ab0484f8ee2933eceab32bac0 | |||
| data.episodes[].images[].width | integer | No | 640 | |||
| data.episodes[].publisher | string | No | Joe Rogan | |||
| data.episodes[].subtitle | string | No | Joe Rogan | |||
| data.episodes[].title | string | No | The Joe Rogan Experience | |||
| data.episodes[].type | string | No | Podcast | |||
| data.episodes[].uri | string | No | spotify:show:4rOoJ6Egrf8K2IrywzwOMk | |||
| data.limit | integer | No | 20 | |||
| data.meta | spotify.SearchMeta | No | ||||
| data.meta.albumCount | integer | No | 3 | |||
| data.meta.appVersion | string | No | 1.2.90.403.gf901f20f | |||
| data.meta.artistCount | integer | No | 5 | |||
| data.meta.audiobookCount | integer | No | 2 | |||
| data.meta.episodeCount | integer | No | 2 | |||
| data.meta.fetchedAt | string | No | 2026-05-13T20:41:12Z | |||
| data.meta.operationName | string | No | searchDesktop | |||
| data.meta.playlistCount | integer | No | 2 | |||
| data.meta.resultCount | integer | No | 22 | |||
| data.meta.showCount | integer | No | 4 | |||
| data.meta.topCount | integer | No | 3 | |||
| data.meta.trackCount | integer | No | 2 | |||
| data.meta.userCount | integer | No | 2 | |||
| data.offset | integer | No | 0 | |||
| data.playlists | array | No | ||||
| data.playlists[].description | string | No | The official podcast of comedian Joe Rogan. | |||
| data.playlists[].externalUrl | string | No | https://open.spotify.com/show/4rOoJ6Egrf8K2IrywzwOMk | |||
| data.playlists[].imageUrl | string | No | https://i.scdn.co/image/ab67656300005f1f54e6837957803d762a3f4d2b | |||
| data.playlists[].images | array | No | ||||
| data.playlists[].images[].height | integer | No | 640 | |||
| data.playlists[].images[].url | string | No | https://i.scdn.co/image/ab6765630000ba8ab0484f8ee2933eceab32bac0 | |||
| data.playlists[].images[].width | integer | No | 640 | |||
| data.playlists[].publisher | string | No | Joe Rogan | |||
| data.playlists[].subtitle | string | No | Joe Rogan | |||
| data.playlists[].title | string | No | The Joe Rogan Experience | |||
| data.playlists[].type | string | No | Podcast | |||
| data.playlists[].uri | string | No | spotify:show:4rOoJ6Egrf8K2IrywzwOMk | |||
| data.results | array | No | ||||
| data.results[].description | string | No | The official podcast of comedian Joe Rogan. | |||
| data.results[].externalUrl | string | No | https://open.spotify.com/show/4rOoJ6Egrf8K2IrywzwOMk | |||
| data.results[].imageUrl | string | No | https://i.scdn.co/image/ab67656300005f1f54e6837957803d762a3f4d2b | |||
| data.results[].images | array | No | ||||
| data.results[].images[].height | integer | No | 640 | |||
| data.results[].images[].url | string | No | https://i.scdn.co/image/ab6765630000ba8ab0484f8ee2933eceab32bac0 | |||
| data.results[].images[].width | integer | No | 640 | |||
| data.results[].publisher | string | No | Joe Rogan | |||
| data.results[].subtitle | string | No | Joe Rogan | |||
| data.results[].title | string | No | The Joe Rogan Experience | |||
| data.results[].type | string | No | Podcast | |||
| data.results[].uri | string | No | spotify:show:4rOoJ6Egrf8K2IrywzwOMk | |||
| data.searchTerm | string | No | hello | |||
| data.shows | array | No | ||||
| data.shows[].description | string | No | The official podcast of comedian Joe Rogan. | |||
| data.shows[].externalUrl | string | No | https://open.spotify.com/show/4rOoJ6Egrf8K2IrywzwOMk | |||
| data.shows[].imageUrl | string | No | https://i.scdn.co/image/ab67656300005f1f54e6837957803d762a3f4d2b | |||
| data.shows[].images | array | No | ||||
| data.shows[].images[].height | integer | No | 640 | |||
| data.shows[].images[].url | string | No | https://i.scdn.co/image/ab6765630000ba8ab0484f8ee2933eceab32bac0 | |||
| data.shows[].images[].width | integer | No | 640 | |||
| data.shows[].publisher | string | No | Joe Rogan | |||
| data.shows[].subtitle | string | No | Joe Rogan | |||
| data.shows[].title | string | No | The Joe Rogan Experience | |||
| data.shows[].type | string | No | Podcast | |||
| data.shows[].uri | string | No | spotify:show:4rOoJ6Egrf8K2IrywzwOMk | |||
| data.topResults | array | No | ||||
| data.topResults[].description | string | No | The official podcast of comedian Joe Rogan. | |||
| data.topResults[].externalUrl | string | No | https://open.spotify.com/show/4rOoJ6Egrf8K2IrywzwOMk | |||
| data.topResults[].imageUrl | string | No | https://i.scdn.co/image/ab67656300005f1f54e6837957803d762a3f4d2b | |||
| data.topResults[].images | array | No | ||||
| data.topResults[].images[].height | integer | No | 640 | |||
| data.topResults[].images[].url | string | No | https://i.scdn.co/image/ab6765630000ba8ab0484f8ee2933eceab32bac0 | |||
| data.topResults[].images[].width | integer | No | 640 | |||
| data.topResults[].publisher | string | No | Joe Rogan | |||
| data.topResults[].subtitle | string | No | Joe Rogan | |||
| data.topResults[].title | string | No | The Joe Rogan Experience | |||
| data.topResults[].type | string | No | Podcast | |||
| data.topResults[].uri | string | No | spotify:show:4rOoJ6Egrf8K2IrywzwOMk | |||
| data.tracks | array | No | ||||
| data.tracks[].description | string | No | The official podcast of comedian Joe Rogan. | |||
| data.tracks[].externalUrl | string | No | https://open.spotify.com/show/4rOoJ6Egrf8K2IrywzwOMk | |||
| data.tracks[].imageUrl | string | No | https://i.scdn.co/image/ab67656300005f1f54e6837957803d762a3f4d2b | |||
| data.tracks[].images | array | No | ||||
| data.tracks[].images[].height | integer | No | 640 | |||
| data.tracks[].images[].url | string | No | https://i.scdn.co/image/ab6765630000ba8ab0484f8ee2933eceab32bac0 | |||
| data.tracks[].images[].width | integer | No | 640 | |||
| data.tracks[].publisher | string | No | Joe Rogan | |||
| data.tracks[].subtitle | string | No | Joe Rogan | |||
| data.tracks[].title | string | No | The Joe Rogan Experience | |||
| data.tracks[].type | string | No | Podcast | |||
| data.tracks[].uri | string | No | spotify:show:4rOoJ6Egrf8K2IrywzwOMk | |||
| data.users | array | No | ||||
| data.users[].description | string | No | The official podcast of comedian Joe Rogan. | |||
| data.users[].externalUrl | string | No | https://open.spotify.com/show/4rOoJ6Egrf8K2IrywzwOMk | |||
| data.users[].imageUrl | string | No | https://i.scdn.co/image/ab67656300005f1f54e6837957803d762a3f4d2b | |||
| data.users[].images | array | No | ||||
| data.users[].images[].height | integer | No | 640 | |||
| data.users[].images[].url | string | No | https://i.scdn.co/image/ab6765630000ba8ab0484f8ee2933eceab32bac0 | |||
| data.users[].images[].width | integer | No | 640 | |||
| data.users[].publisher | string | No | Joe Rogan | |||
| data.users[].subtitle | string | No | Joe Rogan | |||
| data.users[].title | string | No | The Joe Rogan Experience | |||
| data.users[].type | string | No | Podcast | |||
| data.users[].uri | string | No | spotify:show:4rOoJ6Egrf8K2IrywzwOMk | |||
| msg | unknown | No | Msg is the message that describes the result of the request @example "Request successful" |
Code examples
Use environment variables for secrets and keep Crawlora API keys server-side.
curl -X GET "https://api.crawlora.net/api/v1/spotify/artists/search?q=hello&offset=0&limit=20" \
-H "x-api-key: $CRAWLORA_API_KEY"Responsible public web data workflows
Crawlora is designed for responsible structured public web data workflows. Customers are responsible for using Crawlora in compliance with applicable laws, third-party rights, target-platform rules, and Crawlora terms.
Read Crawlora terms