/v1/release
A release with community have/want/rating
Provalo dal vivo
10 chiamate gratuite al giorno — senza registrazione, senza chiave API. Passa dal gateway oanor.
Funziona. Prendi una chiave API e usala nel tuo progetto.
Ottieni una chiave APIFrammenti di codice
curl "https://api.oanor.com/discogs-api/v1/release" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/discogs-api/v1/release", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/discogs-api/v1/release");
curl_setopt($ch, CURLOPT_HTTPHEADER, ["x-oanor-key: oanor_test_..."]);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$out = curl_exec($ch);
import requests
requests.get(
"https://api.oanor.com/discogs-api/v1/release",
headers={"x-oanor-key": "oanor_test_..."}
)
Risposta di esempio
Una risposta reale di questo endpoint, acquisita dall'ultimo health check.
{
"data": {
"id": 249504,
"uri": "https://www.discogs.com/release/249504-Rick-Astley-Never-Gonna-Give-You-Up",
"year": 1987,
"title": "Never Gonna Give You Up",
"genres": [
"Electronic",
"Pop"
],
"labels": [
{
"name": "RCA",
"catno": "PB 41447"
}
],
"source": "Discogs",
"styles": [
"Euro-Disco"
],
"artists": [
"Rick Astley"
],
"country": "UK",
"formats": [
{
"qty": 1,
"name": "Vinyl",
"descriptions": [
"7\"",
"45 RPM",
"Single",
"Stereo"
]
}
],
"released": "1987-07-00",
"community": {
"have": 4047,
"want": 580,
"rating_count": 231,
"rating_average": 3.84
},
"track_count": 2,
"lowest_price": 0.89,
"num_for_sale": 115
},
"meta": {
"timestamp": "2026-06-10T14:01:45.463Z",
"request_id": "809855f4-b2d5-45dd-8790-8265eea39700"
},
"status": "ok",
"message": "Release retrieved successfully",
"success": true
}