INDEX LTP DATA API
This API is used to get Open,High,Low,Close,LTP for different indexes of BSE and NSE in json format
Request JSON
Field |
Type |
Mandatory |
Description |
clientcode |
String |
N |
Client ID Mandatory in case of Dealer |
exchangename |
String |
Y |
NSE,BSE |
scripcode |
String |
Y |
Index Code from Index data |
Sample Request (Body)
{
"clientcode":"AA020", // In case of dealer else not required
"exchangename":"NSE",
"scripcode":"26000"
}
Sample Response
{
"status": "SUCCESS",
"message": "INDEX LTP DATA",
"errorcode": "",
"data": [
{
"exchange": "NSECASH",
"scripcode": 26000,
"open": 17451.25,
"high": 17579,
"low": 17427.7,
"close": 17321.9,
"ltp": 17566.6
}
]
}