---
title: "List Current Rates"
method: GET
path: "/v1/exchange/rates"
tags: ["Exchange Rates"]
---

# List Current Rates

`GET /v1/exchange/rates`

Retrieve the latest exchange rates for one or more specified currency pairs. The returned rates reflect the actual conversion rates applied by UQPAY.

##### Usage Guidelines
- If `currency_pairs` is not provided, exchange rates for all available currency pairs will be returned.

- If the request includes unsupported currency pairs, they will be listed in the `unavailable_currency_pairs` field of the response.

## Query parameters

- `currency_pairs` string

## Headers

- `x-on-behalf-of` string

## Response `200`

OK - Successfully retrieved a list of current rates.

- object
  - `data` object
    - `rates` RateItem[] — The rate records currently available for the requested currency pairs, or all available pairs if no filter was provided.
      - `buy_price` string — The buy price, rounded to 4 decimal places.
      - `sell_price` string — The sell price, rounded to 4 decimal places.
      - `currency_pair` string — The currency pair that the rate is for. The order of currencies follows market conventions where applicable (e.g., `USDJPY` instead of `JPYUSD`).
    - `unavailable_currency_pairs` string[] — Currency pairs from the request that are not supported or have no available rates at the moment.
    - `last_updated` string, date-time — The timestamp of the last rate update. Timestamp follows the [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) standard.

---

[API](https://skmtc.dev/uqpay/apis/authentication-api.md) · [All operations](https://skmtc.dev/uqpay/apis/authentication-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/uqpay/authentication-api/revisions/cef532a10777/schema)
