Skip to main content

Trade Book

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

RESPONSE ATTRIBUTES

AttributesDatatypeDescription
exchangestringExchange
tsymstringTrading Symbol
productstringProduct code
pricetypestringPrice type of the Trade
trantypestringTransaction type (B/S)
qtystringQuantity
exchordidstringExchange Order ID
nstordnostringOrder ID
exchtimestringExchange time
pricestringPrice
curl / cURL
curl --location --request GET 'https://api.gwcindia.in/v1/tradebook' \
--header 'x-api-key: 2e4c1f0ac084dd6b30fd808e016be3f0' \
--header 'Authorization: Bearer 05b8167eed78367034cb5ed4a8c15930'
Response Example
{
"status": "success",
"data": [
{
"exchange": "NSE",
"tsym": "IDEA-EQ",
"product": "MIS",
"pricetype": "MKT",
"trantype": "S",
"qty": "1",
"exchordid": "1100000010905576",
"nstordno": "23031400011069",
"exchtime": "14-03-2023 11:33:50",
"price": "0.00"
}
]

}