> ## 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.

# Workspace

> View the settings of the knowledge base you are signed in to.

Workspace commands report the settings of the NeetoKB organization behind your current subdomain. For fields and response details, see the [API reference](/api-reference/settings/get).

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).

## Show workspace information

This command shows your knowledge base's name and public URL. Use this to confirm which workspace a command will act on before running it, especially when several are signed in.

```bash theme={"system"}
neetokb workspace info
neetokb workspace info --subdomain acme
```

```json Sample output (--json) theme={"system"}
{
  "data": {
    "knowledge_base_name": "Spinkart Help Center",
    "url": "https://spinkart.neetokb.com"
  }
}
```

<Tip>
  To check authentication and connectivity rather than workspace settings, run [`neetokb doctor`](/cli-reference/utility#doctor).
</Tip>
