CLI Commands
cassian status
Show running instances and volumes.
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Show running instances and volumes.
cassian status [options]
| Flag | Description |
|---|---|
--json | Output raw JSON (for scripts and AI agents) |
Instances
my-project ● running 5m ~$0.04
GPUs 1x L4
Storage my-project → /workspace
Storage
my-project 50G attached 5m ago
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"
}
]
}
# 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])
"