Zum Inhalt springen
GET /v1/meta

Spec

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

Beispiel-Response

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

{
    "data": {
        "service": "musicbrainz-api",
        "endpoints": {
            "GET /v1/meta": "This document.",
            "GET /v1/label": "Label by MBID.",
            "GET /v1/artist": "Artist by MBID (with links, tags).",
            "GET /v1/release": "Release by MBID (with track list).",
            "GET /v1/recording": "Recording by MBID (with ISRCs).",
            "GET /v1/release-group": "Release-group by MBID.",
            "GET /v1/search/labels": "Search labels.",
            "GET /v1/search/artists": "Search artists.",
            "GET /v1/search/releases": "Search releases.",
            "GET /v1/search/recordings": "Search recordings (tracks).",
            "GET /v1/artist/release-groups": "An artist's albums.",
            "GET /v1/search/release-groups": "Search albums/release-groups."
        },
        "description": "MusicBrainz: the open music-metadata database — artists, release-groups, releases, recordings, labels with MBIDs, relations and ISRCs."
    },
    "meta": {
        "timestamp": "2026-06-07T16:47:29.092Z",
        "request_id": "fae3df48-b4ae-452d-920b-42301e11d22a"
    },
    "status": "ok",
    "message": "Meta",
    "success": true
}