Get Quote
To get characters you need to make a POST call to the following url
REQUEST ATTRIBUTES
| Parameter | Description | Mandatory |
|---|---|---|
| exchange | Exchange name | Yes |
| token | Token | Yes |
RESPONSE ATTRIBUTES
| Attribute | Datatype | Description |
|---|---|---|
| symbol_name | string | Symbol Name |
| trading_symbl | string | Trading Symbol |
| token | string | Symbol Token |
| company_name | string | Company Name |
| last_trade_time | string | Last Traded Time |
| last_price | string | Last Traded Price |
| change | string | Change Price |
| change_per | string | Change Percentage |
| last_quantity | string | Last Traded Quantity |
| buy_quantity | string | Buy Quantity |
| sell_quantity | string | Sell Quantity |
| volume | string | Volume |
| average_price | string | Average Price |
| open | string | Open |
| high | string | High |
| low | string | Low |
| close | string | Close |
| tick_size | string | Tick Size |
| multiplier | string | Multiplier |
| lot_size | string | Lot Size |
| decimalprecision | string | Decimal Precision |
| yearly_low_price | string | Yearly Low Price |
| yearly_high_price | string | Yearly 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"
}
}