Skip to content

GET /v1/stream/pools

Stream new pool discoveries in real time.

Request

http
GET /v1/stream/pools
x-api-key: YOUR_API_KEY

Browser-native EventSource cannot set custom headers. For browser clients, use ?apiKey=YOUR_API_KEY instead.

Events

EventDescription
new-poolNewly discovered pool
heartbeatConnection keepalive

Example payload

text
event: new-pool
data: {"address":"HJPj...","dex":"raydium-cpmm","mintA":"So111...","mintB":"EPjF...","discoveredAt":1712000000000}

Example

bash
curl -N -H "x-api-key: YOUR_API_KEY" \
  "https://api.venum.dev/v1/stream/pools"

# Browser/EventSource fallback
curl -N \
  "https://api.venum.dev/v1/stream/pools?apiKey=YOUR_API_KEY"

Errors

StatusDescription
401Missing or invalid API key
429SSE connection limit exceeded

Rate Limit

Counts against the SSE streams connection limit in Plans & Rate Limits.