The Beeble API uses API keys for authentication. Each request must include your API key in the request headers.
Getting Your API Key
Navigate to Developer Page
Issue API Key
In the API Key section, click Issue API Key to generate a new
key.
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:
- Go to the Developer Page
- In the API Key section, click the Revoke button
- 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.