Vai al contenuto
GET /v1/release-group

Release-group by MBID

Provalo dal vivo

10 chiamate gratuite al giorno — senza registrazione, senza chiave API. Passa dal gateway oanor.

Intestazioni personalizzate (facoltative)
api.oanor.com/musicbrainz-api

Funziona. Prendi una chiave API e usala nel tuo progetto.

Ottieni una chiave API

Frammenti di codice

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

Risposta di esempio

Una risposta reale di questo endpoint, acquisita dall'ultimo 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
}