Skip to main content

LTP Quotes

API to retrieve the LTP quotes for one or more instruments. Provides LTPs of up to 1000 instruments in one go.

Header Parameters

NameRequiredTypeDescription
AuthorizationtruestringRequires the format Bearer access_token where access_token is obtained from the Token API.
AccepttruestringDefines the content format the client expects, which should be set to application/json.

Query Parameters

NameRequiredDescription
instrument_keytrueComma separated list of instrument keys. For the regex pattern applicable to this field, see the Field Pattern Appendix.
Notice of Deprecation

The parameter (symbol) is deprecated and will be removed in future versions. We've renamed it (instrument_key) for a more meaningful and significant name.

Responses

Response body

{
"status": "success",
"data": {
"NSE_EQ:NHPC": {
"last_price": 52.05,
"instrument_token": "NSE_EQ|INE848E01016"
}
}
}
NameTypeDescription
statusstringA string indicating the outcome of the request. Typically success for successful operations.
dataobjectData object holding LTP information
data.last_pricenumberThe last traded price of symbol
data.instrument_tokenstringKey of the instrument. For the regex pattern applicable to this field, see the Field Pattern Appendix.

Examples

A comprehensive set of examples is provided to illustrate various use cases and implementation scenarios for this API. To view detailed examples and access sample code, please refer to: API Examples.

Loading...