Authentication Documentation
Every request to the LUTERAS API must include a valid API Key. Your API Key identifies your account and authorizes access to the API.
https://luteras.com/api/v1/
| Header | Required | Description |
|---|---|---|
| x-api-key | Yes | Your API Key |
| Content-Type | Yes | application/json |
curl -X POST https://luteras.com/api/v1/licenses/verify \
-H "x-api-key: YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"license_key":"YOUR_LICENSE_KEY"
}'
{
"valid": true,
"status": "active",
"expires_at": "2026-07-30",
"api_usage": 1,
"api_limit": 5000
}
| Status | Description |
|---|---|
| 401 | API Key Required |
| 403 | Invalid API Key |
| 429 | Rate Limit Exceeded |
| 500 | Internal Server Error |