APIHub
Back to Explore

Bandcamp

Provides an OAuth token endpoint that allows clients to obtain a new access token using the client‑credentials grant or refresh an existing token with a refresh token.

Music
bearer
HTTPS
CORS: Unknown
Description enriched
Visit official documentation

Latency

1994ms p95

Uptime

100.0% 30d

Playground

Verified

live

Endpoints

REST · JSON
POST

/oauth_token

Obtain an access token (client_credentials) or refresh an existing token.

  • client_id (query, required) — Your client ID provided by Bandcamp.
  • client_secret (query, required) — Your client secret provided by Bandcamp.
  • grant_type (query, required) — OAuth grant type (e.g., client_credentials or refresh_token).
  • refresh_token (query) — Refresh token obtained from a previous token response.

1 endpoint auto-detected

Authentication

This API uses Bearer token authentication — pass your token in the Authorization header.

curl -X POST \
  "https://bandcamp.com/developer/oauth_token" \
  -H "Authorization: Bearer YOUR_TOKEN"

bandcamp.com · HTTPS only