Skip to main content
GET
/
v1
/
assets
/
all
/
prices
/
latest
/
enhanced
Get Enhanced Prices for All Supported Assets
curl --request GET \
  --url https://api.gm.ondo.finance/v1/assets/all/prices/latest/enhanced \
  --header 'x-api-key: <api-key>'
[
  {
    "symbol": "NFLXon",
    "price": "860.66471",
    "priceChange24h": "26.80883",
    "priceChangePct24h": "3.215043587628116264",
    "timestamp": 1769190970623
  },
  {
    "symbol": "QQQon",
    "price": "533.707886795396811068",
    "priceChange24h": "0.175407218134272389",
    "priceChangePct24h": "0.032876577312266724",
    "timestamp": 1769190970623
  },
  "..."
]

Authorizations

x-api-key
string
header
required

Query Parameters

sort
enum<string>
default:desc

The sort direction for prices.

Available options:
desc,
asc

Response

OK

symbol
string
required

The GM symbol of the asset.

Example:

"NFLXon"

price
string
required

The token price, represented as a string-encoded decimal with up to 18 digits after the decimal point.

Example:

"836.26176"

priceChange24h
string
required

The price change in the last 24 hours of open market.

Example:

"-19.22815"

priceChangePct24h
string
required

The percentage change in price over the last 24 hours of open market.

Example:

"-2.247618560457364132"

timestamp
number
required

The Unix timestamp in milliseconds when the data was last updated.

Example:

1769125830623