/v1/label
A record label profile, parent and sublabels
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/label" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/discogs-api/v1/label", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/discogs-api/v1/label");
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/label",
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": 1,
"uri": "https://www.discogs.com/label/1-Planet-E",
"name": "Planet E",
"urls": [
"http://planet-e.net",
"http://planetecommunications.bandcamp.com",
"http://www.facebook.com/planetedetroit",
"http://www.flickr.com/photos/planetedetroit",
"http://www.instagram.com/carlcraignet",
"http://myspace.com/planetecom",
"http://myspace.com/planetedetroit",
"http://soundcloud.com/planetedetroit",
"http://twitter.com/planetedetroit",
"http://vimeo.com/user1265384",
"http://en.wikipedia.org/wiki/Planet_E_Communications",
"http://www.youtube.com/user/planetedetroit"
],
"source": "Discogs",
"profile": "[a=Carl Craig]'s classic techno label founded in 1991.\r\n\r\nOn at least 1 release, Planet E is listed as publisher.",
"sublabels": [
"Antidote (4)",
"Community Projects",
"Guilty Pleasures",
"I Ner Zon Sounds",
"Planet E Communications",
"Planet E Communications, Inc.",
"Planet E Productions",
"TWPENTY"
],
"contact_info": "Planet E Communications\r\nP.O. Box 27218\r\nDetroit, Michigan, MI 48227\r\nUSA\r\n\r\nPhone: +1 313 874 8729\r\nFax: +1 313 874 8732\r\nEmail: [email protected]",
"parent_label": null
},
"meta": {
"timestamp": "2026-06-10T14:01:44.569Z",
"request_id": "fe46bfaf-e458-417f-b196-c94e4460283d"
},
"status": "ok",
"message": "Label retrieved successfully",
"success": true
}