BROWSER USE

Products:
- [Browser Harness](https://browser-harness.com)
- [Stealth Browsers](https://browser-use.com/stealth-browsers)
- [Browser Use Box](https://browser-use.com/bux)
- [Web Agents](https://browser-use.com/web-agents)
- [Custom Models](https://browser-use.com/custom-models)
- [Proxies](https://browser-use.com/proxies)

[Pricing](https://browser-use.com/pricing)
[Blog](https://browser-use.com/posts)
[Cloud Docs](https://docs.cloud.browser-use.com)
[Open Source Docs](https://docs.browser-use.com)

[GET STARTED](https://cloud.browser-use.com)
[GITHUB](https://github.com/browser-use/browser-use)

---

# 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)
