Infinn API Documentation
Watch Lists

Get Quotes

POST/NorenWClientAPI/GetQuotes

Authorization token is required. Enter your access_token from GenAcsTok above.

"Use proxy" sends this request through this website's server, which never logs request or response bodies. Infinn sees the docs server's IP, not yours. Turn it off to send directly from your browser instead.

jData fields

Values are sent as a JSON string in the jData form field.

Logged in User Id

  • Example: YOUR_USER_ID
  • Where to get it: The ID you log in with at trade.infinn.in (User ID = Client ID). Also returned as uid by GenAcsTok.

Exchange

  • Example: NSE
  • Where to get it: 'exarr' array in the UserDetails response.
  • Allowed: NSE, NFO, BSE, MCX, CDS, NCX, BFO, BCD

Contract Token

  • Example: 2885
  • Where to get it: SearchScrip reply, or the Token column of the symbol file.

Authorization Token

Required for all API calls. Use the access_token from the GenAcsTok response as a Bearer token.

⚠ When "Use proxy" is on, this token is sent through this website's server on its way to Infinn. It is never logged here, but if you would rather it never leave your browser, turn off "Use proxy" above or use the ready code with your own client instead.

Request to be POSTed to url : /NorenWClientAPI/GetQuotes

Request Details
Parameter NamePossible valueDescription
jData*Should send json object with fields in below list
Authorization*Bearer <access_token>access_token from GenAcsTok response. Required for all API calls.
Json FieldsPossible valueDescription
uid*Logged in User Id
exchExchange
tokenContract Token

Example

jData={"uid":"{{USER_ID}}", "exch":"NSE", "token":"22"}
Response Details

Response data will be in json format with below fields:

Json FieldsPossible valueDescription
statOk or Not_OkWatch list update success or failure indication.
request_timeIt will be present only in a successful response.
exchNSE, BSE, NFO ...Exchange
tsymTrading Symbol
ppPrice precision
lsLot Size
tiTick Size
multMultiplier
sptprcSpot Price [ # ]
lutFeed Time
lpLTP
ucUpper circuit limitlc
lcLower circuit limit
wk52_hWeek52 High Price [ # ]
wk52_lWeek52 Low Price [ # ]
oiOpen Interest
toiTotal Open Interest
strprcStrike Price
cnameCompany Name
symnameSymbol Name
segSegment
exdExpiry date
instnameInstrument Name
opttOption Type
isinISIN
prcftr_dPrice factor ((GN / GD) * (PN/PD))
tokenToken
navnav
oOpen Price
cClose Price
hDay High Price
lDay Low Price
vVolume
apAverage trade price or VWAP for day
ltqLast trade quantity
lttLast trade time
ltddd-mm-yy Last Trade Date
tbqTrade Buy Quantity
tsqTrade Sell Quantity
bp1Best Buy Price 1
sp1Best Sell Price 1
bp2Best Buy Price 2
sp2Best Sell Price 2
bp3Best Buy Price 3
sp3Best Sell Price 3
bp4Best Buy Price 4
sp4Best Sell Price 4
bp5Best Buy Price 5
sp5Best Sell Price 5
bq1Best Buy Quantity 1
sq1Best Sell Quantity 1
bq2Best Buy Quantity 2
sq2Best Sell Quantity 2
bq3Best Buy Quantity 3
sq3Best Sell Quantity 3
bq4Best Buy Quantity 4
sq4Best Sell Quantity 4
bq5Best Buy Quantity 5
sq5Best Sell Quantity 5
bo1Best Buy Orders 1
so1Best Sell Orders 1
bo2Best Buy Orders 2
so2Best Sell Orders 2
bo3Best Buy Orders 3
so3Best Sell Orders 3
bo4Best Buy Orders 4
so4Best Sell Orders 4
bo5Best Buy Orders 5
so5Best Sell Orders 5
und_exchUnderlying Exch seg
und_tkUnderlying Token
ord_msgOrder Message
scrip_base_prcScrip Base Price
issuecapissue capital
e_dateend date
cutof_allCut off All

[#] - By Default disabled and Enabled on request basis.

Sample Success Response
{
"request_time":"12:05:21 18-05-2021",
"stat":"Ok"
,"exch":"NSE",
"tsym":"ACC-EQ",
"cname":"ACC LIMITED",
"symname":"ACC",
"seg":"EQT",
"instname":"EQ",
"isin":"INE012A01025",
"pp":"2",
"ls":"1",
"ti":"0.05",
"mult":"1",
"uc":"2093.95",
"lc":"1713.25",
"prcftr_d":"(1 / 1 ) * (1 / 1)",
"token":"22",
"lp":"0.00",
"h":"0.00",
"l":"0.00",
"v":"0",
"ltq":"0",
"ltt":"05:30:00",
"bp1":"2000.00",
"sp1":"0.00",
"bp2":"0.00",
"sp2":"0.00",
"bp3":"0.00",
"sp3":"0.00",
"bp4":"0.00",
"sp4":"0.00",
"bp5":"0.00",
"sp5":"0.00",
"bq1":"2",
"sq1":"0",
"bq2":"0",
"sq2":"0",
"bq3":"0",
"sq3":"0",
"bq4":"0",
"sq4":"0",
"bq5":"0",
"sq5":"0",
"bo1":"2",
"so1":"0",
"bo2":"0",
"so2":"0",
"bo3":"0",
"so3":"0",
"bo4":"0",
"so4":"0",
"bo5":"0",
"So5":"0"
}
Sample Failure Response
{
    "stat":"Not_Ok",
    "request_time":"10:50:54 10-12-2020",
    "emsg":"Error Occurred : 5 \"no data\""
}
curl --request POST \
  --url 'https://api.infinn.in/NorenWClientAPI/GetQuotes' \
  --header 'Authorization: Bearer PASTE_ACCESS_TOKEN_HERE' \
  --header 'Content-Type: text/plain' \
  --data 'jData={"uid":"YOUR_USER_ID"}'
Response will appear here after sending a request