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"
}
}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"
}
}The Server API Key obtained from the kelviq application. Pass as a Bearer token in the Authorization header. Example: 'Authorization: Bearer YOUR_API_KEY'