/v1/band
A band/artist profile + discography
Probeer het live
10 gratis calls per dag — geen registratie, geen API-key. Loopt via de oanor-gateway.
Het werkt. Haal een API-key op en gebruik hem in je project.
Verkrijg een API-sleutelCodefragmenten
curl "https://api.oanor.com/bandcamp-api/v1/band" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/bandcamp-api/v1/band", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/bandcamp-api/v1/band");
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/bandcamp-api/v1/band",
headers={"x-oanor-key": "oanor_test_..."}
)
Voorbeeldrespons
Een echte respons van dit endpoint, vastgelegd bij de laatste health check.
{
"data": {
"id": 3957198221,
"art": "https://f4.bcbits.com/img/a40867508_10.jpg",
"bio": null,
"url": "https://radiohead.bandcamp.com",
"name": "Radiohead",
"note": "A Bandcamp band/artist profile: its name, location, bio, page url and its full discography (every album and track released), each with title, release date and art. Pass band_id (from /v1/search), or q to resolve the top band match.",
"source": "Bandcamp",
"location": "Oxford, UK",
"discography": [
{
"id": 365742988,
"art": "https://f4.bcbits.com/img/a454733928_10.jpg",
"type": "album",
"title": "Hail to the Thief (Live Recordings 2003-2009)",
"release_date": "13 Aug 2025 00:00:00 GMT"
},
{
"id": 3317386587,
"art": "https://f4.bcbits.com/img/a3185643660_10.jpg",
"type": "album",
"title": "KID A MNESIA",
"release_date": "05 Nov 2021 00:00:00 GMT"
},
{
"id": 3293551680,
"art": "https://f4.bcbits.com/img/a1866183002_10.jpg",
"type": "album",
"title": "OK Computer OKNOTOK 1997 2017",
"release_date": "23 Jun 2017 00:00:00 GMT"
},
{
"id": 1880809236,
"art": "https://f4.bcbits.com/img/a3154171150_10.jpg",
"type": "album",
"title": "In Rainbows (Disk 2)",
"release_date": "14 Oct 2016 00:00:00 GMT"
},
{
"id": 190478553,
"art": "https://f4.bcbits.com/img/a4212377151_10.jpg",
"type": "album",
"title": "A Moon Shaped Pool",
"release_date": "08 May 2016 00:00:00 GMT"
},
{
"id": 2941363459,
"art": "https://f4.bcbits.com/img/a2486005434_10.jpg",
"type": "album",
"title": "TKOL RMX 1234567",
"release_date": "10 Oct 2011 00:00:00 GMT"
},
{
"id": 712041058,
"art": "https://f4.bcbits.com/img/a2929804922_10.jpg",
"type": "album",
"title": "The King Of Limbs",
"release_date": "18 Feb 2011 00:00:00 GMT"
},
{
"id": 2162872411,
"art": "https://f4.bcbits.com/img/a552435637_10.jpg",
"type": "album",
"title": "In Rainbows",
"release_date": "28 Dec 2007 00:00:00 GMT"
},
{
"id": 4164667409,
"art": "https://f4.bcbits.com/img/a2328851828_10.jpg",
"type": "album",
"title": "Hail To the Thief",
"release_date": "09 Jun 2003 00:00:00 GMT
…