API

Get Started

WelcomeQuickstartExamplesChangelogSDKs and Tools

Authorization

POSTCreate personal access token

List Accounts

GETGet accounts

Account Details

GETGet account portfolio v2GETGet history

Instrument Details

GETGet all instrumentsGETGet instrument

Market Data

POSTGet quotesPOSTGet option expirationsPOSTGet option chain

Order Placement

POSTPreflight single legPOSTPreflight multi legPOSTPlace orderPOSTPlace multileg orderGETGet orderDELETECancel order

Option Details

GETGet option greeks_1
HelpFeedback
Instrument Details

Get instrument

GET/userapigateway/trading/instruments/{symbol}/{type}

Parameters

Path Parameters

string
string

Parameters

NameTypeRequiredDescription
symbolstringYes-
typestringYes-

Body

application/json

No request body defined

Responses

Response

200
application/json
instrumentrequired
tradingenum<string>required
Available options: BUY_AND_SELL,LIQUIDATION_ONLY,DISABLED
fractionalTradingenum<string>required
Available options: BUY_AND_SELL,LIQUIDATION_ONLY,DISABLED
optionTradingenum<string>required
Available options: BUY_AND_SELL,LIQUIDATION_ONLY,DISABLED
optionSpreadTradingenum<string>required
Available options: BUY_AND_SELL,LIQUIDATION_ONLY,DISABLED
instrumentDetailsunknown
The Public Individual API is for your own personal, non-commercial use. Unauthorized access is prohibited. You are responsible for all trades made via the API. Learn more
{
  "instrument": {
    "symbol": "string",
    "type": "EQUITY"
  },
  "trading": "BUY_AND_SELL",
  "fractionalTrading": "BUY_AND_SELL",
  "optionTrading": "BUY_AND_SELL",
  "optionSpreadTrading": "BUY_AND_SELL",
  "instrumentDetails": null
}
The Public Individual API is for your own personal, non-commercial use. Unauthorized access is prohibited. You are responsible for all trades made via the API. Learn more