errors
Error Handling
All endpoints follow a consistent error response format:
{
"code": "number",
"message": "string",
"status": "string"
}
Common status:
error: Error occured
Common error codes:
401 - UNAUTHORIZED: Invalid or missing API key402 - INVALID_REQUEST: Missing or invalid parameters404 - NOT_FOUND: Requested resource not found400 - VALIDATION_ERROR: Request validation failed500 - INTERNAL_SERVER_ERROR: Internal server errorETC