Skip to main content
GET
/
api
/
snapshots
/
{name}
Get Snapshot
curl --request GET \
  --url https://app.opencomputer.dev/api/snapshots/{name} \
  --header 'X-API-Key: <api-key>'
{
  "id": "snap-abc123",
  "name": "data-science",
  "status": "ready",
  "contentHash": "sha256:...",
  "checkpointId": "cp-abc123",
  "manifest": { "steps": [] },
  "createdAt": "2025-01-15T10:30:00Z",
  "lastUsedAt": "2025-01-16T08:00:00Z"
}
Get snapshot details by name.
name
string
required
Snapshot name
{
  "id": "snap-abc123",
  "name": "data-science",
  "status": "ready",
  "contentHash": "sha256:...",
  "checkpointId": "cp-abc123",
  "manifest": { "steps": [] },
  "createdAt": "2025-01-15T10:30:00Z",
  "lastUsedAt": "2025-01-16T08:00:00Z"
}