Skip to main content
GET
/
v1
/
tickers
Get Price and Volume Data for All Supported Tickers
curl --request GET \
  --url https://api.gm.ondo.finance/v1/tickers \
  --header 'x-api-key: <api-key>'
[
  {
    "tickerId": "TSLAon_USDon",
    "baseCurrency": "TSLAon",
    "targetCurrency": "USDon",
    "lastPrice": 338.42375,
    "baseVolume": 72.720573083,
    "targetVolume": 24610.369044819
  },
  {
    "tickerId": "AAPLon_USDon",
    "baseCurrency": "AAPLon",
    "targetCurrency": "USDon",
    "lastPrice": 228.195452051,
    "baseVolume": 2761.011833446,
    "targetVolume": 630050.34345192
  },
  "..."
]

Authorizations

x-api-key
string
header
required

Response

OK

tickerId
string
required

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

Example:

"aaplon_usdon"

baseCurrency
string
required

The GM symbol of the base asset.

Example:

"AAPLon"

targetCurrency
string
required

The GM symbol of the target asset.

Example:

"USDon"

lastPrice
number
required

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

Example:

12.34

baseVolume
number
required

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

Example:

100

targetVolume
number
required

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

Example:

250