Skip to main content

Quotes

Endpoint URL

This API Function fetches Quotes from the Broker

Local Host   :  POST http://127.0.0.1:5000/api/v1/quotes
Ngrok Domain : POST https://<your-ngrok-domain>.ngrok-free.app/api/v1/quotes
Custom Domain: POST https://<your-custom-domain>/api/v1/quotes

Sample API Request

{
"apikey": "<your_app_apikey>",
"symbol": "WIPRO",
"exchange": "NSE"
}

Sample API Response

{
"data": {
"ask": 265.92,
"bid": 265.84,
"high": 270,
"low": 265.32,
"ltp": 265.93,
"oi": 106860000,
"open": 269,
"prev_close": 268.52,
"volume": 4214304
},
"status": "success"
}

Request Fields

ParametersDescriptionMandatory/OptionalDefault Value
apikeyApp API keyMandatory-
symbolTrading symbolMandatory-
exchangeExchange codeMandatory-

Response Fields

FieldTypeDescription
bidnumberBest bid price
asknumberBest ask price
opennumberOpening price
highnumberHigh price
lownumberLow price
ltpnumberLast traded price
oinumberOpen Interest
prev_closenumberPrevious day's closing price
volumenumberTotal traded volume