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

# Inspect resources

> List workloads, inspect pods, and watch changes.

Use `idyl get` to inspect workloads and runtime state.

## List resources

```bash theme={null}
idyl get all
```

Include pods:

```bash theme={null}
idyl get all --pods
```

## Inspect deployments

```bash theme={null}
idyl get deployment
idyl get deployment web
idyl get deployment --watch
```

## Inspect pods

```bash theme={null}
idyl get pod
idyl get pod --watch
idyl get pod --all
```

`--all` includes terminated pods.

## Structured output

Use JSON or YAML when a script needs the result:

```bash theme={null}
idyl get deployment web -o json
idyl get pod -o yaml
```

## Scope

Use `--namespace` and `--subnet` to inspect a specific target:

```bash theme={null}
idyl get deployment --namespace production --subnet <subnet>
```
