Skip to main content
The Beeble API uses API keys for authentication. Each request must include your API key in the request headers.

Getting Your API Key

1

Sign in to Beeble

Go to app.beeble.ai and sign in to your account.
2

Navigate to Developer Page

Go to the Developer Page.
3

Issue API Key

In the API Key section, click Issue API Key to generate a new key.
4

Save Your Key

Copy and securely store your API key immediately. For security reasons, you won’t be able to view it again.
Your API key will only be displayed once upon creation. Make sure to copy and store it in a secure location before closing the dialog.

Using Your API Key

Include your API key in the x-api-key header with every request:
curl -X POST https://api.beeble.ai/v1/uploads \
  -H "x-api-key: YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"filename": "source.mp4"}'

Revoking Your API Key

If you need to revoke your API key:
  1. Go to the Developer Page
  2. In the API Key section, click the Revoke button
  3. Confirm the revocation
After revoking your API key, all requests using that key will be rejected. You can issue a new key at any time.