Flowseeker/API Reference/Dark Pool

Largest individual dark-pool prints for a ticker

GEThttps://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

  • tickerstringrequired

    Underlying ticker symbol (uppercase, e.g. SPY, AAPL).

Query parameters

  • top_nintegerdefault 5min 1 · max 20

    Number of largest prints to return.

  • lookback_daysintegerdefault 45min 1 · max 180

    Calendar-day trailing window.

  • as_of_datestringdate

    Optional 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[]required
    • timestampstringdate-timerequired

      Trade time, ISO-8601 UTC.

    • pricenumberdoublerequired
    • notionalnumberdoublerequired

      price × size (USD).

    • sizeintegerrequired

      Shares.

  • metaobjectrequired
    • timestampstringdate-timerequired

      Server-side timestamp the response was generated at.

    • requestIdstringrequired

      Short opaque ID for log correlation.

Last updated

Was this page helpful?