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

# nsc workspace describe

Describe your current workspace.

`workspace describe` describes the currently authenticated [workspace](/docs/workspaces).
To change between workspaces, run [`nsc login`](/docs/reference/cli/login).

## Usage

```bash theme={null}
nsc workspace describe [--key <json-field>] [--output <plain|json>]
```

### Example

```bash theme={null}
nsc workspace describe
```

```text nocopy Output theme={null}
Workspace details:

Name: Shared Team Workspace
Tenant ID: <id>
Registry URL: nscr.io/<id>
```

## Options

<h3 id="--key--k-json-field">
  \--key, -k \<json-field>
</h3>

Select a JSON field to print. Only supported in concert with `--output=json`.
For example:

```bash theme={null}
nsc workspace describe -o json -k registry_url
```

```text nocopy Output theme={null}
nscr.io/<id>
```

<h3 id="--output--o-type">
  \--output, -o \<type>
</h3>

Specifies the output format. Supported options are `json` and
`plain`. By default, plain output format is used.
