Get details of a context

## Usage

`circleci context get <context-id|context-name> [flags]`

## Arguments

A context can be specified by name or ID:
- By name, for example, `context-name`
- By ID, for example, `849e7902-802f-4082-8a70-da77dcd084e3`

## Flags

| Flag           | Description                                                                       |
| -------------- | --------------------------------------------------------------------------------- |
| `--jq string`  | Process values from the response using jq syntax (see `circleci help formatting`) |
| `--json`       | Output as JSON                                                                    |
| `--org string` | Organization slug (e.g. gh/myorg); used when resolving name to ID                 |

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

## Examples

- Get a context by UUID: 
  `circleci context get ctx-uuid-here`
- Get a context by name (org inferred from git remote): 
  `circleci context get my-context`
- Get a context by name in a specific org: 
  `circleci context get my-context --org gh/myorg`
- Output as JSON: 
  `circleci context get my-context --json`
- Get just the org ID: 
  `circleci context get ctx-uuid-here --json --jq '.org_id'`

## Details

Display details of a CircleCI context, including its environment
variable names and metadata.

Variable values are never returned by the API once set.

JSON fields: id, name, org_id, created_at, environment_variables, restrictions

