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

# Wallet balance

> Check the wallet balance available for API purchases.

Check the balance before accepting a purchase through your integration. The value returned is the spendable wallet balance available for new API purchases.

## Parameters

No parameters are required.

## Request

```http theme={null}
GET /api/v2/account/wallet-balance
Authorization: Bearer YOUR_API_KEY
```

## Successful response

```json theme={null}
{
  "status": true,
  "message": "Wallet fetched successfully",
  "data": {
    "balance": 12500
  }
}
```

## Failed response

```json theme={null}
{
  "status": false,
  "message": "Error message"
}
```
