BROWSER USE DEVELOPER RESOURCES

- Hosted Agents (API V4): submit a task and receive the result from a managed browser agent.
- Browser Infrastructure: control managed remote browsers through SDK, REST, or CDP. Starts at $0.02/browser-hour.
- Open Source Library: build and run browser agents with the Python library.

[Developer Index](https://browser-use.com/index.md)
[Product Map](https://browser-use.com/llms.txt)
[Pricing](https://browser-use.com/pricing.md)
[Cloud Docs](https://docs.browser-use.com/cloud/quickstart)
[Open Source Docs](https://docs.browser-use.com/open-source/introduction)

---

# BU Agent API & SDK 3.0

**Date:** 2026-02-25
> New experimental agent API. New SDK with breaking changes.

---

![BU Agent API](https://browser-use.com/images/changelog/bu-agent-api-banner.png)

### BU Agent API (Experimental)

A completely new experimental agent built from scratch. Think **Claude Code for the browser**: web scraping, data extraction, file manipulation, and complex multi-step workflows.

*"Here's a CSV with 50 people. For each person, find their LinkedIn profile, extract their current title and company, and return an enriched CSV."* — the BU Agent handles the entire pipeline in a single task.



```python Python
from browser_use_sdk.v3 import AsyncBrowserUse

client = AsyncBrowserUse()
result = await client.run("Find the top 3 trending repos on GitHub today")
print(result.output)
```

```typescript TypeScript
import { BrowserUse } from "browser-use-sdk/v3";

const client = new BrowserUse();
const result = await client.run("Find the top 3 trending repos on GitHub today");
console.log(result.output);
```



### SDK 3.0

New version of the SDK (`3.0.x`) with breaking changes. Please upgrade — the new `client.run()` API is much cleaner. All existing functionality — sessions, profiles, browser control, structured output, streaming, files, skills — is still there.

[Documentation](https://docs.cloud.browser-use.com/new-features/api-v3) · [GitHub](https://github.com/browser-use/sdk)
