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

# Account Commands

> View your account, tier, usage, and balances, and manage API keys with declaw account.

`declaw account` shows account details and manages API keys.

## info

Show your account overview: owner ID, tier and its limits (concurrent sandboxes, vCPU, memory), wallet balances, and today's spend.

```bash theme={null}
declaw account info
```

## usage

Show a usage summary: sandbox count, total compute seconds, total cost, and remaining balances.

```bash theme={null}
declaw account usage
```

## api-keys

List, create, and revoke API keys.

```bash theme={null}
declaw account api-keys list             # alias: ls
declaw account api-keys create ci-bot    # prints the full key once
declaw account api-keys revoke key-abc123
```

| Subcommand                 | Args   | Notes                                                                         |
| -------------------------- | ------ | ----------------------------------------------------------------------------- |
| `api-keys list`            |        | Keys are shown masked                                                         |
| `api-keys create <name>`   | name   | The full key is printed **once** — save it immediately, it is not shown again |
| `api-keys revoke <key-id>` | key ID | Revokes the key                                                               |

## Next steps

* [Auth commands](/cli/auth) — log in with an API key
* [Plans](/platform/plans) — tier limits and pricing
