Tracking · GET
Track item
GET /tracking/track
About
Track item is a GET endpoint in the Tracking group of the Spotify Data API. It takes 2 parameters: type and id (required). No recorded sample exists for it; press Run to fetch a live response.
Parameters 2
- type Required
- In
- query
- Default
- —
- id Required
- In
- query
- Default
- —
Request
Against https://spotify-proxy.checkleaked.cc, with the same example values the Run button sends. No verified example value exists for type, id, so the example leaves them out and the Run dialog asks for them first.
| curl -X GET \ |
| "https://spotify-proxy.checkleaked.cc/tracking/track" \ |
| -H "x-api-key: $SPOTIFY_API_KEY" |
Sample response
Live only
This endpoint has no recorded sample. Press Run to fetch a real response.
Errors
- 400
- “type” and “id” are required — a request that omits one of them, 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 8 operations in the Tracking group.