Artists · GET
Related artists
GET /artist_related
About
Related artists is a GET endpoint in the Artists group of the Spotify Data API. It takes one parameter: id (required). The recorded sample response, captured 2025-06-07, is a JSON object with 2 top-level keys: data and extensions.
Parameters 1
- id Required
- In
- query
- Default
- —
Request
Against https://spotify-proxy.checkleaked.cc, with the same example values the Run button sends.
| curl -X GET \ |
| "https://spotify-proxy.checkleaked.cc/artist_related?id=4YRxDV8wJFPHPTeXepOstw" \ |
| -H "x-api-key: $SPOTIFY_API_KEY" |
Sample response
Recorded sample · captured 2025-06-07
| { |
| "data": { |
| "artist": { |
| "id": "2w9zwq3AktTeYYMuhMjju8", |
| "uri": "spotify:artist:2w9zwq3AktTeYYMuhMjju8", |
| "profile": { |
| "name": "INNA" |
| }, |
| "relatedContent": { |
| "relatedArtists": { |
| "totalCount": 40, |
| "items": [ |
| { |
| "id": "1ruutHJcECI7cos2n5TqpO", |
| "uri": "spotify:artist:1ruutHJcECI7cos2n5TqpO", |
| "profile": { |
| "name": "Nayer" |
| }, |
| "visuals": { |
| "avatarImage": { |
| "sources": [ |
| { |
| "url": "https://i.scdn.co/image/ab6761610000e5eba1edc9fd294dc2da62aa4544", |
| "width": 640, |
| "height": 640 |
| }, |
| { |
| "url": "https://i.scdn.co/image/ab6761610000f178a1edc9fd294dc2da62aa4544", |
| "width": 160, |
| "height": 160 |
| }, |
| { |
| "url": "https://i.scdn.co/image/ab67616100005174a1edc9fd294dc2da62aa4544", |
| "width": 320, |
| "height": 320 |
| } |
| ] |
| } |
| } |
| }, |
| { |
| "id": "6XwwFnewNgWp81MYMK8zLq", |
| "uri": "spotify:artist:6XwwFnewNgWp81MYMK8zLq", |
| "profile": { |
| "name": "Edward Maya" |
| }, |
| "visuals": { |
| "avatarImage": { |
| "sources": [ |
| { |
| "url": "https://i.scdn.co/image/ab6761610000e5eb877f1dbdef641d7e31c90d4c", |
| "width": 640, |
| "height": 640 |
| }, |
| { |
| "url": "https://i.scdn.co/image/ab6761610000f178877f1dbdef641d7e31c90d4c", |
| "width": 160, |
| "height": 160 |
| }, |
| { |
| "url": "https://i.scdn.co/image/ab67616100005174877f1dbdef641d7e31c90d4c", |
| "width": 320, |
| "height": 320 |
| } |
| ] |
| } |
| } |
| }, |
| { |
| "id": "57Pw3FSi1qi2fOY4wKOKjK", |
| "uri": "spotify:artist:57Pw3FSi1qi2fOY4wKOKjK", |
| "profile": { |
| "name": "Akcent" |
| }, |
| "visuals": { |
| "avatarImage": { |
| "sources": [ |
| { |
| "url": "https://i.scdn.co/image/ab6761610000e5ebd815650542d096e24c1f0df8", |
| "width": 640, |
The first 80 of 1,139 lines. Press Run for the full body.
Response fields
Read off the recorded sample, not a schema: a JSON object with 2 top-level keys, and one level below each key.
dataobjectdata.artistobjectextensionsobject
Errors
- 400
- “id” is required — a request that omits it, or sends a value of the wrong type, is rejected before it reaches Spotify.
- 404
- No Spotify item exists for the “id” that was sent. Spotify ids are 22 characters of base62, so a share link has to be reduced to the id in it first.
- 401 / 403
- The key is missing, wrong, or on a plan that does not include this endpoint. On RapidAPI the header is X-RapidAPI-Key; on the Direct Portal it is an Authorization: Bearer token; on Apify the actor supplies it.
- 429
- Rate limited. The demo on this site allows 100 requests per 15 minutes and 500 per day per visitor, inside a budget shared by every visitor. With a key it is 5 requests per second on every RapidAPI plan and 10 per second on the Direct Portal.
- 5xx
- Spotify itself failed or timed out. These are transient; retry once with a short backoff rather than immediately.
Related endpoints
The other 9 operations in the Artists group.