v1

latestOpenAPI 3.0.42026-07-262045103.2 KB
Assets

Get Enhanced Prices for All Supported Assets

This endpoint retrieves the latest prices along with the price change and percentage change in the last 24 hours of open market for all supported assets. Assets can be sorted by price in either ascending or descending order.

For real-time price updates as they occur, rather than repeatedly polling this endpoint, use the Price Streaming endpoint.

Prices are intended for display only. For real-time trading prices, use the Soft Attestation Quote API. We do not recommend using the price feeds as an oracle for these assets. An official oracle is in development and will be documented when available. For questions, contact support@ondo.finance.

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

get/v1/assets/all/prices/latest/enhanced

Query parameters

sort'desc' | 'asc'

The sort direction for prices.

Response

OK

symbolstring required

The GM symbol of the asset.

pricestring required

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

priceChange24hstring required

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

priceChangePct24hstring required

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

timestampnumber required

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

Example response

[
  {
    "symbol": "NFLXon",
    "price": "836.26176",
    "priceChange24h": "-19.22815",
    "priceChangePct24h": "-2.247618560457364132",
    "timestamp": 1769125830623
  }
]