> ## Documentation Index
> Fetch the complete documentation index at: https://docs.simultaneous.live/llms.txt
> Use this file to discover all available pages before exploring further.

# Browserbase Agents

> Create, list, get, update, and delete agents

Base path: `/v1/browserbase`

### POST /projects/:project\_id/agents

Create an agent.

Request

```json theme={null}
{
  "name": "extractor",
  "description": "Scrape and parse",
  "script": "print('hello')",
  "envVars": {"FOO":"bar"},
  "providerProjectId": "proj_xxx",
  "contextId": null,
  "extensionId": null,
  "region": "sfo",
  "timeoutSec": 600
}
```

Response: `Agent` with metadata and timestamps.

### GET /projects/:project\_id/agents

List agents. Query: `active_only`.

### GET /projects/:project\_id/agents/:agent\_id

Get an agent by ID.

### PUT /projects/:project\_id/agents/:agent\_id

Update agent fields.

### DELETE /projects/:project\_id/agents/:agent\_id

Delete an agent.
