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

# Get Wallet Balance

## Get Wallet Balance

<mark style="color:blue;">`GET`</mark> `{baseUrl}/wallet/balance`

Get the wallet balance associated with your App ID. Call this API before making delivery requests to avoid unexpected errors.&#x20;

{% tabs %}
{% tab title="200 Balance retrieved." %}

```
{
    "status": true,
    "message": "Balance retrieved",
    "data": {
        "balance": 0
    }
}
```

{% endtab %}
{% endtabs %}

```json
// Sample Response Body - 200 OK
{
    "status": true,
    "message": "Balance retrieved",
    "data": {}
}
```
