> For the complete documentation index, see [llms.txt](https://startbutton.gitbook.io/startbutton-product-api/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://startbutton.gitbook.io/startbutton-product-api/startbutton-api-doc/get-wallet-balance.md).

# Get Wallet Balance

With a single endpoint, you can get the collection and transfer wallet balances for currencies enabled for your account.

| Authorization | Set value to \`Bearer SECRET\_KEY\` |
| ------------- | ----------------------------------- |
| Content-type  | Set value to `application/json`     |

<details>

<summary>BaseUrl</summary>

Sandbox/PROD: <https://api.startbutton.tech&#x20>;

</details>

{% tabs %}
{% tab title="Endpoint" %}
GET `{{baseurl}}/wallet`
{% endtab %}
{% endtabs %}

Once a call is initiated, we return your wallet balances across all currencies.

**Sample response:**

```
{
    "success": true,
    "message": "Wallet",
    "data": [
        {
            "availableBalance": 0,
            "ledgerBalance": 0,
            "lienBalance": 0,
            "collectionBalance": 0,
            "payoutBalance": 0,
            "refundsOrChargeBackBalance": 0,
            "rollingReserveOverdraftBalance": 0,
            "_id": "6ab3aebbb56dff4926xxxxx",
            "currency": "KES",
            "type": "payout"
        },
        {
            "availableBalance": 0,
            "ledgerBalance": 0,
            "lienBalance": 0,
            "collectionBalance": 0,
            "payoutBalance": 0,
            "refundsOrChargeBackBalance": 0,
            "rollingReserveOverdraftBalance": 0,
            "_id": "6ab3aebbb56dff4926xxxxx",
            "currency": "XOF",
            "type": "payout"
        },
        {
            "availableBalance": 0,
            "ledgerBalance": 0,
            "lienBalance": 0,
            "collectionBalance": 0,
            "payoutBalance": 0,
            "refundsOrChargeBackBalance": 0,
            "rollingReserveOverdraftBalance": 0,
            "_id": "69f21d72a3cde628cbxxxxx",
            "currency": "RWF",
            "type": "collection"
        },
        {
            "availableBalance": 0,
            "ledgerBalance": 0,
            "lienBalance": 0,
            "collectionBalance": 0,
            "payoutBalance": 0,
            "refundsOrChargeBackBalance": 0,
            "rollingReserveOverdraftBalance": 0,
            "_id": "6ab3aebbb56dff4926xxxxx",
            "currency": "RWF",
            "type": "payout"
        }
    ]
}
```
