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

# Labels commands - Omni CLI

> Reference for the omni labels command group: create and manage content labels.

Create and manage [content labels](/api/labels).

```bash wrap theme={null}
omni labels <command>
```

| Command  | Description         |
| -------- | ------------------- |
| `list`   | List all labels     |
| `create` | Create a label      |
| `get`    | Get a label by name |
| `update` | Update a label      |
| `delete` | Delete a label      |

```bash wrap theme={null}
# Create a label
omni labels create --body '{"name":"important","color":"#0366d6"}'

# Get a label by name
omni labels get <name>

# View help for delete command, including arguments and flag details
omni labels delete --help
```

<Note>
  Every command in this group also accepts the [global flags](/developers/cli/reference/global-flags), including `--token`, `--profile`, `--format`, and `--compact`.
</Note>
