Protocol analysis, authorized API implementation, and OpenFinance-style delivery for options flow, dark pool, and congressional trading data
Unusual Whales is the retail-plus-institutional hub for real-time unusual options activity, dark pool prints, options flow filters, hot chains, sector rotation, and political trading signals. We deliver authorized integration code and pipelines that mirror the mobile app's data model — so your dashboard, quant research stack, or compliance warehouse receives normalized JSON instead of screenshots.
Each module below is delivered as a runnable service with documented request/response fields, error handling, and retry logic. We keep the semantics close to the native Unusual Whales experience so analysts can reason about flow the same way the mobile app presents it.
Expose the complete options flow tape (contract, strike, expiry, side, premium, volume, open interest, IV, underlying price) with the same saved-filter logic the Unusual Whales mobile app offers. Typical use: feeding a trading bot that acts only on sweeps above $250k premium in defined sectors.
Normalize "unusual" scoring across volume/open-interest ratios and premium percentile ranks. The hot chains endpoint surfaces contracts with abnormal concentration so quant desks can trigger intraday alpha tests or compliance lookbacks.
Capture off-exchange block prints published through FINRA ATS tapes, with per-trade size, settlement timing, and venue classification. Use case: reconcile institutional buying pressure against retail sentiment indicators in a single dashboard.
Aggregate net premium by sector, put/call ratio by sector, and relative rotation indexes. Useful for macro screens or allocation engines that need to rebalance thematic baskets based on option-derived sentiment.
Per-symbol gamma exposure, charm and vanna, plus implied volatility skew across expiries. Consumed by market-makers and risk tools needing dealer positioning maps without building their own Black-Scholes pipelines.
Mirror the in-app custom alerting engine as webhook delivery. Your downstream receives a signed payload when a flow pattern matches — suitable for Discord bots, Slack alerts, or internal order management triggers.
The table below maps Unusual Whales surfaces to structured datasets you can consume through our delivered APIs. All fields are tagged with source, granularity, and a typical consumption pattern so procurement and data-governance teams can evaluate fit quickly.
| Data type | Source (screen / feature) | Granularity | Typical use |
|---|---|---|---|
| Flow alerts | Flow Alerts feed | Per contract, real-time push | Bot triggers, intraday alpha, execution routing |
| Full options flow | Options Flow screen | Per trade (sweep / block / split) | Quant research, backtesting, unusual scoring |
| Hot chains | Hot Chains module | Top-N per session | Retail sentiment, gamma squeeze screening |
| Dark pool prints | Dark Pool feed | Per trade, venue-tagged | Institutional attribution, block-trade detection |
| Options profit calc | Options Profit Calculator | Per strategy (single / multi-leg) | UX simulators, client-facing advisory tools |
| Sector rotation & Market Tide | Sector Rotation, Market Tide | Sector + 1-min / 5-min buckets | Macro screens, allocation overlays |
| Congressional & insider trades | Political Trading charts | Per filer / filing date | ESG, compliance, narrative research |
| Greeks & GEX | Greek exposure views | Per symbol / expiry | Market-maker positioning, volatility trading |
Business context: A proprietary trading desk wants its execution bot to react only when sweep premium exceeds a threshold on pre-filtered tickers. Data / API: Flow Alerts WebSocket plus Greeks REST endpoint. OpenData mapping: The alert payload is normalized to an OpenFinance-style instrument + event + measurement schema, so the bot can be portable to other flow vendors without code rewrites.
Business context: A portfolio analytics vendor reconciles intraday positioning against off-exchange blocks. Data / API: Dark Pool prints stream with venue and settlement fields. OpenData mapping: Prints are written to a Kafka topic; a downstream Flink job enriches with sector and market-cap metadata for institutional attribution views.
Business context: A compliance team at a multi-family office needs STOCK Act disclosures cross-referenced with client holdings. Data / API: Political trading endpoints, per-member and per-committee. OpenData mapping: Each disclosure becomes a signed event in the compliance warehouse with filing timestamps and ticker FIGI resolution.
Business context: A buy-side firm wants a chat agent that can answer "what unusual AMZN call activity printed this morning?". Data / API: Unusual Whales MCP server plus custom retrieval layer over flow history. OpenData mapping: The MCP tool surface is proxied through an authenticated gateway that enforces entitlement, rate-limit, and redaction before the model sees anything.
Business context: A robo-advisor overlays short-horizon option sentiment on top of long-horizon factor allocations. Data / API: Market Tide net premium by sector plus put/call ratios on 5-minute buckets. OpenData mapping: The overlay publishes a daily "sector conviction" vector consumable by any downstream portfolio engine that speaks a flat JSON schema.
We ship runnable reference implementations in Python, Node.js, or Go, together with OpenAPI specs and automated tests. The following snippets illustrate the shape of the delivered endpoints — actual field names match the live Unusual Whales documentation so you can substitute vendors if needed.
GET /api/v1/uw/options-flow?ticker=AAPL&min_premium=250000&side=sweep
Authorization: Bearer <ACCESS_TOKEN>
Accept: application/json
200 OK
{
"ticker": "AAPL",
"window": "2026-04-23T13:30:00Z..2026-04-23T20:00:00Z",
"trades": [
{
"id": "fl_9f2c...",
"contract": "AAPL260515C00210000",
"side": "sweep",
"premium": 412500.00,
"volume": 1500,
"open_interest": 842,
"iv": 0.284,
"underlying_price": 207.51,
"unusual_score": 0.91
}
],
"next_cursor": "eyJvZmZzZXQiOjEwMH0="
}
// Node.js pseudocode
const ws = new WebSocket('wss://gw.example.com/uw/flow-alerts', {
headers: { Authorization: 'Bearer ' + TOKEN }
});
ws.on('open', () => {
ws.send(JSON.stringify({
action: 'subscribe',
filters: { min_premium: 500000, types: ['sweep','block'] }
}));
});
ws.on('message', raw => {
const evt = JSON.parse(raw);
// evt: { ticker, contract, side, premium, unusual_score, ts }
if (evt.unusual_score >= 0.85) route_to_bot(evt);
});
POST /your/hook
X-UW-Signature: t=1714060800,v1=0b9c3...
Content-Type: application/json
{
"alert_id": "ca_8d71",
"rule": "gex_flip_above_zero",
"ticker": "SPY",
"triggered_at": "2026-04-23T14:05:03Z",
"payload": {
"gex": 1.2e9,
"prev_gex": -4.3e8,
"spot": 518.42
}
}
POST /api/v1/uw/congress/trades
Authorization: Bearer <ACCESS_TOKEN>
{
"member_ids": ["P000197","C001075"],
"from_date": "2026-01-01",
"to_date": "2026-04-22"
}
Response:
[
{ "member":"P000197","ticker":"NVDA","txn":"buy",
"amount_range":"$15,001-$50,000","filed":"2026-02-14" }
]
Options and equity market data integrations in the United States sit inside a well-defined regulatory perimeter. We build under authorized API access or documented public endpoints only, and we scope delivered code to respect the constraints below.
A typical deployment routes Unusual Whales data through four stages: Source → Ingestion → Storage → Distribution.
Unusual Whales is an Android + iOS + web platform (Android 12+ on mobile) with subscription tiers starting around $35/month and a developer/enterprise API tier used by trading firms, research desks, and independent quants. Its user base skews toward active US retail traders, options-focused Discord communities, and institutional research teams who want a retail-fluent view of dark pool and political trading. Recent expansions — including the public API, MCP server, and AI-skill bridge launched across 2024–2025 — have opened the door for LLM-driven research agents and portfolio tools to treat Unusual Whales as a first-class data source rather than a standalone app.
Click any thumbnail to view the full-size screenshot. These are the actual store-listed screens that our integrations mirror into structured data.
Teams adopting Unusual Whales often evaluate or already use one of the platforms below. We include them here because our integration playbook also applies to these tools — a normalized flow/dark-pool schema is vendor-neutral, which means clients can switch or aggregate sources without re-wiring their downstream systems.
Institutional-style options flow scanner. Users who integrate both often want a unified sweep/block schema so dashboards aren't tied to a single vendor's field names.
Modern options order-flow platform focused on smart-money tracking. Our connectors can merge its alerts into the same event bus as Unusual Whales flow alerts.
All-in-one platform bundling flow, scanners, dark pool prints, and chat rooms. Teams commonly want a single historical store that combines its prints with Unusual Whales data.
Web, iOS, and Android toolkit covering stocks, options, and crypto with Discord integrations. Pairs well when firms need cross-asset ML features alongside options flow.
Advanced charting and automated technical analysis. Users often overlay its signal annotations on top of Unusual Whales flow events for confirmation.
Covers options flow, unusual activity, congressional and insider trades. A natural candidate to cross-check political-trading data with Unusual Whales' political charts.
Options flow tracking with watchlists and community features. Teams frequently want its alerts normalized into the same webhook schema as Unusual Whales custom alerts.
Competes directly with FlowAlgo and Cheddar Flow. Our unified ingestion layer lets clients A/B the signal quality of each vendor against identical backtests.
Visualizes options flow, dark pool, and market-maker data on candlesticks. Works well as a front-end when Unusual Whales provides the underlying tape.
AI-driven stock and options signal engine. Integrators often pair its automated execution with Unusual Whales-derived context.
Systematic options trading and backtesting. Consumes Unusual Whales flow history as an additional feature for rule-based strategies.
Real-time options trading activity feed. Sits in the same category as Unusual Whales' flow tape and benefits from the same normalization patterns.
We are an independent studio focused on fintech, market data, and OpenData API integration. Our team includes engineers with backgrounds in options market-making, equities execution, protocol reverse engineering, and cloud data platforms. We have shipped integrations for options flow vendors, dark-pool print aggregators, and congressional-trading watchlists — all under documented authorization and vendor-compliant redistribution rules.
To scope a project or request a quote for Unusual Whales integration, share the target use case and any existing entitlements you hold.
What do you need from me?
How long does delivery take?
How is compliance handled?
Unusual Whales is a US-headquartered financial tooling platform focused on real-time options flow, dark pool prints, and political trading transparency. Its Android app (Android 12+) and iOS companion deliver a retail-friendly interface over data feeds that historically were only available to institutional desks. The platform's official website lists over 100 API endpoints spanning options flow, dark pool, congressional trading, institutional holdings, stock fundamentals, technical indicators, Greek exposure, and volatility, accessible via REST, WebSocket, Kafka, and MCP.