Skip to main content
POST
/
api
/
discogs
/
labels
/
releases
/discogs/labels/releases
curl --request POST \
  --url https://api.anysite.io/api/discogs/labels/releases \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "label": "<string>",
  "count": 2,
  "timeout": 300
}
'
[
  {
    "id": 123,
    "url": "<string>",
    "title": "<string>",
    "@type": "@discogs_label_release",
    "artist": "<string>",
    "catno": "<string>",
    "format": "<string>",
    "year": 123,
    "status": "<string>",
    "image": "<string>"
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
label
string
required

Discogs label ID (e.g. '895') or full label URL

Minimum string length: 1
Examples:

"895"

"https://www.discogs.com/label/895-RCA"

count
integer
required

Max number of releases to fetch

Required range: x >= 1
timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

Response

Successful Response

id
integer
required
url
string
required
title
string
required
@type
string
default:@discogs_label_release
artist
string | null
catno
string | null
format
string | null
year
integer | null
status
string | null
image
string | null