Endpoint Playground
Test Crawlora's Discogs Artist 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>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| id (path) | string | Yes | Discogs artist id |
{
"code": 200,
"msg": "OK",
"data": {
"id": 72872,
"name": "Rick Astley",
"real_name": "Richard Paul Astley",
"profile": "Rick Astley (b. February 6, 1966 in Newton-le-Willows, Lancashire, United Kingdom)...",
"urls": [
"http://www.rickastley.co.uk"
],
"name_variations": [
"Astley",
"R. Astley"
],
"aliases": [
{
"id": 1141583,
"name": "Dick Spatsley"
}
],
"groups": [
{
"id": 146979,
"name": "Band Aid II",
"active": true
}
],
"data_quality": "Needs Vote",
"uri": "https://www.discogs.com/artist/72872-Rick-Astley",
"source_url": "https://api.discogs.com/artists/72872"
}
}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 artist profile: real name, bio, links, name variations, aliases, and group memberships. Credential-free official Discogs database data.
{
"code": 200,
"msg": "OK",
"data": {
"id": 72872,
"name": "Rick Astley",
"real_name": "Richard Paul Astley",
"profile": "Rick Astley (b. February 6, 1966 in Newton-le-Willows, Lancashire, United Kingdom)...",
"urls": [
"http://www.rickastley.co.uk"
],
"name_variations": [
"Astley",
"R. Astley"
],
"aliases": [
{
"id": 1141583,
"name": "Dick Spatsley"
}
],
"groups": [
{
"id": 146979,
"name": "Band Aid II",
"active": true
}
],
"data_quality": "Needs Vote",
"uri": "https://www.discogs.com/artist/72872-Rick-Astley",
"source_url": "https://api.discogs.com/artists/72872"
}
}curl "https://api.crawlora.net/api/v1/discogs/artist/<id>" \
-H "x-api-key: $CRAWLORA_API_KEY"