Portal Community

getAllTickers

Latest price and 24-hour volume for every supported ticker pair (no parameters).

Only source of volume: None of the Asset Pricing operations include trading volume — getAllTickers is the only endpoint on this node that returns it.
lastPrice is a JSON number, not a string: Every other price field on this node is an 18-decimal-place string. lastPrice here is a plain JSON number, so don't assume the same string-parsing logic applies across operations.

Example response:

{
  "tickers": [
    { "tickerId": "aaplon_usdon", "baseCurrency": "AAPLon", "targetCurrency": "USDon",
      "lastPrice": 150.25, "baseVolume": "125430.500000000000000000", "targetVolume": "18845213.750000000000000000" }
  ],
  "count": 1
}
FieldMeaning
tickerIdPair identifier in base_target form, e.g. aaplon_usdon.
baseCurrency / targetCurrencyThe two sides of the pair.
lastPriceLatest trade price — a JSON number (see warning above).
baseVolume / targetVolume24h volume in each currency, as 18-decimal-place strings.
Tip: If you need both a price and its volume in one report row, join getAllTickers's lastPrice/baseVolume with getPrice's dual-market breakdown by matching on symbol — the two endpoints don't return the same shape.