Fetch the latest traded price, OHLC, and best bid/ask for one or more instruments.
Overview
Market Quotes returns a snapshot of the current LTP (last traded price), the day's OHLC, and top-of-book bid/ask for a given instrument — a single-shot read, not a stream.
Purpose
Use this for on-demand price checks — displaying a quote in a UI, or a strategy's initial price read at startup. For continuous prices, subscribe to Subscribe to Market Feed over WebSocket instead; polling this endpoint in a loop will burn through your rate limit.
Prices are strings in the raw API response (to preserve exchange-precision formatting) — cast to Decimal rather than float in Python to avoid rounding drift.
Overview
Market Quotes returns a snapshot of the current LTP (last traded price), the day's OHLC, and top-of-book bid/ask for a given instrument — a single-shot read, not a stream.
Purpose
Use this for on-demand price checks — displaying a quote in a UI, or a strategy's initial price read at startup. For continuous prices, subscribe to Subscribe to Market Feed over WebSocket instead; polling this endpoint in a loop will burn through your rate limit.
Parameters
Request example
Response example
Error handling
token/exchpair — re-check against Instrument Master.Best practices
Python example
Notes
Prices are strings in the raw API response (to preserve exchange-precision formatting) — cast to
Decimalrather thanfloatin Python to avoid rounding drift.