Skip to main content
The Bizzy API uses API keys to authenticate requests. You can create and manage API keys from your organization settings in the dashboard.

Creating an API Key

  1. Sign in to the Bizzy Dashboard
  2. Navigate to Settings > API Keys
  3. Click Create API Key
  4. Give your key a descriptive name (e.g., “Production Server” or “Development”)
  5. Select the permission scopes your key needs
  6. Click Create and copy your key immediately
Your API key is only shown once when created. Store it securely - you won’t be able to see it again. If you lose your key, you’ll need to create a new one.

Using Your API Key

Include your API key in the Authorization header of every request using the Bearer token format:

Permission Scopes

API keys are scoped to specific permissions that control what resources they can access. When creating a key, grant only the permissions your integration needs.

Available Scopes

Permission Inheritance

Permissions follow a hierarchical model. Granting access to a parent resource also grants access to its child resources:
  • contacts includes contacts.emails, contacts.phones, contacts.addresses, contacts.tags, contacts.notes
  • customers includes customers.contacts
  • businesses includes businesses.details, businesses.tags, businesses.contacts, businesses.addresses
  • messages includes messages.email, messages.sms, messages.voice
  • automations includes automations.actions
  • domains includes domains.dns, domains.verification
  • users includes users.profile, users.settings
  • organization includes organization.settings, organization.billing
  • resources includes resources.analytics

HTTP Methods and Permissions

Authentication Errors

If authentication fails, you’ll receive a 401 Unauthorized response:
Common causes:
  • Missing Authorization header
  • Invalid or revoked API key
  • Malformed Bearer token (missing “Bearer ” prefix)
If your key lacks permission for a specific action, you’ll receive a 403 Forbidden response:

Security Best Practices

Use environment variables or a secrets manager to store your API keys. Add .env files to your .gitignore.
Create different API keys for development, staging, and production. This limits the blast radius if a key is compromised.
Follow the principle of least privilege. Only grant the specific permissions your integration needs. A read-only dashboard doesn’t need write access.
Periodically create new API keys and deprecate old ones. This limits the window of exposure if a key is leaked.
Review your API key activity in the dashboard regularly. Revoke any keys showing suspicious activity immediately.

Server-Side Only

API keys should only be used in server-side code. Never expose your API key in client-side JavaScript, mobile apps, or any code that runs in the browser.
If you need to access the Bizzy API from a client application, implement a backend proxy that handles authentication on behalf of your users.
Last modified on May 30, 2026