Endpoint Playground
Test Crawlora's Spotify Track Recommended 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/track/recommended?uri=spotify%3Atrack%3A4vGg44GdCw3X8i8r01XJH0&id=4vGg44GdCw3X8i8r01XJH0&limit=5" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| uri | string | No | spotify:track:4vGg44GdCw3X8i8r01XJH0 | Spotify track URI or open.spotify.com track URL |
| id | string | No | 4vGg44GdCw3X8i8r01XJH0 | Spotify track ID. Used when uri is omitted |
| limit | integer | No | 5 | Recommendation limit, clamped to 1-50 |
{
"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"
}
}
}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 normalized recommended Spotify entities from the internalLinkRecommenderTrack Pathfinder response.
{
"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 "https://api.crawlora.net/api/v1/spotify/track/recommended" \
-H "x-api-key: $CRAWLORA_API_KEY"