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 similar albums API Playground
Returns normalized albums from the similarAlbumsBasedOnThisTrack Pathfinder response.
GETapiKey3 credits/requestspotify.trackSimilarAlbumsResponseDocSpotify
Endpoint details
Returns normalized albums from the similarAlbumsBasedOnThisTrack Pathfinder response.
- Method
- GET
- Path
- /spotify/track/similar-albums
- Authentication
- apiKey
- Credit cost
- 3 credits/request
- Platform
- Spotify
- Parameters
- 5 documented fields
Request parameters
uri:queryid:querylimit:queryalbums_only:queryx-api-key:header
Response schema fields
codedatadata.albumsdata.albums[].descriptiondata.albums[].externalUrldata.albums[].imageUrldata.albums[].imagesdata.albums[].images[].heightdata.albums[].images[].urldata.albums[].images[].widthdata.albums[].publisherdata.albums[].subtitle
Sample response summary
{
"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 example
curl "https://api.crawlora.net/api/v1/spotify/track/similar-albums" \
-H "x-api-key: <api-key>"