# 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 %}


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.kitegateway.com/wallet-balances.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
