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

# Get Wallet Balance

Get the current balance of a wallet.

<ParamField path="id" type="string" required>
  The wallet ID.
</ParamField>

<RequestExample>
  ```bash cURL theme={null}
  curl https://api.alguna.io/wallets/wal_def456/balance \
    -H "Authorization: Bearer YOUR_API_KEY"
  ```

  ```javascript Node.js theme={null}
  const balance = await alguna.wallets.getBalance('wal_def456');
  ```
</RequestExample>

<ResponseExample>
  ```json theme={null}
  {
    "balance": "500.00"
  }
  ```
</ResponseExample>

<ResponseField name="balance" type="string">
  Current wallet balance as a decimal string.
</ResponseField>
