Asset Object
Last updated
A reusable object representing a single asset in a market pair. Used in the markets endpoint for baseAssets and quoteAssets arrays.
symbol
string
yes
Asset ticker symbol e.g. "BTC", "ETH", "USD"
assetType
string
yes (baseAssets), no (quoteAssets)
Asset category. See values below.
assetType Valuescrypto
Cryptocurrency
forex
Foreign exchange currency
commodity
Physical commodity e.g. gold, oil
equity
Stock or equity
index
Market index
premarket
Pre-market or prediction market asset
dominance
Crypto dominance market e.g. BTC.D
volatility
Volatility index
{ "symbol": "BTC", "assetType": "crypto" }{ "symbol": "USD", "assetType": "forex" }baseAssets and quoteAssets are arrays to support multi-asset or basket markets. For standard pairs, each array contains a single object.
assetType is required on baseAssets and optional on quoteAssets (quote is almost always a USD stablecoin).
Last updated