Vai al contenuto
GET /v1/release

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

Risposta di esempio

Una risposta reale di questo endpoint, acquisita dall'ultimo health check.

{
    "data": {
        "release": {
            "id": "4b3d18cc-8937-36f4-8de0-481088be58e6",
            "date": "1997-06-17",
            "media": [
                {
                    "format": "CD",
                    "tracks": [
                        {
                            "title": "Airbag",
                            "length": 284400,
                            "position": 1,
                            "recording_id": "4a7fea2e-545b-4c63-bc9a-9943cc3a29d7"
                        },
                        {
                            "title": "Paranoid Android",
                            "length": 383493,
                            "position": 2,
                            "recording_id": "9f9cf187-d6f9-437f-9d98-d59cdbd52757"
                        },
                        {
                            "title": "Subterranean Homesick Alien",
                            "length": 267706,
                            "position": 3,
                            "recording_id": "bd82738d-163c-4b1a-bfaf-7acffe30e68a"
                        },
                        {
                            "title": "Exit Music (for a Film)",
                            "length": 264800,
                            "position": 4,
                            "recording_id": "23c3c36b-9449-4484-9040-6ef2125999aa"
                        },
                        {
                            "title": "Let Down",
                            "length": 299266,
                            "position": 5,
                            "recording_id": "47b02a82-c3bf-4647-b894-dd1c8f608e7f"
                        },
                        {
                            "title": "Karma Police",
                            "length": 261626,
                            "position": 6,
                            "recording_id": "9e2ad5bc-c6f9-40d2-a36f-3122ee2072a3"
                        },
                        {
                            "title": "Fitter Happier",
                            "length": 117333,
                            "position": 7,
                            "recording_id": "5838f978-0822-4e28-874f-e1511324ec3a"
                        },
                        {
                            "title": "Electioneering",
                            "length": 230640,
                            "position": 8,
                            "recording_id": "ba0a796c-bd1f-4d4b-85a8-918f217a204a"
                        },
                        {
                            "title": "Climbing Up the Walls",
                            "length": 285200,
                            "position": 9,
                            "recording_id": "c7225576-001e-423c-adc1-58f0985dcb27"
                        },
                        {
                            "title": "No Surprises",
                            "length": 228533,
                            "position": 10,
                            "recording_id": "980a426e-623e
…