Get orb metadata and statistics

## Usage

`circleci orb get <namespace>/<orb>[@<version>]/<orb-id> [flags]`

## Arguments

An orb can be specified by name or ID:
- By name, for example, `namespace/orb-name`, optionally with a version, for example, `namespace/orb-name@1.2.3`
- By ID, the orb ID (UUID), 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                                                                    |

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

## Examples

- Get info for an orb: 
  `circleci orb get myorg/my-orb`
- Get info for a specific version: 
  `circleci orb get myorg/my-orb@1.2.3`
- Output as JSON: 
  `circleci orb get myorg/my-orb --json`

## Details

Get metadata and statistics for an orb.

Displays the orb name, namespace, privacy status, latest version,
usage statistics for the past 30 days, associated categories, and
all published versions.

JSON fields: id, name, namespace, is_private, is_listed, created_at, latest_version, categories, versions, stats

