SourceEvent payloads — no truncation. Generate a token via /stream/token, then connect.
Setup
Connection
Query Parameters
| Parameter | Type | Description |
|---|---|---|
token | string | Required. Token from /stream/token |
useFastX | boolean | Include fast-x push events |
ignoreFullPayload | boolean | Skip enriched x payloads, keep fast-x + others |
Response Format
FullSourceEvent payloads (same as webhooks and WebSocket):
Auto-Reconnect & Buffer
EventSourceautomatically reconnects on connection loss- Server sends keepalive comments (
:) every 15 seconds - Last 5 events are buffered and replayed on reconnection
vs Public SSE
| Feature | Public SSE | Private SSE |
|---|---|---|
| Auth | None | Token required |
| Payload | Truncated (100 chars) | Full SourceEvent |
| X | fast-x only | fast-x + enriched |
| Use case | Demos, monitoring | Production integrations |