Error Codes Documentation
The LUTERAS API uses standard HTTP status codes to indicate whether a request succeeded or failed.
| Status | Description |
|---|---|
| 400 | Bad Request |
| 401 | API Key Required |
| 403 | Invalid API Key or Plan Limit Reached |
| 404 | User Not Found or License Not Found |
| 429 | Rate Limit Exceeded |
| 500 | Internal Server Error |
{
"error": "license_key required"
}
{
"error": "API Key Required"
}
{
"error": "Invalid API Key"
}
{
"valid": false,
"message": "Not found"
}
{
"error": "Rate limit exceeded"
}
{
"error": "Server error"
}