/v1/artist/release-groups
An artist's albums
Provalo dal vivo
10 chiamate gratuite al giorno — senza registrazione, senza chiave API. Passa dal gateway oanor.
Funziona. Prendi una chiave API e usala nel tuo progetto.
Ottieni una chiave APIFrammenti di codice
curl "https://api.oanor.com/musicbrainz-api/v1/artist/release-groups" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/musicbrainz-api/v1/artist/release-groups", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/musicbrainz-api/v1/artist/release-groups");
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/artist/release-groups",
headers={"x-oanor-key": "oanor_test_..."}
)
Risposta di esempio
Una risposta reale di questo endpoint, acquisita dall'ultimo health check.
{
"data": {
"count": 382,
"artist_id": "a74b1b7f-71a5-4011-9441-d0b5e4122711",
"release_groups": [
{
"id": "0ef22186-e92d-4f03-9b05-500fa2d581ad",
"title": "27 5 94: The Astoria London Live",
"artist": [],
"primary_type": "Album",
"disambiguation": "",
"secondary_types": [
"Live"
],
"first_release_date": "1995-05-17"
},
{
"id": "1af3fda4-4281-4ed9-ba38-389ed83d9ab2",
"title": "MINIDISCS [HACKED]",
"artist": [],
"primary_type": "Album",
"disambiguation": "",
"secondary_types": [
"Compilation",
"Demo"
],
"first_release_date": "2019-06-05"
},
{
"id": "270ff9af-bcfb-402c-8e6b-d1372a1e8824",
"title": "The Interview",
"artist": [],
"primary_type": "Album",
"disambiguation": "",
"secondary_types": [
"Interview"
],
"first_release_date": "2010-08-23"
},
{
"id": "30f765ef-d7f0-4cce-8a3b-d6e1069f1dda",
"title": "5 Album Set",
"artist": [],
"primary_type": "Album",
"disambiguation": "Pablo Honey / The Bends / OK Computer / Kid A / Amnesiac",
"secondary_types": [
"Compilation"
],
"first_release_date": "2012-10-12"
},
{
"id": "441803f3-eb4d-3847-93cf-ab473cf0b8ec",
"title": "1997-06-28: Glastonbury Festival of Contemporary Performing Arts",
"artist": [],
"primary_type": "Album",
"disambiguation": "",
"secondary_types": [
"Live"
],
"first_release_date": "1997-06-28"
},
{
"id": "44419ec0-d44a-4ec5-875c-d08f5c7ec13c",
"title": "Hail to the Thief: Live Recordings 2003–2009",
"artist": [],
"primary_type": "Album",
"disambiguation": "",
"secondary_types": [
"Live"
],
"first_release_date": "2025-08-13"
},
{
"id": "5c14fd50-a2f1-3672-9537-b0dad91bea2f",
"title": "Hail to the Thief",
"artist": [],
"primary_type": "Album",
"disambiguation": "",
"secondary_types": [],
"first_release_date": "2003-05-26"
},
{
"id": "69553ea8-c62c-4e2a-a878-d85276c45215"
…