Skip to main content

Get Quote

To get characters you need to make a POST call to the following url

REQUEST ATTRIBUTES

ParameterDescriptionMandatory
exchangeExchange nameYes
tokenTokenYes

RESPONSE ATTRIBUTES

AttributeDatatypeDescription
symbol_namestringSymbol Name
trading_symblstringTrading Symbol
tokenstringSymbol Token
company_namestringCompany Name
last_trade_timestringLast Traded Time
last_pricestringLast Traded Price
changestringChange Price
change_perstringChange Percentage
last_quantitystringLast Traded Quantity
buy_quantitystringBuy Quantity
sell_quantitystringSell Quantity
volumestringVolume
average_pricestringAverage Price
openstringOpen
highstringHigh
lowstringLow
closestringClose
tick_sizestringTick Size
multiplierstringMultiplier
lot_sizestringLot Size
decimalprecisionstringDecimal Precision
yearly_low_pricestringYearly Low Price
yearly_high_pricestringYearly High Price
curl / cURL
curl --location --request POST 'https://api.gwcindia.in/v1/getquote' \
--header 'x-api-key: 2e4c1f0ac084dd6b30fd808e016be3f0' \
--header 'Authorization: Bearer 6cb7ac3a5a73831ec88ee8915bee3f2a'
Request Example
{
"exchange":"NSE",
"token":"11915"

}
Response Example
{
"status": "success",
"data": {
"symbol_name": "YESBANK",
"trading_symbl": "YESBANK-EQ",
"token": "11915",
"company_name": "YES BANK LIMITED",
"last_trade_time": "13:18:29",
"last_price": "15.65",
"change": "0.0",
"change_per": "0.0",
"last_quantity": "1",
"buy_quantity": "37308286",
"sell_quantity": "26519029",
"volume": "119231098",
"average_price": "15.66",
"open": "15.70",
"high": "15.95",
"low": "15.45",
"close": "15.65",
"tick_size": "0.05",
"multiplier": "1",
"lot_size": "1",
"decimalprecision": "2",
"yearly_low_price": "12.10",
"yearly_high_price": "24.75"
}

}