/v1/album
Album by id
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/genius-api/v1/album" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/genius-api/v1/album", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/genius-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/genius-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": 961787,
"url": "https://genius.com/albums/Queen/Studio-collection",
"name": "Studio Collection",
"artist": {
"id": 563,
"url": "https://genius.com/artists/Queen",
"name": "Queen",
"image": "https://images.genius.com/3bc047e8b3c654ed28aedc69f93f8663.1000x1000x1.jpg",
"verified": false
},
"cover_art": "https://images.genius.com/225103ef88cca1bc85c804a1ded937a5.597x597x1.jpg",
"full_title": "Studio Collection by Queen",
"release_date": "September 25, 2015"
}
},
"meta": {
"timestamp": "2026-06-07T16:48:28.859Z",
"request_id": "1651da08-3206-4ce1-af64-f402e112cd88"
},
"status": "ok",
"message": "Album retrieved successfully",
"success": true
}