Streams

Available real-time data streams on the WebSocket API.

Streams are the data channels you subscribe to over a WebSocket connection. Each stream delivers a specific type of real-time event whenever on-chain data changes for the tokens you're watching.

Available Streams

StreamIDNetworksDescription
DEX Metricsdex_metricssol, eth, base, bscUnified stream delivering holder analysis events: top-10 distribution, clusters, and (on Solana) snipers, bundlers, insiders, dev holdings
ClustersclustersAllReal-time token holder cluster analysis -- groups of related wallets, their combined holdings, and labels
BundlersbundlerssolReal-time bundler concentration percentage
InsidersinsiderssolReal-time insider and dev holdings percentages
SniperssniperssolReal-time sniper concentration percentage
Distributiondistributionsol, eth, base, bscReal-time top-10 holder distribution percentage
ScannerscannersolReal-time token security scan events
DEX Tradesdex_tradessolReal-time DEX trade events with multi-address filtering

More streams will be added over time. Sending an unrecognized stream name returns a BAD_STREAM error.

How to Subscribe

Pass the stream ID in the stream field of your subscribe message:

{
  "op": "subscribe",
  "network": "sol",
  "address": "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
  "stream": "clusters"
}

For full details on subscription modes, bulk subscriptions, and event handling, see Subscribing.