Ticker Darkpool Trades
-> Returns the darkpool trades for the given ticker on a given day. Date must be the current or a past date. If no date is given, returns data for the current/last market day.
get/api/darkpool/{ticker}
Path parameters
tickerstring required
Stock ticker symbol to retrieve darkpool trades for.
Query parameters
datestring date
Date to filter darkpool transactions.
limitinteger
How many items to return. Default is 100. Max is 200. Minimum is 1.
newer_thanstring
The unix time in milliseconds or seconds at which no older results will be returned. Can be used with newer_than to paginate by time. Also accepts an ISO date example "2024-01-25".
older_thanstring
The unix time in milliseconds or seconds at which no newer results will be returned. Can be used with newer_than to paginate by time. Also accepts an ISO date example "2024-01-25".
Response
Successful response
Example response
{
"data": [
{
"canceled": true,
"executed_at": "2023-02-16T00:59:44.000Z",
"ext_hour_sold_codes": "sold_out_of_sequence",
"market_center": "L",
"premium": "27723806.00",
"price": "18.9904",
"sale_cond_codes": "contingent_trade",
"size": 6400,
"ticker": "AAPL",
"tracking_id": 71984388012245,
"trade_code": "derivative_priced",
"trade_settlement": "cash_settlement",
"volume": 23132119
}
]
}