Endpoint Playground
Test Crawlora's Discogs Master 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/master/<id>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| id (path) | string | Yes | Discogs master release id |
{
"code": 200,
"msg": "OK",
"data": {
"id": 26647,
"title": "Discovery",
"year": 2001,
"genres": [
"Electronic"
],
"styles": [
"Disco",
"House",
"Electro",
"French House"
],
"artists": [
{
"id": 1289,
"name": "Daft Punk"
}
],
"main_release_id": 2879,
"most_recent_release_id": 37177023,
"num_for_sale": 852,
"lowest_price": 1.14,
"data_quality": "Correct",
"uri": "https://www.discogs.com/master/26647-Daft-Punk-Discovery",
"source_url": "https://api.discogs.com/masters/26647"
}
}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 master release: the version-agnostic grouping of a release across pressings/reissues (artists, tracklist, genres/styles, videos, images, marketplace stats). Credential-free official Discogs database data.
{
"code": 200,
"msg": "OK",
"data": {
"id": 26647,
"title": "Discovery",
"year": 2001,
"genres": [
"Electronic"
],
"styles": [
"Disco",
"House",
"Electro",
"French House"
],
"artists": [
{
"id": 1289,
"name": "Daft Punk"
}
],
"main_release_id": 2879,
"most_recent_release_id": 37177023,
"num_for_sale": 852,
"lowest_price": 1.14,
"data_quality": "Correct",
"uri": "https://www.discogs.com/master/26647-Daft-Punk-Discovery",
"source_url": "https://api.discogs.com/masters/26647"
}
}curl "https://api.crawlora.net/api/v1/discogs/master/<id>" \
-H "x-api-key: $CRAWLORA_API_KEY"