Zum Inhalt springen
GET /v1/release-group

Release-group by MBID

Live testen

10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.

Eigene Header (optional)
api.oanor.com/musicbrainz-api

Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.

API-Key holen

Code-Snippets

curl "https://api.oanor.com/musicbrainz-api/v1/release-group" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/musicbrainz-api/v1/release-group", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/musicbrainz-api/v1/release-group");
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/musicbrainz-api/v1/release-group",
    headers={"x-oanor-key": "oanor_test_..."}
)

Beispiel-Response

Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.

{
    "data": {
        "release_group": {
            "id": "b1392450-e666-3926-a536-22c65f834433",
            "title": "OK Computer",
            "artist": [
                {
                    "id": "a74b1b7f-71a5-4011-9441-d0b5e4122711",
                    "name": "Radiohead"
                }
            ],
            "primary_type": "Album",
            "disambiguation": "",
            "secondary_types": [],
            "first_release_date": "1997-05-21"
        }
    },
    "meta": {
        "timestamp": "2026-06-07T16:47:28.990Z",
        "request_id": "3ca595d2-d4c5-45a8-9fe7-5174fd65065d"
    },
    "status": "ok",
    "message": "Release-group retrieved successfully",
    "success": true
}