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

# Wallet Commands

> Check balances, inspect accounts, fund, and redeem credits from the command line.

## balance

```bash theme={null}
npx agentcash balance
```

Shows your total USDC balance across supported networks. Creates a wallet automatically if one doesn't exist.

## accounts

```bash theme={null}
npx agentcash accounts
```

Lists each supported network with its balance, wallet address, and deposit link. Use this when you need funding instructions or network-specific wallet details.

## redeem

```bash theme={null}
npx agentcash redeem <code>
```

Redeems an invite code for USDC on Base. Codes are one-time use.

<ParamField query="code" type="string" required>
  The invite code to redeem.
</ParamField>

## fund

```bash theme={null}
npx agentcash fund
```

Opens the AgentCash funding page for your wallet in your browser.

## Output format

Add `--format json` to any wallet-related command for machine-readable output:

```bash theme={null}
npx agentcash balance --format json
```
