LUTERAS TECH

Developer Documentation

Welcome to LUTERAS

In less than five minutes you'll have your application connected to the LUTERAS API Platform.

Step 1 — Create an Account

✔ Register an account

✔ Verify your email

✔ Login to your Dashboard

Step 2 — Subscribe

Choose the plan that best fits your application.

Step 3 — Generate an API Key

Dashboard → API Keys → Create API Key

Step 4 — Make your first API request

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"
}'

Example Response

{
    "valid": true,
    "status": "active",
    "expires_at": "2026-07-30",
    "api_usage": 1,
    "api_limit": 5000
}
← Back to Documentation Next → Authentication