---
title: "Vault-scoped oracle prices"
method: GET
path: "/v3/oracles/prices"
tags: ["Oracles"]
---

# Vault-scoped oracle prices

`GET /v3/oracles/prices`

Supports exact mode (`chainId + vault + asset`) and list mode (`chainId` + pagination).
- Exact mode requires the full key.
- Exact mode returns `200` with `price: null` when the tuple is known but currently unpriced.
- Non-null `price` values are exact contract-derived prices encoded as 18-decimal bigint strings in `unitOfAccount` terms.
- Exact mode returns `404` only when the `(chainId, vault, asset)` tuple is unknown.
- Partial exact key requests return `400`.
- List mode returns flat rows sorted by `vault ASC, asset ASC`.

## Query parameters

- `chainId` integer, required
- `vault` string
- `asset` string
- `offset` integer
- `limit` integer

## Response `200`

Oracle prices

- object
  - `data` union
    - object
      - `chainId` integer
      - `vault` string
      - `asset` string
      - `price` string, nullable
      - `unitOfAccount` string, nullable
      - `unitOfAccountDecimals` integer, nullable
      - `source` 'onchain' | 'offchain' | 'hardcoded', nullable
      - `timestamp` string, date-time, nullable
    - object[]
      - `chainId` integer
      - `vault` string
      - `asset` string
      - `price` string, nullable
      - `unitOfAccount` string, nullable
      - `unitOfAccountDecimals` integer, nullable
      - `source` 'onchain' | 'offchain' | 'hardcoded', nullable
      - `timestamp` string, date-time, nullable
  - `meta` PaginationMeta
    - `total` integer — Exact total count when the endpoint provides one.
    - `hasMore` boolean — Indicates whether another page exists beyond the current page.
    - `offset` integer
    - `limit` integer — Echoed page size after endpoint-side clamping.
    - `timestamp` string, date-time, required
    - `chainId` string — Comma-separated chain IDs for multi-chain responses.
    - `degradedProviders` string[] — Live providers whose data is incomplete in this response.

## Other responses

- `400` — Bad request
- `404` — Not found
- `429` — Rate limited
- `500` — Internal server error
- `502` — Upstream dependency failure

---

[API](https://skmtc.dev/euler/apis/euler-data-api-v3.md) · [All operations](https://skmtc.dev/euler/apis/euler-data-api-v3/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/euler/euler-data-api-v3/revisions/9573a5fbd4a6/schema)
