Endpoint Playground
Test Crawlora's Discogs Label 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/label/<id>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| id (path) | string | Yes | Discogs label id |
{
"code": 200,
"msg": "OK",
"data": {
"id": 895,
"name": "RCA",
"profile": "Multinational label. Label Code: LC 0316 / LC 00316.",
"parent_label": {
"id": 29073,
"name": "Sony Music Entertainment"
},
"sub_labels": [
{
"id": 1099494,
"name": "100% Elvis"
}
],
"data_quality": "Correct",
"uri": "https://www.discogs.com/label/895-RCA",
"source_url": "https://api.discogs.com/labels/895"
}
}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 label profile: profile text, contact info, parent label, and sub-labels. Credential-free official Discogs database data.
{
"code": 200,
"msg": "OK",
"data": {
"id": 895,
"name": "RCA",
"profile": "Multinational label. Label Code: LC 0316 / LC 00316.",
"parent_label": {
"id": 29073,
"name": "Sony Music Entertainment"
},
"sub_labels": [
{
"id": 1099494,
"name": "100% Elvis"
}
],
"data_quality": "Correct",
"uri": "https://www.discogs.com/label/895-RCA",
"source_url": "https://api.discogs.com/labels/895"
}
}curl "https://api.crawlora.net/api/v1/discogs/label/<id>" \
-H "x-api-key: $CRAWLORA_API_KEY"