Endpoint Playground
Test Crawlora's Spotify Track Similar Albums 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/similar-albums?uri=spotify%3Atrack%3A4vGg44GdCw3X8i8r01XJH0&id=4vGg44GdCw3X8i8r01XJH0&limit=50&albums_only=true" \
-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 | 50 | Album limit, clamped to 1-50 |
| albums_only | boolean | No | true | Request albums-only recommendations |
{
"code": 200,
"msg": "OK",
"data": {
"uri": "spotify:track:4vGg44GdCw3X8i8r01XJH0",
"limit": 50,
"albumsOnly": true,
"albums": [
{
"uri": "spotify:album:example",
"type": "Album",
"title": "Similar Album",
"externalUrl": "https://open.spotify.com/album/example"
}
],
"meta": {
"operationName": "similarAlbumsBasedOnThisTrack",
"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 albums from the similarAlbumsBasedOnThisTrack Pathfinder response.
{
"code": 200,
"msg": "OK",
"data": {
"uri": "spotify:track:4vGg44GdCw3X8i8r01XJH0",
"limit": 50,
"albumsOnly": true,
"albums": [
{
"uri": "spotify:album:example",
"type": "Album",
"title": "Similar Album",
"externalUrl": "https://open.spotify.com/album/example"
}
],
"meta": {
"operationName": "similarAlbumsBasedOnThisTrack",
"count": 1,
"fetchedAt": "2026-05-13T15:22:41Z"
}
}
}curl "https://api.crawlora.net/api/v1/spotify/track/similar-albums" \
-H "x-api-key: $CRAWLORA_API_KEY"