> ## Documentation Index
> Fetch the complete documentation index at: https://developer.kiotapay.co/llms.txt
> Use this file to discover all available pages before exploring further.

# Sub-Accounts Wallet Breakdown

> Provide an insight of the total wallet breakdown

## Endpoint

GET /api/sandbox/v1/multiaccount/wallet/total/breakdown

### Base URL

`https://api.kiotapay.co`

## **Request Headers**

| Key             | Value                 | Required | Description                                                        |
| :-------------- | :-------------------- | :------- | :----------------------------------------------------------------- |
| `Content-Type`  | `application/json`    | ✅        | Specifies that the request body is in JSON format.                 |
| `Authorization` | `Bearer <your-token>` | ✅        | API authentication token. Replace `<your-token>` with a valid JWT. |

**Sample Response Body**

```json theme={null}
[
    {
        "totalTransactions": 0.0,
        "totalStkCollection": 0.0,
        "totalPaybill": 0.0,
        "netBalance": 0.0,
        "totalPaybillCollection": 0.0,
        "totalCollections": 0.0,
        "totalTill": 0.0,
        "organisationUuid": "b2f0a5ff-e9d8-4347-b46d-6eee8d195617",
        "totalSendMoney": 0.0
    }
]
```
