License API

Validate and manage your Dryade license keys through the License API endpoints.

Last updated: 15 de marzo de 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:

NameTypeRequiredDescription
hardware_idstringYesUnique hardware identifier

Response:

{
  "valid": true,
  "tier": "team",
  "expires_at": "2025-01-01T00:00:00Z",
  "features": ["api_access", "team_management"],
  "device_registered": true
}