All BuzzBip API requests require authentication. Include your API key as a Bearer token in the Authorization header of every request.
Generate an API key
- Sign in to your BuzzBip workspace at app.buzzbip.com
- Navigate to Settings → Developer → API Keys
- Click Create API Key and give it a descriptive name
- Copy the key immediately — it is shown only once
- Store the key securely in your server environment or secrets manager
Authorization header
Authorization: Bearer YOUR_API_KEYNever commit API keys to version control or expose them in browser-side code. Treat keys like passwords.
Key rotation
Rotate keys periodically or immediately if you suspect a leak. Create a new key, update your integration, verify it works, then revoke the old key from the Developer settings page.
Unauthorized requests
Requests without a valid token return 401 Unauthorized. Requests with an expired or revoked key return 403 Forbidden. See HTTP Response Codes for the full list.
