Connect over WebSocket
Authenticate with one API key at wss://ws.optiondata.io and subscribe during U.S. market hours for continuous option trade prints.
Stream the live U.S. options tape over WebSocket — every print with premium, sentiment, contract metadata, and Greeks so your scanners react in market time, not after the close.
Who this is for: options flow traders, alert products, and automation that need OPRA-licensed trade prints with server-side filters (symbol, premium, expiry) — not delayed end-of-day CSVs.
Ingest the live tape, filter noise server-side, enrich with Greeks/IV, and route only actionable prints into alerts, dashboards, or models.
Authenticate with one API key at wss://ws.optiondata.io and subscribe during U.S. market hours for continuous option trade prints.
Reduce bandwidth with symbol lists, minimum premium, sentiment, expiration windows, and RAW vs AGGREGATED stream modes.
Each qualifying trade can include side, size, price, premium, Greeks, implied volatility, and sentiment for immediate scoring.
Validate recurring flow patterns later with ClickHouse SQL against 2.8B+ stored trades — same dataset as the live stream.
// Stream filtered options flow over WebSocket
const ws = new WebSocket(
'wss://ws.optiondata.io?token=YOUR_API_KEY&symbols=SPY,QQQ&min_premium=50000'
);
ws.onmessage = (event) => {
const trade = JSON.parse(event.data);
// trade.symbol, trade.premium, trade.delta, trade.sentiment, ...
if (trade.premium >= 250000) alertLargePrint(trade);
};Flow is strongest when paired with chain context and historical validation.
An options flow API streams live option trade prints (the “tape”) so applications can detect large premium, sweeps, and unusual activity in real time. OptionData delivers OPRA-licensed U.S. equity option trades over WebSocket with Greeks and server-side filters.
Roughly 10 million+ U.S. equity option trades per trading day, depending on market volume, with 30+ fields available per qualifying print.
Yes. Server-side filters support symbols, premium thresholds, sentiment, expirations, and stream mode so only relevant trades reach your client.
Yes. OptionData provides an OPRA-licensed U.S. equity options feed suitable for professional use cases under your plan terms.