logo
Reference Data

Get details of a symbol

get
https://api.snaptrade.com/api/v1/symbols/{query}

Returns the Universal Symbol object specified by the ticker or the universal_symbol_id.

Execute an API Request

Path
querystringrequired

The ticker or universal_symbol_id of the UniversalSymbol to get.

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

Response fields

object

Universal symbol

idstring (format: uuid)
symbolstring
raw_symbolstring
descriptionstring or null
currencyobject

Currency

exchangeobject

Stock Exchange

typeobject

Security Type

currenciesarray of objects
figi_codestring or null
figi_instrumentobject or null

Open FIGI Identifiers

1
{
2
"id": "2bcd7cc3-e922-4976-bce1-9858296801c3",
3
"symbol": "VAB.TO",
4
"raw_symbol": "VAB",
5
"description": "VANGUARD CDN AGGREGATE BOND INDEX ETF",
6
"currency": {
7
"id": "87b24961-b51e-4db8-9226-f198f6518a89",
8
"code": "USD",
9
"name": "US Dollar"
10
},
11
"exchange": {
12
"id": "2bcd7cc3-e922-4976-bce1-9858296801c3",
13
"code": "TSX",
14
"mic_code": "XTSE",
15
"name": "Toronto Stock Exchange",
16
"timezone": "America/New_York",
17
"start_time": "09:30:00",
18
"close_time": "16:00:00",
19
"suffix": ".TO"
20
},
21
"type": {
22
"id": "2bcd7cc3-e922-4976-bce1-9858296801c3",
23
"code": "cs",
24
"description": "Common Stock",
25
"is_supported": true
26
},
27
"currencies": [
28
{
29
"id": "87b24961-b51e-4db8-9226-f198f6518a89",
30
"code": "USD",
31
"name": "US Dollar"
32
}
33
],
34
"figi_code": "BBG000B9XRY4",
35
"figi_instrument": {
36
"figi_code": "BBG000B9Y5X2",
37
"figi_share_class": "BBG001S5N8V8"
38
}
39
}