Assets
Full supported asset list with metadata
Returns the complete list of supported tickers with metadata. Available on all tiers. Does not count against request limits.
Response Fields
| Field | Type | Description |
|---|---|---|
assets | array | Array of asset objects |
total_count | integer | Total supported assets |
asset_classes | object | Breakdown by asset class (stock, crypto, etf counts) |
Asset Object
| Field | Type | Description |
|---|---|---|
ticker | string | Asset symbol |
name | string | Full name |
asset_class | string | stock, crypto, or etf |
sector | string | Sector or category |
exchange | string | Exchange |
Example
GET /v1/assets
{
"assets": [
{
"ticker": "AAPL",
"name": "Apple Inc.",
"asset_class": "stock",
"sector": "Technology",
"exchange": "NASDAQ"
},
{
"ticker": "BTCUSD",
"name": "Bitcoin",
"asset_class": "crypto",
"sector": "Cryptocurrency",
"exchange": "Crypto"
}
],
"total_count": 648,
"asset_classes": {
"stock": 500,
"crypto": 50,
"etf": 98
}
}