Get details for an equities symbol.
GET
https://<base_url>/v1/reference/symbol/<symbol>
<symbol>
- Identifier for the security
"Authorization: Bearer <token>"
none
{
"symbol": "string",
"securityName": "string",
"listingExchange": "string"
"etf": boolean,
"ipoFlag": "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. |
Listing Exchange | listingExchange | string | The listing venue or market of a security (see table below). |
ETF | etf | boolean | Is this security an Exchange Traded Fund (ETF). |
IPO Flag | ipoFlag | string | For Nasdaq-Listed securities, instrument is set up as a new IPO security: Y or N. |
Code | Value |
---|---|
Q | The Nasdaq Stock Market |
N | NYSE |
A | NYSE American |
P | NYSE Arca |
Z | BATS |
V | Investors’ Exchange LLC |
curl --location --request GET 'https://example.com/v1/reference/symbol/ZXZZT' \
--header "Authorization: Bearer example_token"
{
"symbol": "ZXZZT",
"securityName": "NASDAQ TEST STOCK",
"etf": false,
"listingExchange": "Q",
"ipoFlag": "N",
}