/v1). Each key belongs to your organization and works from any SDK or HTTP client.
Creating a key
Go to API Keys
Open API Keys in the sidebar.
Click Create key
Give it a name (like “Production” or “CI pipeline”). You can set an expiration date if you want.
Using a key
Put it in theAuthorization header:
Revoking a key
Hit the revoke button next to any key. It takes effect immediately — anything using that key will start failing.Keeping keys safe
- Put keys in environment variables or a secrets manager. Not in code.
- Use different keys for production and dev.
- Rotate periodically: create new, switch over, revoke old.
- Set expiration dates on keys for throwaway environments.