Skip to main content
GET
/
v1
/
browserbase
/
automations
/
{automationId}
/
runs
Get run history for an automation
curl --request GET \
  --url http://localhost:3333/v1/browserbase/automations/{automationId}/runs \
  --header 'X-API-Key: <api-key>' \
  --header 'X-Organization-Id: <x-organization-id>'
[
  {
    "id": "<string>",
    "automationId": "<string>",
    "status": "<string>",
    "createdAt": "2023-11-07T05:31:56Z",
    "startedAt": "2023-11-07T05:31:56Z",
    "completedAt": "2023-11-07T05:31:56Z",
    "durationMs": 123,
    "screenshotUrl": "<string>",
    "error": "<string>"
  }
]

Authorizations

X-API-Key
string
header
required

API key for authentication

Headers

X-Organization-Id
string
required

Organization ID (required for session auth)

Path Parameters

automationId
string
required

Automation ID

Response

200 - application/json

List of runs

id
string
required
automationId
string
required
status
string
required
createdAt
string<date-time>
required
startedAt
string<date-time>
completedAt
string<date-time>
durationMs
number
screenshotUrl
string
error
string