> For the complete documentation index, see [llms.txt](https://docs.kitegateway.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.kitegateway.com/wallet-balances.md).

# Wallet Balances

### All wallet Balances

Shows the amount of money remaining in the merchant account wallets

**Live**

```javascript
GET https://kitegateway.com/v1/data/wallets/balances
```

**Sandbox**

```
GET https://sandbox.kitegateway.com/v1/data/wallets/balances
```

{% tabs %}
{% tab title="Request Headers" %}

#### Request Headers

| Header        | Value                  | Required |
| ------------- | ---------------------- | -------- |
| Content-Type  | **`application/json`** | YES      |
| Accept        | **`application/json`** | YES      |
| Authorization | **`JWT ***`**          | YES      |
| {% endtab %}  |                        |          |

{% tab title="Response" %}

#### Request Body

| Parameter Name | Type   | Description         |
| -------------- | ------ | ------------------- |
| currency       | string | The wallet currency |
| balance        | double | The wallet balance  |
| {% endtab %}   |        |                     |

{% tab title="Sample Response" %}

```javascript
{
    "code": 200,
    "status": "success",
    "message": "Request completed successfully.",
    "data": [
        {
            "currency": "UGX",
            "balance": 1250000
        },
        {
            "currency": "USD",
            "balance": 7213
        }
    ]
}
```

{% endtab %}
{% endtabs %}

### Single wallet balance

Shows the amount of money remaining in a specific wallet currency

**Live**

```javascript
GET https://kitegateway.com/v1/data/wallets/:currency/balance
```

**Sandbox**

```
GET https://sandbox.kitegateway.com/v1/data/wallets/:currency/balance
```

{% tabs %}
{% tab title="Request Headers" %}

#### Request Headers

| Header        | Value                  | Required |
| ------------- | ---------------------- | -------- |
| Content-Type  | **`application/json`** | YES      |
| Accept        | **`application/json`** | YES      |
| Authorization | **`JWT ***`**          | YES      |
| {% endtab %}  |                        |          |

{% tab title="Response" %}

#### Request Body

| Parameter Name | Type   | Description         |
| -------------- | ------ | ------------------- |
| currency       | string | The wallet currency |
| balance        | double | The wallet balance  |
| {% endtab %}   |        |                     |

{% tab title="Sample Response" %}

```javascript
{
    "code": 200,
    "status": "success",
    "message": "Request completed successfully.",
    "data": {
            "currency": "UGX",
            "balance": 1250000
        }
}
```

{% endtab %}
{% endtabs %}
