/v1/album
Album by id
Try it live
10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.
It works. Grab an API key and use it in your project.
Get an API keyCode snippets
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_..."}
)
Example response
A real response from this endpoint, captured by the latest health check.
{
"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
}