GET
/v3/reference/tickers/{ticker}
Reference Ticker Overview
Ticker overview (multi-asset; used for forex tickers too).
Endpoint Details
| HTTP Method | GET |
|---|---|
| Path | /v3/reference/tickers/{ticker} |
| Version | v3 |
| Minimum Plan | free |
Path Parameters
| Parameter | Required | Description | Example |
|---|---|---|---|
ticker |
Required | The stock ticker symbol (e.g., AAPL, MSFT) | AAPL |
Query Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
api_key |
string | Required | Your API key for authentication |
asset_class |
string | Optional | Filter by asset class (stocks, options, forex, crypto) |
locale |
string | Optional | Filter by locale/market (default: us) |
limit |
integer | Optional | Maximum number of results |
cursor |
string | Optional | Pagination cursor for next page |
Example Request
curl "https://mail.tradeiqai.com/api/v3/reference/tickers/AAPL?api_key=YOUR_API_KEY"
Note: Replace YOUR_API_KEY with your actual API key.
Response Attributes
| Attribute | Type | Description |
|---|---|---|
ok | boolean | Indicates if the request was successful (e.g., 1) |
data | object | Response data object |
data.status | string | Response status (typically "OK") (e.g., OK) |
data.results | object | Array or object containing the endpoint-specific data |
data.results.ticker | string | String value (e.g., AAPL) |
data.results.name | string | String value (e.g., Apple Inc.) |
data.results.market | string | String value (e.g., stocks) |
data.results.locale | string | String value (e.g., us) |
data.results.primary_exchange | string | String value (e.g., XNAS) |
data.results.type | string | String value (e.g., CS) |
data.results.active | boolean | Boolean value (e.g., 1) |
data.results.currency_name | string | String value (e.g., usd) |
data.results.cik | string | String value (e.g., 0000320193) |
data.results.composite_figi | string | String value (e.g., BBG000B9XRY4) |
data.results.share_class_figi | string | String value (e.g., BBG001S5N8V8) |
data.results.market_cap | integer | Integer (e.g., 4017934395200) |
data.results.phone_number | string | String value (e.g., (408) 996-1010) |
data.results.address | object | |
data.results.address.properties | unknown | |
data.results.description | string | String value (e.g., Apple is among the largest companies in the world,...) |
data.results.sic_code | string | String value (e.g., 3571) |
data.results.sic_description | string | String value (e.g., ELECTRONIC COMPUTERS) |
data.results.ticker_root | string | String value (e.g., AAPL) |
data.results.homepage_url | string | String value (e.g., https://www.apple.com) |
data.results.total_employees | integer | Integer (e.g., 166000) |
data.results.list_date | string | String value (e.g., 1980-12-12) |
data.results.branding | object | |
data.results.branding.properties | unknown | |
data.results.share_class_shares_outstanding | integer | Integer (e.g., 14681140000) |
data.results.weighted_shares_outstanding | integer | Integer (e.g., 14681140000) |
data.results.round_lot | integer | Integer (e.g., 100) |
Example Response
{
"ok": true,
"data": {
"status": "OK",
"results": {
"ticker": "AAPL",
"name": "Apple Inc.",
"market": "stocks",
"locale": "us",
"primary_exchange": "XNAS",
"type": "CS",
"active": true,
"currency_name": "usd",
"cik": "0000320193",
"composite_figi": "BBG000B9XRY4",
"share_class_figi": "BBG001S5N8V8",
"market_cap": 4017934395200,
"phone_number": "(408) 996-1010",
"address": {
"address1": "ONE APPLE PARK WAY",
"city": "CUPERTINO",
"state": "CA",
"postal_code": "95014"
},
"description": "Apple is among the largest companies in the world, with a broad portfolio of hardware and software products targeted at consumers and businesses. Apple's iPhone makes up a majority of the firm sales, and Apple's other products like Mac, iPad, and Watch are designed around the iPhone as the focal point of an expansive software ecosystem. Apple has progressively worked to add new applications, like streaming video, subscription bundles, and augmented reality. The firm designs its own software and semiconductors while working with subcontractors like Foxconn and TSMC to build its products and chips. Slightly less than half of Apple's sales come directly through its flagship stores, with a majority of sales coming indirectly through partnerships and distribution.",
"sic_code": "3571",
"sic_description": "ELECTRONIC COMPUTERS",
"ticker_root": "AAPL",
"homepage_url": "https://www.apple.com",
"total_employees": 166000,
"list_date": "1980-12-12",
"branding": {
"logo_url": "https://api.tradeiqai.com/v1/reference/company-branding/logo/e51ceb24dcab02916610d87a7fff5309.svg",
"icon_url": "https://api.tradeiqai.com/v1/reference/company-branding/icon/cd8cb26bc25c99e421f076bd1c513cde.png"
},
"share_class_shares_outstanding": 14681140000,
"weighted_shares_outstanding": 14681140000,
"round_lot": 100
}
}
}