---
title: "Get Current Price for an Asset"
method: GET
path: "/v1/assets/{symbol}/prices/latest"
tags: ["Assets"]
---

# Get Current Price for an Asset

`GET /v1/assets/{symbol}/prices/latest`

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](https://docs.ondo.finance/api-reference/price-streaming) endpoint.

Prices are intended for display only. For real-time trading prices, use the [Soft Attestation Quote](https://docs.ondo.finance/api-reference/attestations/request-a-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](mailto:support@ondo.finance).

For caching details on this endpoint, please see: [Endpoint Caching](https://docs.ondo.finance/api-reference/endpoint-caching).

## Path parameters

- `symbol` string, required

## Response `200`

Price fetched successfully

- AssetPrice
  - `primaryMarket` object, required
    - `symbol` string — The GM symbol of the asset.
    - `price` string — The token price, represented as a string-encoded decimal with up to 18 digits after the decimal point.
  - `underlyingMarket` object, required
    - `ticker` string — The stock ticker associated with the asset.
    - `price` string — The stock price, represented as a string-encoded decimal with up to 18 digits after the decimal point.
  - `timestamp` number, required — The Unix timestamp in milliseconds, representing the time of the price data retrieval.

## Other responses

- `400` — One of the request parameters is invalid. Please see the returned message and documentation for details.
- `401` — Missing or invalid API key.
- `404` — The provided asset symbol does not exist and cannot be found. Please see the returned message and documentation for details.
- `429` — The account has exceeded its rate limits. Please see the returned message and documentation for details.
- `500` — An internal server error occurred. Please see the returned message and documentation for details.

---

[API](https://skmtc.net/ondo/apis/gm-backend-api.md) · [All operations](https://skmtc.net/ondo/apis/gm-backend-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/ondo/gm-backend-api/versions/12953a4908b2/schema)
