---
title: "Retrieve Account Cash"
method: GET
path: "/accounts/{accountID}/summary/money"
tags: ["Accounts"]
---

# Retrieve Account Cash

`GET /accounts/{accountID}/summary/money`

Retrieves an Account Cash details by accountID.

## Path parameters

- `accountID` string, required — The user's unique account identifier.

## Response `200`

Retrieving Money details was Successful.

- MoneyDetailsRes
  - `accountID` string — The user's unique account identifier.
  - `accountNo` string — The user's unique account number, that is human readable.
  - `tradingType` 'CASH' | 'MARGIN' — The type of trading the account will participate in.
  - `updated` string — Timestamp of the last time the deposit was updated.
  - `cash` object
    - `cashAvailableForTrade` number — Total cash available for trading (buying power), reduced by pending orders.
    - `cashAvailableForTradeNonMarginable` number — Total cleared cash available to trade includes settled cash and sales, excludes unsettled buys and pending orders.
    - `cashAvailableForWithdrawal` number — Total settled cash available for withdrawal.
    - `cashBalance` number — Total cash balance, including settled and unsettled funds.
    - `noBuyingPowerReason` unknown[] — List of reasons buying power is zero or restricted.
      - unknown
    - `cashSettlement` CashSettlementTime[] — Settlement events for cash proceeds from sales, including settlement time and amount.
      - `utcTime` string — The timestamp (UTC) when the pending cash is settled and released.
      - `cash` number — The amount of cash settling at the specified utcTime.
    - `cashPendingSettlement` number — Total unsettled cash awaiting settlement (e.g. from recent sales).
    - `pendingPaymentsAmount` number — The total amount of money from recent deposits that is still pending.
  - `payments` object
    - `buyingPower` object
      - `pendingDepositsAmountAvailable` number — The current buying power of an account based on recent deposit requests.
      - `pendingDepositsAmountNotAvailable` number — Recent deposits that are not included in buying power.
    - `redemptions` object
      - `amountWithheldFromRedemptions` number — Total dollar amount not included in `cashAvailableForWithdrawal` due to seasoning period on deposit

---

[API](https://skmtc.net/drivewealth/apis/authentication-apis.md) · [All operations](https://skmtc.net/drivewealth/apis/authentication-apis/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/drivewealth/authentication-apis/versions/9fced6d0ac41/schema)
