Skip to main content
Subscribe to a live stream of AI-generated trading signals using Server-Sent Events (SSE). This is ideal for real-time dashboards, alert bots, and integrations that react to new opportunities as soon as they are detected.

Endpoint

Query parameters

integer
required
Chain ID to stream signals from. Use 8453 for Base or 56 for BNB Chain.

SSE format

The connection remains open and emits message events. Each event contains a JSON payload in its data field. Two event types are supported:
  • signal — a new BUY or SELL signal.
  • heartbeat — a periodic keep-alive message with no payload action.
Event type is indicated by the type field inside the JSON payload.

EventSource example

Signal event fields

string
Always signal for trading signals.
string
Unique signal identifier.
string
Token contract address.
string
Token symbol.
integer
Chain ID.
string
Either BUY or SELL.
float
Model confidence from 0.0 to 1.0.
float
Estimated token price in USD when the signal fired.
integer
Unix timestamp of the signal.

Example signal event

Example heartbeat event

The SSE stream does not count against your standard API rate limits.