v1

latestOpenAPI 3.0.42026-07-262045103.2 KB
Assets

Get Current Price for an Asset

This endpoint retrieves the latest price for a specific asset. Note that the primaryMarket represents the on-chain token while the underlyingMarket represents the off-chain collateralized stock.

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/{symbol}/prices/latest

Path parameters

symbolstring required

The GM token symbol

Response

Price fetched successfully

timestampnumber required

The Unix timestamp in milliseconds, representing the time of the price data retrieval.

Example response

{
  "primaryMarket": {
    "symbol": "AAPLon",
    "price": "12.345"
  },
  "underlyingMarket": {
    "ticker": "AAPL",
    "price": "12.345"
  },
  "timestamp": 1746655938
}