API Authentication
All API requests must be authenticated using a bearer token. Create keys from the API Keys page.
Authentication Header
Include your API token in the Authorization header:
Authorization: Bearer your_api_token_here
Example Request
curl -X GET https://yourdomain.com/api/v1/me \
-H "Authorization: Bearer your_api_token_here"
Error Responses
401 Unauthorized: Missing or invalid token403 Forbidden: Token lacks required permissions
See the full API documentation for more details.