GET
/
run
/
{session_id}
curl --request GET \
  --url https://api.cloudcruise.com/run/{session_id} \
  --header 'cc-key: <api-key>'
{
  "session_id": "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx",
  "status": "execution.success",
  "input_variables": {},
  "data": {
    "your_defined_datamodel": "example_value"
  },
  "video_urls": [
    {
      "timestamp": "2024-01-01T00:00:00.000000+00:00",
      "session_id": "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx",
      "signed_screen_recording_url": "https://www.example.com/screen-recording.mp4",
      "signed_screen_recording_url_expires": "2024-01-08T00:00:00.000000+00:00"
    }
  ],
  "file_urls": [
    {
      "signed_file_url": "https://www.example.com/file.csv",
      "file_name": "file.csv",
      "timestamp": "2025-06-04T20:45:11.669Z",
      "signed_file_url_expires": "2025-06-11T20:45:11.669Z",
      "metadata": {}
    }
  ],
  "screenshot_urls": [
    {
      "signed_screenshot_url": "https://www.example.com/screenshot.png",
      "node_display_name": "Button",
      "timestamp": "2024-01-01T00:00:00.000000+00:00",
      "signed_screenshot_url_expires": "2024-01-01T00:00:00.000000+00:00",
      "error_screenshot": false
    }
  ],
  "errors": [
    {
      "prompt": "Search for a button to confirm the input form",
      "message": "Button not found",
      "error_id": "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx",
      "full_url": "https://www.example.com/current-page",
      "llm_model": "gpt-x",
      "created_at": "2024-01-01T00:00:00.000000+00:00",
      "error_code": "ERR-0001",
      "action_type": "CLICK",
      "action_display_name": "Click on the confirm button"
    }
  ]
}

Authorizations

cc-key
string
header
required

API key-based authentication. Provide your CloudCruise API key in the cc-key header. Contact support to obtain an API key for your account.

Path Parameters

session_id
string
required

Unique identifier for the browser agent run session

Response

200 - application/json

Run results successfully retrieved

Comprehensive response containing workflow execution results and artifacts