v1

latestOpenAPI 3.0.12026-07-2679100267.2 KB

Retrieve the latest exchange rates for a currency pair before initiating a transfer.

get/v1/global-payout/exchange-rates

Query parameters

fromstring required
Example:EUR

ISO 4217 currency code to convert from.

tostring required
Example:USD

ISO 4217 currency code to convert to.

regionstring

Optional trade region filter.

Headers

Authorizationstring required
Example:Bearer <token>

Bearer token for authentication.

accountIdstring required
Example:890022ce-bae0-45c1-9b9d-ee7872e6ca27

The parent accountId of the business.

Response

Exchange rates retrieved successfully.

codestring
descriptionstring

Example response

{
  "code": "00",
  "description": "Successful",
  "data": {
    "rates": [
      {
        "exchangeRateId": "01kkk7pab9mjt70wvk6pzk8mzx",
        "currencyPairName": "EUR/USD",
        "bidRate": "$1.13",
        "askRate": "$1.14",
        "midRate": "$1.14",
        "createdAt": "2026-03-13T09:15:57.161946"
      }
    ]
  }
}