v5

latestOpenAPI 3.1.02026-07-262421791.5 MB
balance

Get account balance (v1)

{% admonition type="warning" %} This endpoint is deprecated. Use the v4 Balances endpoint instead. {% /admonition %}

Get available balances for all activated currencies in your multi-currency account.

get/v1/borderless-accounts

Query parameters

profileIdinteger required

Your profile ID.

Headers

X-External-Correlation-Idstring uuid

Optional UUID for correlating requests across systems. If provided, Wise echoes it back in the response. Maximum 36 characters. Learn more.

Response

Array of borderless account objects with balances.

idinteger

Multi-currency account ID.

profileIdinteger

Personal or business profile ID.

recipientIdinteger

Recipient ID you can use for a multi-currency account deposit.

creationTimestring date-time

Date when multi-currency account was opened.

modificationTimestring date-time

Date when multi-currency account setup was modified.

activeboolean

Is multi-currency account active or inactive.

eligibleboolean

Ignore.

Example response

[
  {
    "id": 64,
    "profileId": 33333333,
    "recipientId": 13828530,
    "creationTime": "2018-03-14T12:31:15.678Z",
    "modificationTime": "2018-03-19T15:19:42.111Z",
    "active": true,
    "eligible": true,
    "balances": [
      {
        "balanceType": "AVAILABLE",
        "currency": "GBP",
        "amount": {
          "value": 10999859,
          "currency": "GBP"
        },
        "reservedAmount": {
          "currency": "GBP"
        },
        "bankDetails": {
          "id": 90,
          "currency": "EUR",
          "bankCode": "DEKTDE7GXXX",
          "accountNumber": "DE51 7001 1110 6050 1008 91",
          "swift": "DEKTDE7GXXX",
          "iban": "DE51 7001 1110 6050 0008 91",
          "bankName": "Handelsbank",
          "accountHolderName": "Oliver Wilson",
          "bankAddress": {
            "addressFirstLine": "Elsenheimer Str. 41",
            "postCode": "80687",
            "city": "München",
            "country": "Germany"
          }
        }
      }
    ]
  }
]