v1

latestOpenAPI 3.0.22026-07-26128245430.3 KB
Exchange Rates

Get current exchange rate between two currencies.

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
get/exchange_rates

Query parameters

from'brl' | 'cop' | 'eur' | 'gbp' | 'mxn' | 'usd' | 'usdt' required

The currency code to convert from.

to'brl' | 'cop' | 'eur' | 'gbp' | 'mxn' | 'usd' | 'usdt' required

The currency code to convert to.

Response

The exchange rate information.

midmarket_ratestring

The midmarket exchange rate.

buy_ratestring

The rate for buying the target currency, including Bridge's fee.

sell_ratestring

The rate for selling the target currency, including Bridge's fee.

updated_atstring date-time

The timestamp when the exchange rate was last collected from the market data provider.

Example response

{
  "midmarket_rate": "0.93425",
  "buy_rate": "0.9389",
  "sell_rate": "0.9296",
  "updated_at": "2026-01-15T12:00:00.000Z"
}