Visa · Example Payload

Visa Foreign Exchange Rates Example

AccountsBankingCredit CardsDigital CommerceDigital WalletsFintechForeign ExchangeFraud PreventionMerchantsMoney MovementPaymentsTokenizationFortune 500

Visa Foreign Exchange Rates Example is an example object payload from Visa, with 2 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

requestresponse

Example Payload

Raw ↑
{
  "request": {
    "method": "POST",
    "path": "/forexrates/v2/foreignexchangerates",
    "headers": {
      "Content-Type": "application/json"
    },
    "body": {
      "destinationCurrencyCode": "EUR",
      "sourceCurrencyCode": "USD",
      "sourceAmount": "100.00",
      "rateProductCode": "A",
      "acquiringBin": "408999",
      "acquirerCountryCode": "840"
    }
  },
  "response": {
    "status": 200,
    "body": {
      "destinationCurrencyCode": "EUR",
      "sourceCurrencyCode": "USD",
      "conversionRate": 0.921543,
      "destinationAmount": "92.15",
      "sourceAmount": "100.00",
      "markUpRate": 0.02,
      "fxRateTimestamp": "2026-05-03T12:00:00.000Z"
    }
  }
}