Largest individual dark-pool prints for a ticker
https://flow-api.skylit.ai/v1/dark-pool/top-prints/{ticker}The top-N largest individual off-exchange prints for {ticker} over a
trailing window, ordered by notional descending. Each row is a single
TRF print (not an aggregate), useful as a support/resistance anchor.
Authorization
Authorization: Bearer <your API key>Required. A missing header returns 401; an invalid, revoked or expired key returns 403.
Path parameters
tickerstringrequiredUnderlying ticker symbol (uppercase, e.g.
SPY,AAPL).
Query parameters
top_nintegerdefault5min 1 · max 20Number of largest prints to return.
lookback_daysintegerdefault45min 1 · max 180Calendar-day trailing window.
as_of_datestringdateOptional anchor date (
YYYY-MM-DD); the window becomes[as_of_date - lookback_days, as_of_date]. Omit for a today-anchored window.
Responses
- 200
Top-N largest prints for
{ticker}, ordered by notional. - 400
Request validation failed.
- 401
Missing or invalid API key.
- 402
The account's shared Skylit credit balance is lower than this route's cost. Top up to continue. Carries
X-Credits-Remaining: 0. - 403
API key invalid, revoked or expired, or the account's API access is suspended (
account_suspended). - 404
Unknown resource (ticker / sector / window with no data).
- 429
Per-minute rate limit exceeded.
- 503
Underlying data source temporarily unavailable, or the credit balance could not be verified (
credit_check_failed). Safe to retry.
Response fields
dataobject[]requiredtimestampstringdate-timerequiredTrade time, ISO-8601 UTC.
pricenumberdoublerequirednotionalnumberdoublerequiredprice × size(USD).sizeintegerrequiredShares.
metaobjectrequiredtimestampstringdate-timerequiredServer-side timestamp the response was generated at.
requestIdstringrequiredShort opaque ID for log correlation.
Last updated