For the complete documentation index, see llms.txt. This page is also available as Markdown.

Webhooks

REST — Webhook event payloads.

Stratix POSTs JSON to your endpoint when a subscribed event fires.

Headers

  • X-Stratix-Event — event name

  • X-Stratix-Signature — HMAC-SHA256 of body, hex-encoded

  • X-Stratix-Delivery-Id — for dedup

Sample event

{
 "event": "evaluation.completed",
 "evaluation_id": "...",
 "score": 0.95,
 "occurred_at": "2026-05-08T12:00:00Z"
}

See also

Last updated

Was this helpful?