Skip to main content

Get Trades

GET 

/v1/native/iex/trade/:symbol

Get Trades

Request

Path Parameters

    symbol stringrequired

    The symbol identifier

Query Parameters

    date date-timerequired

    Optional date in format YYYY-MM-DD (defaults to latest available data)

Responses

successful operation

Schema

  • Array [

  • is_trade_break boolean

    Indicates if this record represents a trade break (true) or a trade report (false).

    symbol stringnullable

    The stock symbol.

    timestamp_nanos int64

    Original timestamp in nanoseconds since epoch.

    timestamp date-time

    Time when the event was recorded as DateTime (UTC).

    size int32

    Trade volume (or break volume) in number of shares.

    price double

    Trade price (or break price) as decimal.

    trade_id int64

    IEX trade identifier (same for report and its corresponding break).

    is_intermarket_sweep boolean

    Bit 7 (Mask 0x80): Intermarket Sweep Flag. True: Intermarket Sweep Order ("ISO"). False: Non-Intermarket Sweep Order.

    is_extended_hours_trade boolean

    Bit 6 (Mask 0x40): Extended Hours Flag. True: Extended Hours Trade (i.e., Form T sale condition). False: Regular Market Session Trade.

    is_odd_lot_trade boolean

    Bit 5 (Mask 0x20): Odd Lot Flag. True: Odd Lot Trade. False: Round or Mixed Lot Trade.

    is_trade_through_exempt boolean

    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.

    is_single_price_cross_trade boolean

    Bit 3 (Mask 0x08): Single-price Cross Trade Flag. True: Trade resulting from a single-price cross. False: Execution during continuous trading.

  • ]

Loading...