Authentication
Authenticate your API requests.
API Keys
Generate API keys from Settings > API Keys.
Creating a Key
- Go to Settings > API Keys
- Click Generate New Key
- Set name and permissions
- Copy the key (shown once)
Using the Key
Include in request header:
Authorization: Bearer YOUR_API_KEY
OAuth 2.0
For user-context operations:
POST /oauth/token
Content-Type: application/x-www-form-urlencoded
grant_type=client_credentials
&client_id=YOUR_CLIENT_ID
&client_secret=YOUR_CLIENT_SECRET
Scopes
| Scope | Access |
|---|---|
read | Read-only access |
write | Create and update |
delete | Delete resources |
admin | Full access |