Skip to main content
POST
/
license
/
validate
Validate License
curl --request POST \
  --url https://api.kelviq.com/api/v1/license/validate/ \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "licenseKey": "KLVQ-PRO-1234-ABCD-9999",
  "instanceId": "8f3e2b1a-5c6d-4e9f-8a0b-1c2d3e4f5g6h"
}
'
{
  "valid": true,
  "code": "VALID",
  "detail": "Instance ID valid for this license.",
  "metadata": {
    "os": "macOS",
    "arch": "arm64"
  }
}

Authorizations

Authorization
string
header
required

The Server API Key obtained from the kelviq application. Pass as a Bearer token in the Authorization header. Example: 'Authorization: Bearer YOUR_API_KEY'

Body

application/json
licenseKey
string
required
instanceId
string<uuid>

Response

Validation successful

valid
boolean
code
string
detail
string
metadata
object