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

# wazoo tokens

> Manage platform authentication tokens

The `wazoo tokens` command group allows you to list and create API
authentication tokens for accessing the Wazoo Platform. The same tokens are
managed in the [Console](/console/tokens).

## Commands

### `wazoo tokens list`

List all platform API authentication tokens associated with your account.

```bash theme={null}
wazoo tokens list [options]
```

### `wazoo tokens create`

Create a new API token with a descriptive label.

```bash theme={null}
wazoo tokens create -n <name> [options]
```

| Flag                | Description                                   |
| :------------------ | :-------------------------------------------- |
| `-n, --name <name>` | **Required.** Descriptive label for the token |

## Examples

### List active tokens

```bash theme={null}
wazoo tokens list
```

### Create a new token for CI/CD

```bash theme={null}
wazoo tokens create --name "GitHub Actions CI"
```
