/v1/album
Album detail
Live testen
10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.
Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.
API-Key holenCode-Snippets
curl "https://api.oanor.com/audiodb-api/v1/album" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/audiodb-api/v1/album", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/audiodb-api/v1/album");
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/audiodb-api/v1/album",
headers={"x-oanor-key": "oanor_test_..."}
)
Beispiel-Response
Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.
{
"data": {
"album": {
"id": "2109614",
"mood": "Relaxed",
"name": "A Rush of Blood to the Head",
"year": 2002,
"cdart": "https://r2.theaudiodb.com/images/media/album/cdart/vuyruy1429191547.png",
"genre": "Pop-Rock",
"label": "Parlophone",
"mb_id": "120c786d-a3b2-3c19-b4ff-2b7b3b4435bf",
"score": 8.4,
"style": "Rock/Pop",
"thumb": "https://r2.theaudiodb.com/images/media/album/thumb/vsusvs1521243711.jpg",
"artist": "Coldplay",
"artist_id": "111239",
"description": null
}
},
"meta": {
"timestamp": "2026-06-08T01:20:06.870Z",
"request_id": "37ddcdf5-bcad-4c9d-9ca8-bb9d50cfb14e"
},
"status": "ok",
"message": "Album retrieved successfully",
"success": true
}