Skip to main content
GET
/
api
/
sandboxes
/
{id}
/
checkpoints
List Checkpoints
curl --request GET \
  --url https://app.opencomputer.dev/api/sandboxes/{id}/checkpoints \
  --header 'X-API-Key: <api-key>'
[
  {
    "id": "cp-abc123",
    "sandboxID": "sb-abc123",
    "name": "before-migration",
    "status": "ready",
    "sizeBytes": 134217728,
    "createdAt": "2025-01-15T10:30:00Z"
  }
]
List all checkpoints for a sandbox.
id
string
required
Sandbox ID
[
  {
    "id": "cp-abc123",
    "sandboxID": "sb-abc123",
    "name": "before-migration",
    "status": "ready",
    "sizeBytes": 134217728,
    "createdAt": "2025-01-15T10:30:00Z"
  }
]