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

# Authors

> List the people who have written articles in your knowledge base.

An author is a workspace user credited on one or more articles. For fields and response details, see the [API reference](/api-reference/authors/list).

Samples on this page show the `--json` envelope, which stays stable across terminals; the default pretty output picks columns to fit your terminal width. See [Output formats](/cli/output-formats).

## List authors

This command lists the authors in your workspace. Use this when you want to see who contributes content, or to match an article's author to a workspace account.

```bash theme={"system"}
neetokb authors list
```

| Flag          | Type  | Required | Default | Description              |
| ------------- | ----- | -------- | ------- | ------------------------ |
| `--page`      | `int` |          | `0`     | Page number              |
| `--page-size` | `int` |          | `0`     | Items per page (max 100) |

```json Sample output (--json) theme={"system"}
{
  "data": [
    {
      "name": "Oliver Smith",
      "email": "oliver@example.com",
      "profile_image_url": null
    }
  ],
  "breadcrumbs": [
    { "label": "List articles", "command": "neetokb articles list" }
  ],
  "pagination": {
    "total_records": 1,
    "total_pages": 1,
    "current_page_number": 1,
    "page_size": 30
  }
}
```

The list covers authors only. To manage workspace access, see [Team members](/cli-reference/team-members).
