Endpoint Playground
Test Crawlora's Discogs Release 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/release/<id>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| id (path) | string | Yes | Discogs release id |
{
"code": 200,
"msg": "OK",
"data": {
"id": 249504,
"title": "Never Gonna Give You Up",
"status": "Accepted",
"year": 1987,
"released": "1987-07-00",
"released_formatted": "Jul 1987",
"country": "UK",
"genres": [
"Electronic",
"Pop"
],
"styles": [
"Euro-Disco"
],
"artists": [
{
"id": 72872,
"name": "Rick Astley"
}
],
"artists_sort": "Rick Astley",
"labels": [
{
"id": 895,
"name": "RCA",
"catno": "PB 41447"
}
],
"formats": [
{
"name": "Vinyl",
"qty": "1",
"descriptions": [
"7\"",
"45 RPM",
"Single",
"Stereo"
]
}
],
"format_quantity": 1,
"tracklist": [
{
"position": "A",
"type": "track",
"title": "Never Gonna Give You Up",
"duration": "3:32"
},
{
"position": "B",
"type": "track",
"title": "Never Gonna Give You Up (Instrumental)",
"duration": "3:30"
}
],
"community": {
"have": 4062,
"want": 580,
"rating": {
"count": 233,
"average": 3.84
}
},
"master_id": 96559,
"data_quality": "Correct",
"uri": "https://www.discogs.com/release/249504-Rick-Astley-Never-Gonna-Give-You-Up",
"source_url": "https://api.discogs.com/releases/249504"
}
}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 a normalized Discogs release: artists, labels, formats, tracklist, credits, identifiers, videos, images, and community want/have/rating. Credential-free official Discogs database data (api.discogs.com).
{
"code": 200,
"msg": "OK",
"data": {
"id": 249504,
"title": "Never Gonna Give You Up",
"status": "Accepted",
"year": 1987,
"released": "1987-07-00",
"released_formatted": "Jul 1987",
"country": "UK",
"genres": [
"Electronic",
"Pop"
],
"styles": [
"Euro-Disco"
],
"artists": [
{
"id": 72872,
"name": "Rick Astley"
}
],
"artists_sort": "Rick Astley",
"labels": [
{
"id": 895,
"name": "RCA",
"catno": "PB 41447"
}
],
"formats": [
{
"name": "Vinyl",
"qty": "1",
"descriptions": [
"7\"",
"45 RPM",
"Single",
"Stereo"
]
}
],
"format_quantity": 1,
"tracklist": [
{
"position": "A",
"type": "track",
"title": "Never Gonna Give You Up",
"duration": "3:32"
},
{
"position": "B",
"type": "track",
"title": "Never Gonna Give You Up (Instrumental)",
"duration": "3:30"
}
],
"community": {
"have": 4062,
"want": 580,
"rating": {
"count": 233,
"average": 3.84
}
},
"master_id": 96559,
"data_quality": "Correct",
"uri": "https://www.discogs.com/release/249504-Rick-Astley-Never-Gonna-Give-You-Up",
"source_url": "https://api.discogs.com/releases/249504"
}
}curl "https://api.crawlora.net/api/v1/discogs/release/<id>" \
-H "x-api-key: $CRAWLORA_API_KEY"