Fetch Symbol
To get characters you need to make a POST call to the following url
REQUEST ATTRIBUTES
| Parameter | Description | Mandatory |
|---|---|---|
| s | Search Symbol | Yes |
RESPONSE ATTRIBUTES
| Attribute | Datatype | Description |
|---|---|---|
| exchange | string | Exchange |
| token | string | Symbol Token |
| symbol | string | Symbol |
| trading_symbol | string | Trading Symbol |
| company_name | string | Company Name |
| expiry_date | string | Expiry Date |
| expiry_date_desc | string | Expiry Date Description |
| strike_price | string | Strike Price |
| lot_size | string | Lot 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"
}
]
}