LUTERAS TECH

License API Documentation

📄 License API

The License API allows you to create, validate and manage software licenses.

Create License

POST /api/v1/licenses/create
{
    "product":"My Software",
    "customer_email":"customer@example.com"
}

Verify License

POST /api/v1/licenses/verify
{
    "license_key":"LT-XXXX-XXXX"
}

Successful Response

{
    "valid": true,
    "license_key": "LT-ABCD-1234-EFGH",
    "status": "active",
    "plan": "pro",
    "expires_at": "2026-07-30",
    "licenses_used": 1,
    "max_licenses": 10
}

Error Codes

Status Description
400 Invalid Request
401 API Key Required
403 Invalid API Key
404 License Not Found
← Previous Next → API Reference