Zum Hauptinhalt springen

Integrations & APIs

Production endpoints, documentation, and copy-paste examples to wire verification, webhooks, and operational visibility.

Try verify from your terminal

Call the public Core API with your app API key and a license key. See the docs for tier limits and optional hardware fields.

curl -sS -X POST 'https://api.licensechain.app/v1/licenses/verify' \
  -H 'Content-Type: application/json' \
  -H 'X-API-Key: YOUR_APP_API_KEY' \
  -d '{"key":"YOUR_LICENSE_KEY"}'

Webhook receiver smoke test

Point this at your own HTTPS endpoint to confirm routing, TLS, and body parsing before connecting Dashboard webhooks. Replace the URL and payload with shapes from the webhook guides.

curl -sS -X POST 'https://your-receiver.example/hooks/licensechain' \
  -H 'Content-Type: application/json' \
  -d '{"event":"ping","received_at":"<ISO8601_ZULU>"}'

Status JSON & RSS

Automations and status pages can poll public JSON (CORS-enabled) or subscribe via RSS. Full field reference lives in the Status repo HTTP API doc.

  • GEThttps://status.licensechain.app/api/status
  • GEThttps://status.licensechain.app/api/incidents
  • GEThttps://status.licensechain.app/api/status/rss
  • GEThttps://status.licensechain.app/api/status/stream (SSE; same JSON as /api/status)
  • Status HTTP API reference
Integrations & APIs | LicenseChain