Get Sandbox Snapshots

  • GET
  • /workspaces
  • /:workspace
  • /sandboxes
  • /:sandbox_id
  • /snapshots

Retrieve all snapshots for a specific sandbox. This endpoint returns a list of snapshots with their current status and creation dates.

Request

REQUIRED SCOPES
WORKSPACE, SANDBOX_INFO
URL PARAMETERS
workspacerequired string
The workspace name.
sandbox_idrequired string
The ID of the sandbox.

Last modified on Sep 1, 2025

Example:

CURL
curl -X GET "https://api.buddy.works/workspaces/:workspace/sandboxes/:sandbox_id/snapshots" \ -H "Authorization: Bearer <YOUR-TOKEN>" \ -H "Content-Type: application/json"
EXAMPLE RESPONSE
{ "url": "https://api.buddy.works/workspaces/buddy/sandboxes/jp517h9nuas7j/snapshots", "html_url": "https://app.buddy.works/buddy/my-project/sandboxes/jp517h9nuas7j/snapshots", "snapshots": [ { "url": "https://api.buddy.works/workspaces/buddy/sandboxes/jp517h9nuas7j/snapshots/sn-z693rqah9ovrh", "html_url": "https://app.buddy.works/buddy/my-project/sandboxes/jp517h9nuas7j/snapshots", "id": "sn-z693rqah9ovrh", "name": "my-new-sandbox-1", "status": "CREATING", "create_date": "2025-09-01T12:43:06Z" }, { "url": "https://api.buddy.works/workspaces/buddy/sandboxes/jp517h9nuas7j/snapshots/sn-h1otbpuydy247", "html_url": "https://app.buddy.works/buddy/my-project/sandboxes/jp517h9nuas7j/snapshots", "id": "sn-h1otbpuydy247", "name": "my-new-sandbox-2", "status": "STOPPED", "create_date": "2025-09-01T13:24:10Z" } ] }
STATUS
200 OK
LIMITS
X-Rate-Limit-Limit: 1 X-Rate-Limit-Remaining: 999