Skip to main content

Usage

cassian status [options]

Options

FlagDescription
--jsonOutput raw JSON (for scripts and AI agents)

Human-readable output

Instances

  my-project  ● running  5m  ~$0.04
  GPUs     1x L4
  Storage  my-project → /workspace

Storage

  my-project  50G  attached  5m ago
Cost estimate is shown for running instances based on GPU type and elapsed time.

JSON output

cassian status --json
{
  "instances": [
    {
      "id": "abc123",
      "name": "my-project",
      "status": "running",
      "gpu_count": 1,
      "gpu_type": "l4",
      "created_at": "2026-05-30T09:00:00Z"
    }
  ],
  "volumes": [
    {
      "name": "my-project",
      "size_gb": 50,
      "status": "attached"
    }
  ]
}
Useful for scripting and for AI agents that need to check instance state:
# Check if an instance is running
cassian status --json | python3 -c "
import json, sys
data = json.load(sys.stdin)
running = [i for i in data['instances'] if i['status'] == 'running']
print('running:', [i['name'] for i in running])
"