> ## Documentation Index
> Fetch the complete documentation index at: https://60db.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Billing

> Billing and payment commands

# Billing

## Commands

### List Invoices

```bash theme={null}
60db billing:invoices --limit 20
```

### Filter by User

```bash theme={null}
60db billing:invoices --user-id 123
```

### Filter by Status

```bash theme={null}
60db billing:invoices --status paid
```

### List Payment Transactions

```bash theme={null}
60db billing:transactions --limit 20
```

### Filter by Type

```bash theme={null}
60db billing:transactions --type one_time
```

## Options

### List Invoices

* `--limit <number>` - Number of invoices to return
* `--user-id <id>` - Filter by user ID
* `--status <status>` - Filter by status (paid, pending, failed)

### List Transactions

* `--limit <number>` - Number of transactions to return
* `--type <type>` - Filter by type (one\_time, subscription)

## Examples

### Monitor Transactions in Real-Time

```bash theme={null}
watch -n 5 '60db --json billing:transactions --limit 5'
```
