Zum Inhalt springen
GET /v1/album

Album by id

Live testen

10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.

Eigene Header (optional)
api.oanor.com/genius-api

Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.

API-Key holen

Code-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_..."}
)

Beispiel-Response

Echte Antwort dieses Endpoints, erfasst beim letzten 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
}