Get details of a namespace

## Usage

`circleci namespace get <name> [flags]`

## Arguments

`<name>` is the name of the namespace to look up, for example, `myorg`.

## Flags

| Flag          | Description                                                                       |
| ------------- | --------------------------------------------------------------------------------- |
| `--jq string` | Process values from the response using jq syntax (see `circleci help formatting`) |
| `--json`      | Output as JSON                                                                    |

Global flags: `-c, --config`, `--debug`, `--no-color`, `-q, --quiet` — see `circleci --help`.

## Examples

- Get a namespace by name: 
  `circleci namespace get myorg`
- Output as JSON: 
  `circleci namespace get myorg --json`
- Extract just the namespace ID: 
  `circleci namespace get myorg --json --jq '.id'`

## Details

Display details of a CircleCI orb namespace.

JSON fields: id, name

