Get Trades
GET/v1/native/iex/trade/:symbol
Get Trades
Request
Path Parameters
The symbol identifier
Query Parameters
Optional date in format YYYY-MM-DD (defaults to latest available data)
Responses
- 200
successful operation
- application/json
- Schema
- Example (from schema)
Schema
Array [
]
Indicates if this record represents a trade break (true) or a trade report (false).
The stock symbol.
Original timestamp in nanoseconds since epoch.
Time when the event was recorded as DateTime (UTC).
Trade volume (or break volume) in number of shares.
Trade price (or break price) as decimal.
IEX trade identifier (same for report and its corresponding break).
Bit 7 (Mask 0x80): Intermarket Sweep Flag. True: Intermarket Sweep Order ("ISO"). False: Non-Intermarket Sweep Order.
Bit 6 (Mask 0x40): Extended Hours Flag. True: Extended Hours Trade (i.e., Form T sale condition). False: Regular Market Session Trade.
Bit 5 (Mask 0x20): Odd Lot Flag. True: Odd Lot Trade. False: Round or Mixed Lot Trade.
Bit 4 (Mask 0x10): Trade Through Exempt Flag. True: Trade is not subject to Rule 611 (Trade Through) of SEC Reg. NMS. False: Trade is subject to Rule 611 (Trade Through) of SEC Reg. NMS. Applied when the taking order was an ISO that traded through a protected quotation, OR the NBBO was crossed at the time of the trade, OR the trade occurred through a self-helped venue's quotation, OR the trade was a single-price cross.
Bit 3 (Mask 0x08): Single-price Cross Trade Flag. True: Trade resulting from a single-price cross. False: Execution during continuous trading.
[
{
"is_trade_break": true,
"symbol": "string",
"timestamp_nanos": 0,
"timestamp": "2025-04-29T06:11:29.415Z",
"size": 0,
"price": 0,
"trade_id": 0,
"is_intermarket_sweep": true,
"is_extended_hours_trade": true,
"is_odd_lot_trade": true,
"is_trade_through_exempt": true,
"is_single_price_cross_trade": true
}
]