Request price and speed comparison data for money transfer providers on a given currency route.
You must provide either sendAmount or recipientGetsAmount (but not both).
Optional UUID for correlating requests across systems. If provided, Wise echoes it back in the response. Maximum 36 characters. Learn more.
Example:f47ac10b-58cc-4372-a567-0e02b2c3d479
- Production Environmenthttps://api.wise.com/v4/comparisons
- Sandbox Environmenthttps://api.wise-sandbox.com/v4/comparisons
curl -i -X GET \
'https://api.wise.com/v4/comparisons?sourceCurrency=GBP&targetCurrency=EUR&sendAmount=10000&recipientGetsAmount=0&midMarketRate=0&wiseFee=0&wiseEstimatedDelivery=string&wiseQuoteCreatedTime=string&payInMethod=string&sourceCountry=string&targetCountry=string&providerCountry=string&filter=POPULAR&numberOfProviders=0&providerTypes=bank&providers=string&excludePartners=true&includeWise=true' \
-H 'X-External-Correlation-Id: f47ac10b-58cc-4372-a567-0e02b2c3d479'Comparison data retrieved successfully.
Headers
Echoed back when X-External-Correlation-Id was included in the request. Learn more.
Example:"f47ac10b-58cc-4372-a567-0e02b2c3d479"
List of provider types included in the response
Example:
[ "bank", "moneyTransferProvider" ]
Response
{ "sourceCurrency": "GBP", "targetCurrency": "EUR", "sourceCountry": null, "targetCountry": null, "providerCountry": null, "providerTypes": [ "bank", "moneyTransferProvider" ], "amount": 10000, "amountType": "SEND", "providers": [ { "id": 39, "alias": "wise", "name": "Wise", "logos": { … }, "type": "moneyTransferProvider", "partner": false, "quotes": [ … ] }, { "id": 1, "alias": "barclays", "name": "Barclays", "logos": { … }, "type": "bank", "partner": false, "quotes": [ … ] } ] }