Equity Prints
Overview
Equity Prints returns the trade-by-trade equity tape across both lit and dark venues. Each row is one print. Rows are paginated with cursor semantics, and every projectable field is returned by default. Use this when you need per-print visibility into how an equity is trading; for aggregated dark-venue activity over time, see Dark Flow.
curl -X POST https://api.quantdata.us/v1/equities/tool/equity-prints \ -H "Authorization: Bearer <YOUR_API_KEY>" \ -H "Content-Type: application/json" \ -d '{ "sessionDate": "2026-05-13", "filter": { "ticker": "AAPL" } }'
Selecting the time window
The endpoint accepts sessionDate, timeRange, or neither. The two are mutually exclusive; if both are omitted, the most recent trading session is used.
Pagination and sort
Equity Prints uses cursor pagination. size sets the page size (default 50, range 1-100). sort picks the order (default tradeTime DESCENDING). Pass the previous response's nextSearchAfter back as searchAfter to get the next page. See Pagination for the full walk-through.
{ "sessionDate": "2026-05-13", "filter": { "ticker": "AAPL" }, "size": 50, "sort": { "field": "tradeTime", "direction": "DESCENDING" }, "searchAfter": ["1747137600000", "5e0f1a2b"] }
{ "sessionDate": "2026-05-13", "filter": { "ticker": "AAPL", "equityPrintTypes": ["DARK_POOL"] } }
Projection
includes is a whitelist of fields to keep on each row; excludes is a blacklist. The two are mutually exclusive. Omitted fields are dropped from the JSON entirely. See Projection for the full contract.
{ "sessionDate": "2026-05-13", "filter": { "ticker": "AAPL" }, "includes": ["ID", "TICKER", "PRICE", "SIZE", "PRINT_TYPE", "TRADE_TIME"] }
Response shape
data is an ordered array of rows. nextSearchAfter is the cursor for the next page (or omitted when none).
{ "data": [ { "id": "5e0f1a2b", "ticker": "AAPL", "price": 213.45, "size": 250, "notionalValue": 53362.50, "printType": "DARK_POOL", "tradeSide": "MID_MARKET", "askPrice": 213.46, "askSize": 800, "bidPrice": 213.43, "bidSize": 1100, "isDelayedPrint": false, "tradeTime": 1747137612000 } ], "nextSearchAfter": ["1747137612000", "5e0f1a2b"] }
Filters
Convenience filter fields: tickers, equityPrintTypes (aliases: equityPrintType, printType, printTypes, type, types), tradeSideCodes, priceRange, sizeRange, askPriceRange, askSizeRange, bidPriceRange, bidSizeRange, notionalValueRange, isDelayedPrint. All are optional. The filterExpression DSL is also accepted and can be combined with filter; both are evaluated as AND.