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 recommended tracks API Playground

Returns normalized recommended Spotify entities from the internalLinkRecommenderTrack Pathfinder response.

GETapiKey2 credits/requestspotify.trackRecommendedResponseDocSpotify

Endpoint

Choose one catalog endpoint for this request.

30 shown
GETapiKey2 credits/requestspotify.trackRecommendedResponseDocSpotify
GET /spotify/track/recommended

Retrieve Spotify recommended tracks

Returns normalized recommended Spotify entities from the internalLinkRecommenderTrack Pathfinder response.

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_recommended

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",
    "limit": 5,
    "recommendations": [
      {
        "uri": "spotify:track:example",
        "type": "Track",
        "title": "Recommended Track",
        "externalUrl": "https://open.spotify.com/track/example"
      }
    ],
    "meta": {
      "operationName": "internalLinkRecommenderTrack",
      "count": 1,
      "fetchedAt": "2026-05-13T15:22:41Z"
    }
  }
}

Endpoint details

Returns normalized recommended Spotify entities from the internalLinkRecommenderTrack Pathfinder response.

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

Request parameters

uri:queryid:querylimit:queryx-api-key:header

Response schema fields

codedatadata.limitdata.metadata.meta.appVersiondata.meta.countdata.meta.fetchedAtdata.meta.operationNamedata.recommendationsdata.recommendations[].descriptiondata.recommendations[].externalUrldata.recommendations[].imageUrl

Sample response summary

{
  "code": 200,
  "msg": "OK",
  "data": {
    "uri": "spotify:track:4vGg44GdCw3X8i8r01XJH0",
    "limit": 5,
    "recommendations": [
      {
        "uri": "spotify:track:example",
        "type": "Track",
        "title": "Recommended Track",
        "externalUrl": "https://open.spotify.com/track/example"
      }
    ],
    "meta": {
      "operationName": "internalLinkRecommenderTrack",
      "count": 1,
      "fetchedAt": "2026-05-13T15:22:41Z"
    }
  }
}

cURL example

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