Bank account detail endpoints are provided to create, view, and manage bank account details for an account balance.
Via the Multi-Currency Accounts and Balance Accounts sections of this guide, you will know the profile and multi-currency account, as well as the specific balance accounts created. The next optional steps are:
- Retrieve bank account details - View existing bank account details for the profile.
- Create a bank account details order - Request bank account details for a balance currency.
- List bank account detail orders - Check the status of open orders.
This endpoint returns all AVAILABLE and ACTIVE account details for a profile, including receive options with local and international details. Example bank account details (with id: null) are returned for currencies where details have not been requested.
- Production Environmenthttps://api.wise.com/v1/profiles/{profileId}/account-details
- Sandbox Environmenthttps://api.wise-sandbox.com/v1/profiles/{profileId}/account-details
curl -i -X GET \
https://api.wise.com/v1/profiles/12345678/account-details \
-H 'Authorization: Bearer <YOUR_JWT_HERE>'For request/response details, see the API reference.
Creates an order to issue bank account details. The order uses the same currency as a previously created balance. Fulfilling all requirements will complete the order (status = DONE).
Requirement statuses:
PENDING_USER— Requires action from the userPENDING_TW— Requires action from WiseDONE— Completed
Common requirement types:
VERIFICATION— User must be fully verifiedTOP_UP— A fee must be paid via wise.com
- Production Environmenthttps://api.wise.com/v1/profiles/{profileId}/account-details-orders
- Sandbox Environmenthttps://api.wise-sandbox.com/v1/profiles/{profileId}/account-details-orders
curl -i -X POST \
https://api.wise.com/v1/profiles/12345678/account-details-orders \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"currency": "EUR"
}'For request/response details, see the API reference.
Returns the bank account assignment requests for a profile and multi-currency account.
- Production Environmenthttps://api.wise.com/v3/profiles/{profileId}/account-details-orders
- Sandbox Environmenthttps://api.wise-sandbox.com/v3/profiles/{profileId}/account-details-orders
curl -i -X GET \
'https://api.wise.com/v3/profiles/12345678/account-details-orders?currency=GBP' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>'For request/response details, see the API reference.