Get job details

## Usage

`circleci job get <job-id> [flags]`

## Arguments

`<job-id>` is the UUID of the job to look up. Job UUIDs are shown in
the output of `circleci workflow get` and `circleci run get --json`.

## 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 job details by UUID: 
  `circleci job get 8e50c384-0083-43d0-bc8f-93f0db589d6b`
- Output as JSON: 
  `circleci job get 8e50c384-0083-43d0-bc8f-93f0db589d6b --json`
- Get a specific field with jq: 
  `circleci job get 8e50c384-0083-43d0-bc8f-93f0db589d6b --json | jq '.status'`

## Details

Display the status and steps of a CircleCI job.

Job IDs are shown in the output of 'circleci workflow get' and
'circleci run get --json'.

JSON fields: id, name, type, status, started_at, stopped_at, project_id, pipeline_id, workflow_id, executions[].index/steps[].name/type/status/duration/exit_code

