Skip to content
GET /v1/artist

Artist detail

Try it live

10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.

Custom headers (optional)
api.oanor.com/audiodb-api

It works. Grab an API key and use it in your project.

Get an API key

Code snippets

curl "https://api.oanor.com/audiodb-api/v1/artist" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/audiodb-api/v1/artist", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/audiodb-api/v1/artist");
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",
    headers={"x-oanor-key": "oanor_test_..."}
)

Example response

A real response from this endpoint, captured by the latest health check.

{
    "data": {
        "artist": {
            "id": "111239",
            "logo": "https://r2.theaudiodb.com/images/media/artist/logo/q094e21667518717.png",
            "mood": "Happy",
            "name": "Coldplay",
            "genre": "Alternative Rock",
            "label": "Parlophone",
            "mb_id": "cc197bad-dc9c-440d-a5b5-d52ba2e14234",
            "style": "Rock/Pop",
            "thumb": "https://r2.theaudiodb.com/images/media/artist/thumb/uxrqxy1347913147.jpg",
            "banner": "https://r2.theaudiodb.com/images/media/artist/banner/xuypqw1386331010.jpg",
            "fanart": "https://r2.theaudiodb.com/images/media/artist/fanart/spvryu1347980801.jpg",
            "gender": "Male",
            "country": "London, England",
            "members": 4,
            "twitter": "1",
            "website": "",
            "facebook": "",
            "alternate": "",
            "biography": null,
            "born_year": 1996,
            "disbanded": null,
            "formed_year": 1996
        }
    },
    "meta": {
        "timestamp": "2026-06-08T01:20:06.258Z",
        "request_id": "3a6ff7c9-4fae-419b-9715-9e55f642be28"
    },
    "status": "ok",
    "message": "Artist retrieved successfully",
    "success": true
}