Endpoint Playground
Test Crawlora's Spotify album tracks 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/album/tracks?uri=spotify%3Aalbum%3A4aawyAB9vmqN3uQ7FjRGTy&id=4aawyAB9vmqN3uQ7FjRGTy&offset=0&limit=50" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| uri | string | No | spotify:album:4aawyAB9vmqN3uQ7FjRGTy | Spotify album URI or open.spotify.com album URL |
| id | string | No | 4aawyAB9vmqN3uQ7FjRGTy | Spotify album ID |
| offset | integer | No | 0 | Track offset |
| limit | integer | No | 50 | Track limit, clamped to 1-50 |
{
"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"
}
}
}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 Spotify Web Player album tracks from private Pathfinder responses.
{
"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 "https://api.crawlora.net/api/v1/spotify/album/tracks" \
-H "x-api-key: $CRAWLORA_API_KEY"