Connection
EventSource in browsers and curl -N from CLI.
Response Format
Each event is an SSEdata: line with a truncated SourceEvent:
| Field | Type | Description |
|---|---|---|
source | string | "fast-x", "telegram", or "discord" |
timestamp | number | Unix timestamp (ms) when event was received |
payload | string | Truncated — first 100 chars of raw payload |
Query Parameters
| Parameter | Type | Description |
|---|---|---|
useFastX | boolean | Include fast-x push events (default: true) |
Auto-Reconnect
EventSource automatically reconnects on connection loss. The server sends keepalive comments (:) every 15 seconds to prevent proxy timeouts. On reconnection, the last 5 buffered events are replayed.
Limitations
- Payloads are truncated to 100 characters — use Private SSE for full data
- No enriched
xevents — onlyfast-x,telegram,discord - No filtering by source or tracked account