This endpoint allows conversion and movement of funds between balance accounts.
Convert across balance accounts: Convert funds between two STANDARD balance accounts in different currencies. Requires a quote created with "payOut": "BALANCE".
Move money between balances:
- Add money to a same-currency jar (move from
STANDARDtoSAVINGSwithout conversion) - Add money to another-currency jar (convert money using a quote)
- Withdraw money from a jar (move from
SAVINGStoSTANDARDwithout conversion)
Either amount or quoteId is required. Use quoteId for cross-currency movements.
Optional UUID for correlating requests across systems. If provided, Wise echoes it back in the response. Maximum 36 characters. Learn more.
Quote ID. Required for cross-currency movements. Quote must be created with payOut: BALANCE.
Source balance ID. Required when moving between balances (with targetBalanceId).
Target balance ID. Required when moving between balances (with sourceBalanceId).
- Production Environmenthttps://api.wise.com/2026Q3/profiles/{profileId}/balance-movements
- Sandbox Environmenthttps://api.wise-sandbox.com/2026Q3/profiles/{profileId}/balance-movements
- UserToken
- PersonalToken
- Convert between currencies
- Move within same currency
curl -i -X POST \
'https://api.wise.com/2026Q3/profiles/{profileId}/balance-movements' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'Content-Type: application/json' \
-H 'X-External-Correlation-Id: f47ac10b-58cc-4372-a567-0e02b2c3d479' \
-H 'X-idempotence-uuid: 497f6eca-6276-4993-bfeb-53cbbbba6f08' \
-d '{
"quoteId": "00000000-0000-0000-0000-000000000000"
}'Created - Movement completed successfully.
Echoed back when X-External-Correlation-Id was included in the request. Learn more.
{ "id": 30000001, "type": "CONVERSION", "state": "COMPLETED", "balancesAfter": [ { "id": 1, "value": 10000594.71, "currency": "GBP" } ], "creationTime": "2017-11-21T09:55:49.275Z", "sourceAmount": { "value": 113.48, "currency": "EUR" }, "targetAmount": { "value": 100, "currency": "GBP" }, "rate": 0.88558, "feeAmounts": [ { "value": 0.56, "currency": "EUR" } ], "steps": [ { "id": 369588, "type": "CONVERSION", "creationTime": "2017-11-21T09:55:49.276Z", "balancesAfter": [ … ], "sourceAmount": { … }, "targetAmount": { … }, "fee": { … }, "rate": 0.88558 } ] }