List all supported equities symbols.
GET
https://<base_url>/v1/reference/symbols
none
"Authorization: Bearer <token>"
none
{
"symbol": "string",
"securityName": "string"
}
Field | Name | Type | Description |
---|---|---|---|
Symbol | symbol | string | Identifier of the security used to in various Nasdaq connectivity protocols and Nasdaq market data feeds. Typical identifiers have 1-5 character root symbol and then 1-3 characters for suffixes. Allow up to 14 characters. |
Security Name | securityName | string | The name of the security including additional information, if applicable. Examples are security type (common stock, preferred stock, etc.) or class (class A or B, etc.). Allow up to 255 characters. |
curl --location --request GET 'https://example.com/v1/reference/symbols' \
--header "Authorization: Bearer example_token"
[
{
"symbol": "ZVZZT",
"securityName": "NASDAQ TEST STOCK"
},
{
"symbol": "ZWZZT",
"securityName": "NASDAQ TEST STOCK"
},
{
"symbol": "ZXZZT",
"securityName": "NASDAQ TEST STOCK"
}
]