Stocks Block Trades API - Large Equity Prints - FlashAlpha Lab API
Lab API Stocks Blocks

Stocks Block Trades API

Large stock trades for a symbol, newest first, filtered by minimum share size.

Endpoint

GET /v1/flow/stocks/{symbol}/blocks
Auth required (X-Api-Key) Rate Limited: Yes Alpha plan+

Parameters

Name In Required Default Description
symbol path yes - Stock symbol
minSize query no 10000 Minimum share size
curl -H "X-Api-Key: YOUR_API_KEY" \
  "https://lab.flashalpha.com/v1/flow/stocks/SPY/blocks?minSize=25000"
import requests

resp = requests.get(
    "https://lab.flashalpha.com/v1/flow/stocks/SPY/blocks",
    headers={"X-Api-Key": "YOUR_API_KEY"}
)
data = resp.json()
print(f"{data['count']} blocks at minSize {data['minSize']}")
const resp = await fetch(
  "https://lab.flashalpha.com/v1/flow/stocks/SPY/blocks",
  { headers: { "X-Api-Key": "YOUR_API_KEY" } }
);
const data = await resp.json();
console.log(data.count + " blocks at minSize " + data.minSize);

Response

{
  "symbol": "SPY",
  "minSize": 25000,
  "count": 2,
  "blocks": [
    {
      "ts": "2026-05-12T18:41:55.108Z",
      "price": 597.51,
      "size": 150000,
      "side": "buy",
      "bid": 597.50,
      "ask": 597.52
    },
    {
      "ts": "2026-05-12T18:38:12.402Z",
      "price": 596.92,
      "size": 80000,
      "side": "sell",
      "bid": 596.91,
      "ask": 596.93
    }
  ]
}

Key Response Fields

Field Type Description
symbolstringUppercase stock symbol
minSizeintegerMinimum block size applied
countintegerNumber of block trades returned
blocks[]arrayBlock rows: ts, price, size, side, bid, ask

Errors

Status Description
403Requires Alpha plan or higher
502Upstream flow data source unavailable

About

Filters the equity tape to prints at or above minSize shares. Default is 10,000 shares; raise for institutional-only filtering. Each row carries the prevailing bid/ask so you can see how aggressively the print crossed the spread.

Common Use Cases

  • Institutional flow tracker: large equity prints in real time
  • Cross-asset pairing: tie large equity prints to coincident options blocks
  • Spread-aggressor analysis: classify prints by how far through the spread they crossed
  • Volume profile: bucket blocks by price level for VWAP context

Ready to build?

Get your free API key and start pulling live options data in 30 seconds.