/v1/artist/albums
An artist's albums
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/artist/albums" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/audiodb-api/v1/artist/albums", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/audiodb-api/v1/artist/albums");
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/artist/albums",
headers={"x-oanor-key": "oanor_test_..."}
)
Beispiel-Response
Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.
{
"data": {
"count": 51,
"albums": [
{
"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
},
{
"id": "2109615",
"mood": "Relaxed",
"name": "Parachutes",
"year": 2000,
"cdart": "https://r2.theaudiodb.com/images/media/album/cdart/vtuxpp1429197083.png",
"genre": "Pop-Rock",
"label": "Parlophone",
"mb_id": "1dc4c347-a1db-32aa-b14f-bc9cc507b843",
"score": 8.4,
"style": "Rock/Pop",
"thumb": "https://r2.theaudiodb.com/images/media/album/thumb/swxywp1367234202.jpg",
"artist": "Coldplay",
"artist_id": "111239",
"description": null
},
{
"id": "2109616",
"mood": "Relaxed",
"name": "Mylo Xyloto",
"year": 2011,
"cdart": "https://r2.theaudiodb.com/images/media/album/cdart/vwuqxy1429196141.png",
"genre": "Pop-Rock",
"label": "Parlophone",
"mb_id": "61b7b6cd-86a6-4728-9478-b58c93bca8fd",
"score": 7.8,
"style": "Rock/Pop",
"thumb": "https://r2.theaudiodb.com/images/media/album/thumb/ezctp91605619355.jpg",
"artist": "Coldplay",
"artist_id": "111239",
"description": null
},
{
"id": "2109617",
"mood": "Relaxed",
"name": "Viva la Vida or Death and All His Friends",
"year": 2008,
"cdart": "https://r2.theaudiodb.com/images/media/album/cdart/wxsuvy1429182454.png",
"genre": "Pop-Rock",
"label": "Atlantic",
"mb_id": "a1084754-8bb5-3ebc-bbd2-6a27d48e798a",
"score": 7.2,
"style": "Rock/Pop",
"thumb": "https://r2.theaudiodb.com/images/media/album/thumb/urvvxq1367234034.jpg",
"artist": "Coldplay",
"artist_id": "111239",
"description": null
},
{
"id": "2109618",
"mood": "Relaxed",
"name": "X&Y",
"year": 2005,
…