Opens a balance within the specified profile, in the currency and type specified in the request.
For STANDARD balances, only one can be created per currency. For SAVINGS balances, multiple in the same currency can be opened.
When creating a SAVINGS type balance, a name is required.
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
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"
- Production Environmenthttps://api.wise.com/2026Q3/profiles/{profileId}/balances
- Sandbox Environmenthttps://api.wise-sandbox.com/2026Q3/profiles/{profileId}/balances
- UserToken
- PersonalToken
curl -i -X POST \
'https://api.wise.com/2026Q3/profiles/{profileId}/balances' \
-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 '{
"currency": "EUR",
"type": "STANDARD"
}'Created - Balance successfully created.
Headers
Echoed back when X-External-Correlation-Id was included in the request. Learn more.
Example:"f47ac10b-58cc-4372-a567-0e02b2c3d479"
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 }