Naar de inhoud
GET /v1/label

A record label profile, parent and sublabels

Probeer het live

10 gratis calls per dag — geen registratie, geen API-key. Loopt via de oanor-gateway.

Aangepaste headers (optioneel)
api.oanor.com/discogs-api

Het werkt. Haal een API-key op en gebruik hem in je project.

Verkrijg een API-sleutel

Codefragmenten

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_..."}
)

Voorbeeldrespons

Een echte respons van dit endpoint, vastgelegd bij de laatste health check.

{
    "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
}