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

# Wallet

> Check your balance and transaction stats

## Check Wallet Balance

**GET** `/api/v1/wallet/balance`

Get your current wallet balance and transaction statistics.

```bash theme={null}
curl -X GET "https://www.abcmpay.com/api/v1/wallet/balance" \
  -H "X-Api-Key: your-public-key" \
  -H "X-Api-Secret: your-secret-key"
```

```json Response theme={null}
{
    "success": true,
    "data": {
        "balance": 50000.00,
        "total_credited": 150000.00,
        "total_debited": 100000.00,
        "currency": "NGN"
    }
}
```

<Note>
  Balance is scoped to whichever business profile your API key belongs to — if you run multiple profiles, each has its own wallet and its own key pair.
</Note>
