v1

latestOpenAPI 3.0.42026-07-262045103.2 KB
Tickers

Get Price and Volume Data for All Supported Tickers

This endpoint retrieves the latest price and volume data for all supported tickers. A ticker represents a specific asset in the market.

For caching details on this endpoint, please see: Endpoint Caching.

get/v1/tickers

Response

OK

tickerIdstring required

The identifier of a ticker, formatted as <base>_<target>.

baseCurrencystring required

The GM symbol of the base asset.

targetCurrencystring required

The GM symbol of the target asset.

lastPricenumber required

The last transacted price of base currency based on given target currency.

baseVolumenumber required

The 24 hour trading volume for the pair (unit in base).

targetVolumenumber required

The 24 hour trading volume for the pair (unit in target).

Example response

[
  {
    "tickerId": "aaplon_usdon",
    "baseCurrency": "AAPLon",
    "targetCurrency": "USDon",
    "lastPrice": 12.34,
    "baseVolume": 100,
    "targetVolume": 250
  }
]