---
title: "Largest individual dark-pool prints for a ticker"
method: GET
path: "/v1/dark-pool/top-prints/{ticker}"
tags: ["Dark Pool"]
---

# Largest individual dark-pool prints for a ticker

`GET /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.

## Path parameters

- `ticker` string, required

## Query parameters

- `top_n` integer
- `lookback_days` integer
- `as_of_date` string, date

## Response `200`

Top-N largest prints for `{ticker}`, ordered by notional.

- DarkPoolTopPrintsSuccess
  - `data` DarkPoolTopPrint[], required
    - `timestamp` string, date-time, required — Trade time, ISO-8601 UTC.
    - `price` number, double, required
    - `notional` number, double, required — `price × size` (USD).
    - `size` integer, required — Shares.
  - `meta` Meta, required
    - `timestamp` string, date-time, required — Server-side timestamp the response was generated at.
    - `requestId` string, required — Short opaque ID for log correlation.

## Other responses

- `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 revoked/expired, monthly quota exceeded, 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.

---

[API](https://skmtc.net/skylit/apis/flowseeker-skylit-public-api.md) · [All operations](https://skmtc.net/skylit/apis/flowseeker-skylit-public-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/skylit/flowseeker-skylit-public-api/revisions/3280190b1b24/schema)
