---
title: "Get current exchange rate between two currencies."
method: GET
path: "/exchange_rates"
tags: ["Exchange Rates"]
---

# Get current exchange rate between two currencies.

`GET /exchange_rates`

Returns the current exchange rate from the "from" currency to the "to" currency.
The exchange rate is updated roughly every 30s. Note that as of this writing,
Bridge does not offer a "quote" by which a user can lock in a rate for a given
amount of time. This is provided only as a courtesy to estimate what you are
likely to get in a subsequent transfer request that involves currency exchange.

As of March 2026, we support:
  - `USD <> BRL`
  - `USD <> COP`
  - `USD <> EUR`
  - `USD <> GBP`
  - `USD <> MXN`
  - `USD <> USDT`

## Query parameters

- `from` 'brl' | 'cop' | 'eur' | 'gbp' | 'mxn' | 'usd' | 'usdt', required
- `to` 'brl' | 'cop' | 'eur' | 'gbp' | 'mxn' | 'usd' | 'usdt', required

## Response `200`

The exchange rate information.

- object
  - `midmarket_rate` string — The midmarket exchange rate.
  - `buy_rate` string — The rate for buying the target currency, including Bridge's fee.
  - `sell_rate` string — The rate for selling the target currency, including Bridge's fee.
  - `updated_at` string, date-time — The timestamp when the exchange rate was last collected from the market data provider.

---

[API](https://skmtc.net/bridge/apis/bridge-api.md) · [All operations](https://skmtc.net/bridge/apis/bridge-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/bridge/bridge-api/revisions/570998bde3b5/schema)
