Endpoint Playground
Test Crawlora's Spotify artist API with realistic prefilled parameters. Generate a cURL request, inspect the expected structured JSON response, and open the full docs or pricing page when you are ready to integrate this public web data extraction endpoint into your application.
curl "https://api.crawlora.net/api/v1/spotify/artist?uri=spotify%3Aartist%3A0TnOYISbd1XYRBk9myaseg&id=0TnOYISbd1XYRBk9myaseg" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| uri | string | No | spotify:artist:0TnOYISbd1XYRBk9myaseg | Spotify artist URI or open.spotify.com artist URL |
| id | string | No | 0TnOYISbd1XYRBk9myaseg | Spotify artist ID |
{
"code": 200,
"msg": "OK",
"data": {
"uri": "spotify:artist:0TnOYISbd1XYRBk9myaseg",
"name": "Pitbull",
"topTracks": [
{
"uri": "spotify:track:4vGg44GdCw3X8i8r01XJH0",
"title": "Example Track"
}
],
"meta": {
"operationName": "queryArtistOverview",
"fetchedAt": "2026-05-13T20:41:13Z"
}
}
}Public Playground
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.
Returns normalized Spotify Web Player artist overview data from private Pathfinder responses.
{
"code": 200,
"msg": "OK",
"data": {
"uri": "spotify:artist:0TnOYISbd1XYRBk9myaseg",
"name": "Pitbull",
"topTracks": [
{
"uri": "spotify:track:4vGg44GdCw3X8i8r01XJH0",
"title": "Example Track"
}
],
"meta": {
"operationName": "queryArtistOverview",
"fetchedAt": "2026-05-13T20:41:13Z"
}
}
}curl "https://api.crawlora.net/api/v1/spotify/artist" \
-H "x-api-key: $CRAWLORA_API_KEY"