Authentication
All API endpoints require authentication using an API key. The API key should be included in the Authorization header using either Bearer token or Basic auth format.
Authorization Header
Include your API key using Bearer token format:
Authorization: Bearer your_api_key_here Error Responses
All endpoints may return the following error response:
{
"ok": false,
"message": "string",
"api_request_id": "uuid"
} Common HTTP Status Codes
- 200: Success
- 400: Bad Request
- 401: Unauthorized
- 404: Not Found
- 500: Internal Server Error