Public Playground

Preview the endpoint before sending a live request

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.

Playground

Retrieve Spotify track details API Playground

Returns normalized Spotify Web Player track metadata from Spotify's getTrack Pathfinder response. Provide either uri or id; defaults to a known public track when omitted.

GETapiKey2 credits/requestspotify.trackResponseDocSpotify

Endpoint

Choose one catalog endpoint for this request.

30 shown
GETapiKey2 credits/requestspotify.trackResponseDocSpotify
GET /spotify/track

Retrieve Spotify track details

Returns normalized Spotify Web Player track metadata from Spotify's getTrack Pathfinder response. Provide either uri or id; defaults to a known public track when omitted.

API key required. Paste a full key or rotate one from the API Keys page.

Set up API key
View docs

API key

API key required for live requests. Your key is only used to send requests from this Playground.

not configured

Active Playground key: not configured

Manage API keys in Console

Add an API key to send a live request.

If an active API key is configured, Copy cURL includes it. Share links never include API keys.

MCP tool

MCP URL

https://mcp.crawlora.net/mcp

Tool name

spotify.track

View docs
Sample responseGET

Shown before your first request. Add an API key and send a request to see the live response, status, latency, and headers.

{
  "code": 200,
  "msg": "OK",
  "data": {
    "uri": "spotify:track:4vGg44GdCw3X8i8r01XJH0",
    "id": "4vGg44GdCw3X8i8r01XJH0",
    "type": "Track",
    "name": "Example Track",
    "artists": [
      {
        "uri": "spotify:artist:example",
        "title": "Example Artist"
      }
    ],
    "externalUrl": "https://open.spotify.com/track/4vGg44GdCw3X8i8r01XJH0",
    "meta": {
      "operationName": "getTrack",
      "fetchedAt": "2026-05-13T15:22:41Z"
    }
  }
}

Endpoint details

Returns normalized Spotify Web Player track metadata from Spotify's getTrack Pathfinder response. Provide either uri or id; defaults to a known public track when omitted.

Method
GET
Path
/spotify/track
Authentication
apiKey
Credit cost
2 credits/request
Platform
Spotify
Parameters
3 documented fields

Request parameters

uri:queryid:queryx-api-key:header

Response schema fields

codedatadata.albumdata.album.descriptiondata.album.externalUrldata.album.imageUrldata.album.imagesdata.album.images[].heightdata.album.images[].urldata.album.images[].widthdata.album.publisherdata.album.subtitle

Sample response summary

{
  "code": 200,
  "msg": "OK",
  "data": {
    "uri": "spotify:track:4vGg44GdCw3X8i8r01XJH0",
    "id": "4vGg44GdCw3X8i8r01XJH0",
    "type": "Track",
    "name": "Example Track",
    "artists": [
      {
        "uri": "spotify:artist:example",
        "title": "Example Artist"
      }
    ],
    "externalUrl": "https://open.spotify.com/track/4vGg44GdCw3X8i8r01XJH0",
    "meta": {
      "operationName": "getTrack",
      "fetchedAt": "2026-05-13T15:22:41Z"
    }
  }
}

cURL example

curl "https://api.crawlora.net/api/v1/spotify/track" \
  -H "x-api-key: <api-key>"