Reference Data

Get brokerage instruments

get
https://api.snaptrade.com/api/v1/brokerages/{brokerageId}/instruments

Returns a list of all brokerage instruments available for a given brokerage. Not all brokerages support this. The ones that don't will return an empty list.

Execute an API Request

Path
brokerageIdstring (format: uuid)required

Unique identifier for the brokerage.

Authorization
Request
Installation
$
npm install snaptrade-typescript-sdk
1
Loading...

Response fields

object
instrumentsarray of objects
1
{
2
"instruments": [
3
{
4
"symbol": "AAPL",
5
"exchange_mic": "XNAS",
6
"tradeable": true,
7
"fractionable": true,
8
"universal_symbol_id": "2bcd7cc3-e922-4976-bce1-9858296801c3"
9
}
10
]
11
}