Endpoint Playground
Test Crawlora's Discogs Search 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/search?q=<q>&type=release" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| q | string | Yes | Search query | |
| type | string | No | release | Result type filter |
| 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": {
"query": "Daft Punk Discovery",
"type": "release",
"page": 1,
"pages": 4,
"per_page": 50,
"items": 171,
"results": [
{
"id": 2879,
"type": "release",
"title": "Daft Punk - Discovery",
"year": "2001",
"country": "Europe",
"genres": [
"Electronic"
],
"styles": [
"Disco",
"House"
],
"formats": [
"Vinyl",
"LP",
"Album",
"Stereo"
],
"labels": [
"Virgin"
],
"catno": "V2940",
"barcodes": [
"724384960612"
],
"master_id": 26647,
"uri": "https://www.discogs.com/release/2879-Daft-Punk-Discovery"
}
],
"source_url": "https://api.discogs.com/database/search?page=1&per_page=50&q=Daft+Punk+Discovery&type=release"
}
}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.
Searches Discogs releases, masters, artists, and labels. Credential-free official Discogs database data.
{
"code": 200,
"msg": "OK",
"data": {
"query": "Daft Punk Discovery",
"type": "release",
"page": 1,
"pages": 4,
"per_page": 50,
"items": 171,
"results": [
{
"id": 2879,
"type": "release",
"title": "Daft Punk - Discovery",
"year": "2001",
"country": "Europe",
"genres": [
"Electronic"
],
"styles": [
"Disco",
"House"
],
"formats": [
"Vinyl",
"LP",
"Album",
"Stereo"
],
"labels": [
"Virgin"
],
"catno": "V2940",
"barcodes": [
"724384960612"
],
"master_id": 26647,
"uri": "https://www.discogs.com/release/2879-Daft-Punk-Discovery"
}
],
"source_url": "https://api.discogs.com/database/search?page=1&per_page=50&q=Daft+Punk+Discovery&type=release"
}
}curl "https://api.crawlora.net/api/v1/discogs/search?q=<q>" \
-H "x-api-key: $CRAWLORA_API_KEY"