Endpoint Playground
Test Crawlora's Spotify artist 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/artist/albums?uri=spotify%3Aartist%3A0TnOYISbd1XYRBk9myaseg&id=0TnOYISbd1XYRBk9myaseg&type=album&order=date_desc&offset=0&limit=50" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| uri | string | No | spotify:artist:0TnOYISbd1XYRBk9myaseg | Spotify artist URI or open.spotify.com artist URL |
| id | string | No | 0TnOYISbd1XYRBk9myaseg | Spotify artist ID |
| type | string | No | album | album, single, compilation, appears_on, or all |
| order | string | No | date_desc | date_desc, date_asc, name_asc, or name_desc |
| offset | integer | No | 0 | Offset |
| limit | integer | No | 50 | Limit, clamped to 1-50 |
{
"code": 200,
"msg": "OK",
"data": {
"uri": "spotify:artist:0TnOYISbd1XYRBk9myaseg",
"type": "album",
"items": [
{
"uri": "spotify:album:4aawyAB9vmqN3uQ7FjRGTy",
"title": "Global Warming"
}
],
"meta": {
"operationName": "queryArtistDiscographyAlbums",
"count": 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 artist discography items from Spotify Web Player private Pathfinder responses.
{
"code": 200,
"msg": "OK",
"data": {
"uri": "spotify:artist:0TnOYISbd1XYRBk9myaseg",
"type": "album",
"items": [
{
"uri": "spotify:album:4aawyAB9vmqN3uQ7FjRGTy",
"title": "Global Warming"
}
],
"meta": {
"operationName": "queryArtistDiscographyAlbums",
"count": 1,
"fetchedAt": "2026-05-13T20:41:13Z"
}
}
}curl "https://api.crawlora.net/api/v1/spotify/artist/albums" \
-H "x-api-key: $CRAWLORA_API_KEY"