/v1/master
A master release grouping all editions
Pruébalo en vivo
10 llamadas gratis al día — sin registro, sin clave API. Pasa por el gateway de oanor.
Funciona. Consigue una clave API y úsala en tu proyecto.
Obtener una clave APIFragmentos de código
curl "https://api.oanor.com/discogs-api/v1/master" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/discogs-api/v1/master", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/discogs-api/v1/master");
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/master",
headers={"x-oanor-key": "oanor_test_..."}
)
Respuesta de ejemplo
Una respuesta real de este endpoint, capturada en la última comprobación de estado.
{
"data": {
"id": 8295,
"uri": "https://www.discogs.com/master/8295-Growing-Lateral",
"year": 2008,
"title": "Lateral",
"genres": [
"Electronic"
],
"source": "Discogs",
"styles": [
"Drone",
"Experimental",
"Ambient"
],
"artists": [
"Growing"
],
"track_count": 4,
"main_release": 1244906
},
"meta": {
"timestamp": "2026-06-10T14:01:44.984Z",
"request_id": "3c624414-4647-4511-8509-d4a14fedb55b"
},
"status": "ok",
"message": "Master retrieved successfully",
"success": true
}