Skip to main content

Fetch Symbol

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

REQUEST ATTRIBUTES

ParameterDescriptionMandatory
sSearch SymbolYes

RESPONSE ATTRIBUTES

AttributeDatatypeDescription
exchangestringExchange
tokenstringSymbol Token
symbolstringSymbol
trading_symbolstringTrading Symbol
company_namestringCompany Name
expiry_datestringExpiry Date
expiry_date_descstringExpiry Date Description
strike_pricestringStrike Price
lot_sizestringLot size
curl / cURL
curl --location --request POST 'https://api.gwcindia.in/v1/fetchsymbol' \
--header 'x-api-key: 2e4c1f0ac084dd6b30fd808e016be3f0' \
--header 'Authorization: Bearer 6cb7ac3a5a73831ec88ee8915bee3f2a'
Request Example
{
"s":"RELIANCE"

}
Response Example
{
"status": "success",
"data": [
{
"exchange": "NSE",
"token": "2885",
"symbol": "RELIANCE-EQ",
"trading_symbol": "RELIANCE-EQ",
"company_name": "RELIANCE INDUSTRIES LTD",
"expiry_date": "",
"expiry_date_desc": "",
"strike_price": "",
"lot_size": "1"
}
]

}