Skip to main content
GET
/
v1
/
agents
/
runs
/
{runId}
Get a Run
curl --request GET \
  --url https://api.browserbase.com/v1/agents/runs/{runId} \
  --header 'X-BB-API-Key: <api-key>'
{
  "runId": "<string>",
  "task": "<string>",
  "createdAt": "2023-11-07T05:31:56Z",
  "updatedAt": "2023-11-07T05:31:56Z",
  "agentId": "<string>",
  "sessionId": "<string>",
  "sandboxId": "<string>",
  "resultSchema": {},
  "result": {},
  "cause": {
    "code": "<string>",
    "message": "<string>"
  },
  "startedAt": "2023-11-07T05:31:56Z",
  "endedAt": "2023-11-07T05:31:56Z"
}

Authorizations

X-BB-API-Key
string
header
required

Path Parameters

runId
string
required

The run ID.

Response

200 - application/json

The agent run.

One execution of an agent against a task. Created in pending and transitioned through runningcompleted/failed by the runner.

runId
string
required

Unique identifier for the run.

task
string
required

The original task description.

status
enum<string>
required

Current status of the run.

  • PENDING - agent will run soon
  • RUNNING - agent is currently running
  • COMPLETED - agent has finished running
  • FAILED - agent has failed the run
  • STOPPED - run was stopped by the user
  • TIMED_OUT - run exceeded maximum time
Available options:
PENDING,
RUNNING,
COMPLETED,
FAILED,
STOPPED,
TIMED_OUT
createdAt
string<date-time>
required
updatedAt
string<date-time>
required
agentId
string

The ID of the agent applied to this run, if any. Omitted for ad-hoc runs.

sessionId
string

The Browserbase session ID powering this run.

sandboxId
string

External sandbox identifier assigned by the runner. Optional.

resultSchema
object

Per-run JSON Schema override for the result shape. When unset, the agent's default resultSchema applies.

result
object

The agent's structured result for the run. Only present when the run has finished and output is available. The result conforms to the provided JSON Schema when one is set.

cause
object
startedAt
string<date-time>
endedAt
string<date-time>