License API Documentation
The License API allows you to create, validate and manage software licenses.
POST /api/v1/licenses/create
{
"product":"My Software",
"customer_email":"customer@example.com"
}
POST /api/v1/licenses/verify
{
"license_key":"LT-XXXX-XXXX"
}
{
"valid": true,
"license_key": "LT-ABCD-1234-EFGH",
"status": "active",
"plan": "pro",
"expires_at": "2026-07-30",
"licenses_used": 1,
"max_licenses": 10
}
| Status | Description |
|---|---|
| 400 | Invalid Request |
| 401 | API Key Required |
| 403 | Invalid API Key |
| 404 | License Not Found |