# 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) | Scenario | GBP balance | USD balance | Total Worth | Total Available | Overdraft Usage | Overdraft Limit | | ---------------------------------------- | ----------- | ----------- | ----------- | --------------- | --------------- | --------------- | | Positive account value with no overdraft | 2000 | 0 | 2000 | 2000 | 0 | 0 | | Positive account value with overdraft | 2000 | -100 | 1900 | 2400 | 100 | 500 | | Negative account value with overdraft | 0 | -100 | -100 | 400 | 100 | 500 | Endpoint: GET /v1/profiles/{profileId}/total-funds/{currency} Security: UserToken, PersonalToken ## Path parameters: - `profileId` (integer, required) The profile ID. - `currency` (string, required) Currency code (ISO 4217 Alphabetic Code). All values will be converted to this currency. Example: "EUR" ## Response 200 fields (application/json): - `totalWorth` (object) Total worth of the account, including cash ledger balance and valuation of any asset portfolio if invested. - `totalWorth.value` (number) Amount value. Example: 2000 - `totalWorth.currency` (string) Currency code (ISO 4217 Alphabetic Code). Example: "EUR" - `totalAvailable` (object) Total available balance, which is the sum of cash ledger balance and any approved overdraft limit. - `totalCash` (object) Total cash balance across all balances, including group balances but excluding asset portfolios. - `overdraft` (object) Overdraft details for the account. - `overdraft.limit` (object) Maximum overdraft available through an overdraft program. Zero if no approved overdraft. - `overdraft.used` (object) Portion of the approved overdraft limit currently being utilized. - `overdraft.available` (object) Amount of overdraft currently available (limit minus used). - `overdraft.availableByCurrency` (array) Available overdraft amounts converted to each currency the customer has a balance in.