The Beeble API uses API keys for authentication. Each request must include your API key in the request headers.
Getting Your API Key
Sign Up
Sign up and accept the terms if you don’t have an account.
Create Key
Click Create 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
- Click the Revoke button next to your API key
- 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.