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 album tracks API Playground
Returns normalized Spotify Web Player album tracks from private Pathfinder responses.
GETapiKey3 credits/requestspotify.albumResponseDocSpotify
Endpoint details
Returns normalized Spotify Web Player album tracks from private Pathfinder responses.
- Method
- GET
- Path
- /spotify/album/tracks
- Authentication
- apiKey
- Credit cost
- 3 credits/request
- Platform
- Spotify
- Parameters
- 5 documented fields
Request parameters
uri:queryid:queryoffset:querylimit:queryx-api-key:header
Response schema fields
codedatadata.albumTypedata.artistsdata.artists[].descriptiondata.artists[].externalUrldata.artists[].imageUrldata.artists[].imagesdata.artists[].images[].heightdata.artists[].images[].urldata.artists[].images[].widthdata.artists[].publisher
Sample response summary
{
"code": 200,
"msg": "OK",
"data": {
"uri": "spotify:album:4aawyAB9vmqN3uQ7FjRGTy",
"tracks": [
{
"uri": "spotify:track:4vGg44GdCw3X8i8r01XJH0",
"title": "Example Track"
}
],
"meta": {
"operationName": "getAlbum",
"trackCount": 1,
"fetchedAt": "2026-05-13T20:41:13Z"
}
}
}cURL example
curl "https://api.crawlora.net/api/v1/spotify/album/tracks" \
-H "x-api-key: <api-key>"