Integration Examples

One REST API call. Any language. Any platform.

licentio.ini

Download this file from your dashboard and place it next to your executable.

[Licentio]
ProgramID=your-program-uuid
ClientID=your-client-uuid
APIKey=your-api-key

cURL

The simplest way to test the API from any terminal.

curl -X POST https://licentio.dev/validate \
  -H "Content-Type: application/json" \
  -d '{
    "program_id": "your-program-uuid",
    "client_id":  "your-client-uuid",
    "api_key":    "your-api-key"
  }'

Response

{
  "valid": true,
  "message": "License valid",
  "license_type": "EXPIRY_DATE",
  "days_remaining": 17,
  "warning": true,
  "warning_message": "License expires in 17 days"
}

Ready to protect your software?

Get Started Free