v5

latestOpenAPI 3.1.02026-07-262421791.5 MB
balance

Get Total Funds

Provides an overview of your account's total valuation and available liquidity across all balances.

Returns total worth, total available (including overdraft), total cash, and overdraft details.

Example (Assuming GBP and USD has 1:1 exchange rate)

ScenarioGBP balanceUSD balanceTotal WorthTotal AvailableOverdraft UsageOverdraft Limit
Positive account value with no overdraft200002000200000
Positive account value with overdraft2000-10019002400100500
Negative account value with overdraft0-100-100400100500
get/v1/profiles/{profileId}/total-funds/{currency}

Path parameters

profileIdinteger required

The profile ID.

currencystring required

Currency code (ISO 4217 Alphabetic Code). All values will be converted to this currency.

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

OK - Successfully retrieved total funds.

Example response

{
  "totalWorth": {
    "value": 2000,
    "currency": "EUR"
  },
  "totalAvailable": {
    "value": 2500,
    "currency": "EUR"
  },
  "totalCash": {
    "value": 2000,
    "currency": "EUR"
  },
  "overdraft": {
    "limit": {
      "value": 500,
      "currency": "EUR"
    },
    "used": {
      "currency": "EUR"
    },
    "available": {
      "value": 500,
      "currency": "EUR"
    },
    "availableByCurrency": [
      {
        "value": 500,
        "currency": "EUR"
      }
    ]
  }
}