Get Level-1 Quotes
GET/v1/native/iex/level1-quote/:symbol
Get Level-1 Quotes
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
- 200
successful operation
- application/json
- Schema
- Example (from schema)
Schema
Array [
]
symbol stringnullable
The stock symbol
timestamp_nanos int64
Original timestamp in nanoseconds since epoch
timestamp date-time
Time when the quote update was recorded as DateTime
is_symbol_available boolean
Gets whether the symbol is available for trading True if active, False if halted, paused, or otherwise not available
is_pre_post_market_session boolean
Gets whether the market session is regular or pre/post-market True if pre/post-market session, False if regular market session
ask_size int32
Ask size in number of shares
ask_price double
Ask price as decimal
bid_price double
Bid price as decimal
bid_size int32
Bid size in number of shares
[
{
"symbol": "string",
"timestamp_nanos": 0,
"timestamp": "2025-04-29T06:11:29.400Z",
"is_symbol_available": true,
"is_pre_post_market_session": true,
"ask_size": 0,
"ask_price": 0,
"bid_price": 0,
"bid_size": 0
}
]
Loading...
Was this section helpful?