LUTERAS TECH

Error Codes Documentation

⚠ API Error Codes

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

400 Bad Request

{
    "error": "license_key required"
}

401 Unauthorized

{
    "error": "API Key Required"
}

403 Forbidden

{
    "error": "Invalid API Key"
}

404 Not Found

{
    "valid": false,
    "message": "Not found"
}

429 Too Many Requests

{
    "error": "Rate limit exceeded"
}

500 Internal Server Error

{
    "error": "Server error"
}
← Previous