Endpoint Playground
Test Crawlora's Spotify artist related 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/related?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",
"items": [
{
"uri": "spotify:artist:example",
"title": "Related Artist"
}
],
"meta": {
"operationName": "queryArtistRelated",
"count": 1,
"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 related artists from Spotify Web Player private Pathfinder responses.
{
"code": 200,
"msg": "OK",
"data": {
"uri": "spotify:artist:0TnOYISbd1XYRBk9myaseg",
"items": [
{
"uri": "spotify:artist:example",
"title": "Related Artist"
}
],
"meta": {
"operationName": "queryArtistRelated",
"count": 1,
"fetchedAt": "2026-05-13T20:41:13Z"
}
}
}curl "https://api.crawlora.net/api/v1/spotify/artist/related" \
-H "x-api-key: $CRAWLORA_API_KEY"