API Keys
Creating a key
From the dashboard
- Go to Dashboard > API Keys
- Click Create Key
- Enter a descriptive name (e.g. "CI/CD Pipeline", "Local Testing")
- Copy the key immediately
The full key is only shown once. If you lose it, revoke the key and create a new one.
From the API
Response:
Using a key
Pass the key in the X-API-Key header:
Revoking a key
Revoked keys cannot be used and will return 401 Unauthorized.
Security best practices
- Store keys in CI/CD secrets, not in code
- Use descriptive names so you know which key is used where
- Rotate keys periodically
- Revoke keys that are no longer in use