Ir al contenido
GET /v1/meta

Service metadata

Pruébalo en vivo

10 llamadas gratis al día — sin registro, sin clave API. Pasa por el gateway de oanor.

Encabezados personalizados (opcional)
api.oanor.com/bandcamp-api

Funciona. Consigue una clave API y úsala en tu proyecto.

Obtener una clave API

Fragmentos de código

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_..."}
)

Respuesta de ejemplo

Una respuesta real de este endpoint, capturada en la última comprobación de estado.

{
    "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
}