/v1/meta
Service metadata
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/meta" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/bandcamp-api/v1/meta", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/bandcamp-api/v1/meta");
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/meta",
headers={"x-oanor-key": "oanor_test_..."}
)
Voorbeeldrespons
Een echte respons van dit endpoint, vastgelegd bij de laatste health check.
{
"data": {
"sample": {
"top": "Radiohead"
},
"source": "Bandcamp public web/mobile API (bandcamp.com/api), keyless",
"service": "bandcamp-api",
"endpoints": {
"GET /v1/band": "A band/artist profile + discography (band_id, or q for the top match).",
"GET /v1/meta": "This document.",
"GET /v1/album": "One release in full (band_id + tralbum_id + type, or q for the top match).",
"GET /v1/search": "Search bands/albums/tracks/labels (q, type=band|album|track, limit)."
},
"description": "Live Bandcamp independent-music marketplace data with no key: search across bands, albums, tracks and labels; read an album or track in full (artist, tracklist, price, release date, tags, art); and read a band/artist profile with its discography. The artist-direct music-commerce layer for discovery, price tools and analytics. Live, short cache only.",
"upstream_status": "ok"
},
"meta": {
"timestamp": "2026-06-14T17:03:44.028Z",
"request_id": "d6e40bc4-bbbd-4a20-b624-5cab94aeb7a4"
},
"status": "ok",
"message": "Meta",
"success": true
}