Currency Pair
Endpoints
The Currency Pair resource
Fields
sourceCurrencies.currencyCodetext
Source currency code
sourceCurrencies.maxInvoiceAmountdecimal
Maximum allowed transfer amount in source currency
targetCurrencies.currencyCodetext
Target currency code
targetCurrencies.minInvoiceAmountdecimal
Minimum allowed transfer amount in source currency for this pair.
targetCurrencies.fixedTargetPaymentAllowedboolean
Can you setup fixed rate payments or not.
Currency Pair Object
{"sourceCurrencies": [{"currencyCode": "GBP","maxInvoiceAmount": 1000000,"targetCurrencies": [{"currencyCode": "EUR","minInvoiceAmount": 1,"fixedTargetPaymentAllowed": true},{"currencyCode": "INR","minInvoiceAmount": 1,"fixedTargetPaymentAllowed": true},{"currencyCode": "USD","minInvoiceAmount": 1,"fixedTargetPaymentAllowed": true},...{"currencyCode": "VND","minInvoiceAmount": 1,"fixedTargetPaymentAllowed": true},{"currencyCode": "ZAR","minInvoiceAmount": 1,"fixedTargetPaymentAllowed": true}],"totalTargetCurrencies": 47}],"total": 19}
Get all currency pairs allowed for transfers
GET /v1/currency-pairs
Get list of allowed currency pairs that you can set up in your transfers.
Response
Returns a currency pair object.
Example Request
curl -X GET https://api.sandbox.transferwise.tech/v1/currency-pairs \-H 'Authorization: Bearer {{API token}}'