# Agentuity CLI Cloud Sandbox Snapshot Get

> Get snapshot details. Requires authentication. Use for Agentuity cloud platform operations

- Skill: `majiayu000/agentuity-cli-cloud-sandbox-snapshot-get` (Agent Skill, multi-file: 2 files)
- Install (CLI): `npx skillmds add majiayu000/agentuity-cli-cloud-sandbox-snapshot-get`
- Raw SKILL.md: https://api.skillmd.com/api/skills/majiayu000/agentuity-cli-cloud-sandbox-snapshot-get/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: DevOps & Infra
- License: Apache-2.0
- Author: majiayu000 (https://skillmd.com/u/majiayu000)
- Updated: 2026-09-09
- Page: https://skillmd.com/skills/majiayu000/agentuity-cli-cloud-sandbox-snapshot-get

---


# Cloud Sandbox Snapshot Get

Get snapshot details

## Prerequisites

- Authenticated with `agentuity auth login`
- Organization context required (`--org-id` or default org)

## Usage

```bash
agentuity cloud sandbox snapshot get <snapshotId>
```

## Arguments

| Argument | Type | Required | Description |
|----------|------|----------|-------------|
| `<snapshotId>` | string | Yes | - |

## Examples

Get details for a snapshot:

```bash
bunx @agentuity/cli cloud sandbox snapshot get snp_abc123
```

## Output

Returns JSON object:

```json
{
  "snapshotId": "string",
  "sandboxId": "string",
  "tag": "unknown",
  "sizeBytes": "number",
  "fileCount": "number",
  "parentSnapshotId": "unknown",
  "createdAt": "string",
  "downloadUrl": "string",
  "files": "array",
  "sandboxes": "array"
}
```

| Field | Type | Description |
|-------|------|-------------|
| `snapshotId` | string | Snapshot ID |
| `sandboxId` | string | Source sandbox ID |
| `tag` | unknown | Snapshot tag |
| `sizeBytes` | number | Snapshot size in bytes |
| `fileCount` | number | Number of files |
| `parentSnapshotId` | unknown | Parent snapshot ID |
| `createdAt` | string | Creation timestamp |
| `downloadUrl` | string | Presigned download URL |
| `files` | array | Files in snapshot |
| `sandboxes` | array | Attached sandboxes (idle or running) |

