Endpoint Playground
Test Crawlora's Discogs Artist Releases 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/discogs/artist/<id>/releases" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| id (path) | string | Yes | Discogs artist id | |
| page | integer | No | 1-based page number, default 1 | |
| per_page | integer | No | Results per page, default 50, max 100 |
{
"code": 200,
"msg": "OK",
"data": {
"artist_id": "72872",
"page": 1,
"pages": 933,
"per_page": 3,
"items": 2799,
"releases": [
{
"id": 3686862,
"type": "release",
"title": "I Surrender (To The Spirit Of The Night) / Never Gonna Give You Up",
"artist": "Samantha Fox / Rick Astley",
"role": "Main",
"format": "7\", Jukebox",
"label": "Jive, RCA",
"year": 1987,
"in_wantlist": 27,
"in_collection": 48
},
{
"id": 96554,
"type": "master",
"main_release_id": 742394,
"title": "It Would Take A Strong Strong Man",
"artist": "Rick Astley",
"role": "Main",
"year": 1987,
"in_wantlist": 35,
"in_collection": 447
}
],
"source_url": "https://api.discogs.com/artists/72872/releases?page=1&per_page=3"
}
}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 an artist's paginated release/master credits (role, format, label, year, want/collection counts). Credential-free official Discogs database data.
{
"code": 200,
"msg": "OK",
"data": {
"artist_id": "72872",
"page": 1,
"pages": 933,
"per_page": 3,
"items": 2799,
"releases": [
{
"id": 3686862,
"type": "release",
"title": "I Surrender (To The Spirit Of The Night) / Never Gonna Give You Up",
"artist": "Samantha Fox / Rick Astley",
"role": "Main",
"format": "7\", Jukebox",
"label": "Jive, RCA",
"year": 1987,
"in_wantlist": 27,
"in_collection": 48
},
{
"id": 96554,
"type": "master",
"main_release_id": 742394,
"title": "It Would Take A Strong Strong Man",
"artist": "Rick Astley",
"role": "Main",
"year": 1987,
"in_wantlist": 35,
"in_collection": 447
}
],
"source_url": "https://api.discogs.com/artists/72872/releases?page=1&per_page=3"
}
}curl "https://api.crawlora.net/api/v1/discogs/artist/<id>/releases" \
-H "x-api-key: $CRAWLORA_API_KEY"