v5

latestOpenAPI 3.1.02026-07-262421791.5 MB
comparison

Request a comparison quote (V3)

{% admonition type="warning" name="Deprecated" %} This endpoint is deprecated. Use the V4 comparison endpoint instead. {% /admonition %}

Request price and speed comparison data for money transfer providers on a given currency route.

get/v3/comparisons

Query parameters

sourceCurrencystring required

ISO 4217 source currency code

targetCurrencystring required

ISO 4217 target currency code

sendAmountnumber required

Amount to send in source currency

midMarketRatenumber

Current mid-market rate between the source and target currency

wiseFeenumber

Wise's fee, if the Wise quote is known

wiseEstimatedDeliverystring

Wise's estimated delivery timestamp, if the Wise quote is known

wiseQuoteCreatedTimestring

Timestamp when the Wise quote was created

payInMethodstring

Change the pay-in method of the Wise quote only (all other quotes will remain as bank transfer)

sourceCountrystring

Filter by source country (ISO 3166-1 Alpha-2 code)

targetCountrystring

Filter by target country (ISO 3166-1 Alpha-2 code)

providerCountrystring

Filter by provider country (ISO 3166-1 Alpha-2 code)

providerTypesstring[]

Filter by provider type

providersstring

Filter by specific provider aliases

excludePartnersboolean

Exclude Wise's partner banks - default true

Headers

X-External-Correlation-Idstring uuid

Optional UUID for correlating requests across systems. If provided, Wise echoes it back in the response. Maximum 36 characters. Learn more.

Response

Comparison data retrieved successfully.

sourceCurrencystring nullable

ISO 4217 source currency code

targetCurrencystring nullable

ISO 4217 target currency code

sourceCountrystring nullable

Source country (ISO 3166-1 Alpha-2 code)

targetCountrystring nullable

Target country (ISO 3166-1 Alpha-2 code)

providerCountrystring nullable

Provider country (ISO 3166-1 Alpha-2 code)

providerTypesstring[]

List of provider types included in the response

amountnumber

The comparison amount

providerTypestring nullable

Provider type filter applied to the request

Example response

{
  "sourceCurrency": "GBP",
  "targetCurrency": "EUR",
  "providerTypes": [
    "bank",
    "moneyTransferProvider"
  ],
  "amount": 10000,
  "providers": [
    {
      "id": 39,
      "alias": "wise",
      "name": "Wise",
      "logos": {
        "normal": {
          "svgUrl": "https://wise.com/public-resources/assets/logos/wise-personal/logo.svg",
          "pngUrl": "https://wise.com/public-resources/assets/logos/wise-personal/logo.png"
        },
        "inverse": {
          "svgUrl": "https://wise.com/public-resources/assets/logos/wise-personal/logo_inverse.svg",
          "pngUrl": "https://wise.com/public-resources/assets/logos/wise-personal/logo_inverse.png"
        },
        "white": {
          "svgUrl": "https://wise.com/public-resources/assets/logos/wise-personal/logo_white.svg",
          "pngUrl": "https://wise.com/public-resources/assets/logos/wise-personal/logo_white.png"
        },
        "circle": {
          "svgUrl": "https://dq8dwmysp7hk1.cloudfront.net/logos/wise-mark.svg"
        },
        "altText": "Wise"
      },
      "logo": "https://wise.com/public-resources/assets/logos/wise-personal/logo.svg",
      "type": "moneyTransferProvider",
      "quotes": [
        {
          "rate": 1.15989,
          "fee": 37.12,
          "dateCollected": "2019-10-22T14:36:43Z",
          "receivedAmount": 11555.84,
          "deliveryEstimation": {
            "duration": {
              "min": "PT20H8M16.305111S",
              "max": "PT20H8M16.305111S"
            },
            "providerGivesEstimate": true,
            "durationType": "CALENDAR",
            "deliveryDate": {
              "min": "2025-02-05T15:08:00.000000492Z",
              "max": "2025-02-05T15:08:00.000000492Z"
            }
          }
        }
      ]
    }
  ]
}