Retrieves the user's multi-currency account balance accounts. Returns all balance accounts the profile has in the types specified.
The types parameter must include at least one type. To return more than one type, comma-separate the values.
Security
UserToken or PersonalToken
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/2026Q3/profiles/{profileId}/balances
- Sandbox Environmenthttps://api.wise-sandbox.com/2026Q3/profiles/{profileId}/balances
- UserToken
- PersonalToken
curl -i -X GET \
'https://api.wise.com/2026Q3/profiles/{profileId}/balances?types=STANDARD' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'X-External-Correlation-Id: f47ac10b-58cc-4372-a567-0e02b2c3d479'OK - Successfully retrieved balances.
Headers
Echoed back when X-External-Correlation-Id was included in the request. Learn more.
Example:"f47ac10b-58cc-4372-a567-0e02b2c3d479"
Array []
Type of balance account.
STANDARD- Standard balance account. Only one per currency per profile.SAVINGS- Savings balance (Jar). Multiple allowed per currency.
Enum:"STANDARD""SAVINGS"
Example:"STANDARD"
Investment state of the balance.
NOT_INVESTED- Balance is not invested.INVESTED- Balance is invested in assets.INVESTING- Balance is being invested into assets.DIVESTING- Balance is being divested from assets.UNKNOWN- Investment state is unknown.
Enum:"NOT_INVESTED""INVESTED""INVESTING""DIVESTING""UNKNOWN"
Example:"NOT_INVESTED"
Date when the balance was last modified.
Example:"2020-05-20T14:43:16.658Z"
Response
[ { "id": 200001, "currency": "EUR", "type": "STANDARD", "name": null, "icon": null, "investmentState": "NOT_INVESTED", "amount": { "value": 310.86, "currency": "EUR" }, "reservedAmount": { "value": 0, "currency": "EUR" }, "cashAmount": { "value": 310.86, "currency": "EUR" }, "totalWorth": { "value": 310.86, "currency": "EUR" }, "creationTime": "2020-05-20T14:43:16.658Z", "modificationTime": "2020-05-20T14:43:16.658Z", "visible": true } ]