Skip to main content
Every endpoint on this page requires either a Clerk-issued JWT (Authorization: Bearer <token>) or an organization API key (x-api-key: pk_…). Anonymous calls return 401 Unauthorized. See Authentication for the full setup.
Agntix exposes a single Server-Sent Events stream per organization at GET /v1/chat/events/stream. Use it to update dashboards, push notifications, or trigger downstream automation.

Connect

Event types

Reconnecting

The browser’s EventSource reconnects automatically with the Last-Event-ID header. Keep your client side-effect-free with respect to event order — at least one delivery is guaranteed, ordering is not.
Looking for at-least-once delivery with replay? Subscribe via Webhooks instead. SSE is fire-and-forget; webhooks are durable.