Skip to main content
Use these endpoints to verify system status and inspect license metadata.

Basic request and response

Use the health check to verify availability with GET /api/health.
curl "https://{BASE_URL}/api/health"
{
  "status": "ok",
  "uptime": "3d 04:12:33",
  "commit": "9f1c2a3"
}

License details

curl "https://{BASE_URL}/api/v1/license" \
  -H "Authorization: Bearer {API_TOKEN}"
{
  "id": "lic_6b7c8d9e0f1a",
  "email": "admin@auroralabs.com",
  "valid_until": "2026-12-31T00:00:00Z",
  "product": "Zylon Enterprise",
  "provider": "LicenseServer",
  "metadata": {
    "seats": "250",
    "tier": "Enterprise"
  }
}

Errors and edge cases

  • 401/403: missing token for license endpoint.
  • 503: health check unavailable.