Skip to content
GET /v1/master

A master release grouping all editions

Try it live

10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.

Custom headers (optional)
api.oanor.com/discogs-api

It works. Grab an API key and use it in your project.

Get an API key

Code snippets

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

Example response

A real response from this endpoint, captured by the latest health check.

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