Skip to main content
GET
/
run
/
{session_id}
/
debug-snapshots
/
{node_id}
Get debug snapshots
curl --request GET \
  --url https://api.cloudcruise.com/run/{session_id}/debug-snapshots/{node_id} \
  --header 'cc-key: <api-key>'
{
  "session_id": "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx",
  "node_id": "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx",
  "page_snapshot_url": "https://storage.example.com/page_snapshots/workspace/workflow/node/session.html?token=...",
  "screenshots": [
    {
      "screenshot_id": "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx",
      "signed_screenshot_url": "https://storage.example.com/screenshots/workspace/session/screenshot.jpeg?token=...",
      "node_display_name": "Click Login Button",
      "node_id": "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx",
      "timestamp": "2026-02-27T07:16:20.083Z",
      "signed_screenshot_url_expires": "2026-02-27T08:16:20.083Z",
      "error_screenshot": false
    }
  ]
}

Authorizations

cc-key
string
header
required

API key-based authentication. Provide your CloudCruise API key in the cc-key header.

Path Parameters

session_id
string<uuid>
required

Unique identifier for the workflow execution session

node_id
string<uuid>
required

Unique identifier for the workflow node

Response

Debug snapshots successfully retrieved

Debug snapshot data for a specific node in a workflow run

session_id
string<uuid>
required

Unique identifier for the workflow execution session

Example:

"xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx"

node_id
string<uuid>
required

Unique identifier for the workflow node

Example:

"xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx"

page_snapshot_url
string<uri> | null
required

Signed URL to the HTML page snapshot captured when this node was executed. Contains the full DOM state including inlined iframe content. Valid for 1 hour. Null if no snapshot was captured.

Example:

"https://storage.example.com/page_snapshots/workspace/workflow/node/session.html?token=..."

screenshots
object[]
required

Screenshots taken at this node during execution