Assets

Full supported asset list with metadata

GET https://api.tickerapi.ai/v1/assets

Returns the complete list of supported tickers with metadata. Available on all tiers. Does not count against request limits.

Response Fields

FieldTypeDescription
assetsarrayArray of asset objects
total_countintegerTotal supported assets
asset_classesobjectBreakdown by asset class (stock, crypto, etf counts)

Asset Object

FieldTypeDescription
tickerstringAsset symbol
namestringFull name
asset_classstringstock, crypto, or etf
sectorstringSector or category
exchangestringExchange

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 } }