/v1/album
Album detail
Pruébalo en vivo
10 llamadas gratis al día — sin registro, sin clave API. Pasa por el gateway de oanor.
Funciona. Consigue una clave API y úsala en tu proyecto.
Obtener una clave APIFragmentos de código
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_..."}
)
Respuesta de ejemplo
Una respuesta real de este endpoint, capturada en la última comprobación de estado.
{
"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
}