License API
Validate and manage your Dryade license keys through the License API endpoints.
Last updated: 15 marzo 2026
License API
Validate and manage your license keys.
Get License Status
GET /license
Response:
{
"license_key": "DRY-XXXX-XXXX-XXXX",
"tier": "team",
"status": "active",
"valid_from": "2024-01-01T00:00:00Z",
"valid_until": "2025-01-01T00:00:00Z",
"features": ["api_access", "team_management", "priority_support"]
}
Validate License
GET /license/validate
Parameters:
| Name | Type | Required | Description |
|---|---|---|---|
| hardware_id | string | Yes | Unique hardware identifier |
Response:
{
"valid": true,
"tier": "team",
"expires_at": "2025-01-01T00:00:00Z",
"features": ["api_access", "team_management"],
"device_registered": true
}