API Reference
Authentication
How to authenticate API requests
3 Min. LesezeitZuletzt aktualisiert: 10. Jan. 2026
# Authentication
Learn how to authenticate your API requests.
API Keys
- Go to Settings > API Keys
- Click "Generate New Key"
- Copy your key (it won't be shown again)
Using Your Key
Include the key in the Authorization header:
curl -X GET "https://api.example.com/v1/projects" \
-H "Authorization: Bearer YOUR_API_KEY"Key Permissions
You can create keys with different permission levels: - **Read-only**: Can only fetch data - **Read-write**: Can create, update, and delete - **Admin**: Full access including settings
Revoking Keys
To revoke a key: 1. Go to Settings > API Keys 2. Find the key you want to revoke 3. Click "Revoke"
The key will be immediately disabled.