Authentication
The Tyralix API uses Bearer Token authentication. You can generate an API token from your dashboard settings. You must include this token in the header of every request.
Authorization: Bearer ty_live_834758374583745837
License Management
Endpoints for retrieving license status, activating sites, and managing validations. Please add API sections via the ACF fields.
GET
/licenses/{key}
Path Parameters
| key string | The unique license key identifier (e.g., TYR-XXX). |
Example Request
curl -X GET https://api.tyralix.com/v1/licenses/TYR-123-456 \
-H "Authorization: Bearer {token}"
Example Response
{
"id": "lic_987234",
"key": "TYR-123-456",
"status": "active",
"product": "B2B Portal Suite",
"activations_limit": 5,
"activations_usage": 2,
"expires_at": "2027-01-20T00:00:00Z"
}