Overnight Option Trades
GET
/overnight/trades/option
Returns a list of option trades that occurred during the overnight session within the specified timestamp range.
Timestamps must be provided in RFC3339 format.
Note: The response may include additional fields beyond those documented here (e.g. bid_px, ask_px, side). Only the fields listed in the schema are guaranteed to be stable.
Parameters
Header Parameters
X-API-KEY*
Type
Requiredstring
Query Parameters
start_ts*
Start of the time range (inclusive), in RFC3339 format
Type
Requiredstring
Example
"2025-05-13T12:30:00Z"Format
"date-time"end_ts*
End of the time range (exclusive), in RFC3339 format
Type
Requiredstring
Example
"2025-05-13T12:40:00Z"Format
"date-time"Responses
List of option trades within the given timestamp range
application/json
JSON { "symbol": "AMD", "price": "9.75", "size": 10, "timestamp": "2025-05-13T12:35:58Z" }, { "symbol": "AMD 251219C00140000", "price": "10.25", "size": 5, "timestamp": "2025-05-13T12:36:10Z" }
[
]