/v1/meta
Service metadata
Essayez-le en direct
10 appels gratuits par jour — sans inscription, sans clé API. Passe par la passerelle oanor.
Ça marche. Récupérez une clé API et utilisez-la dans votre projet.
Obtenez une clé APIExtraits de code
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_..."}
)
Exemple de réponse
Une réponse réelle de ce endpoint, capturée lors du dernier contrôle de santé.
{
"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
}