BROWSER USE

- Browser Use Agents: give Browser Use a task and receive completed work. API V4 is current for new integrations.
- Browser Infrastructure: connect your agent or automation to managed browsers through SDK, REST, or CDP. Starts at $0.02/browser-hour.
- Developer tools: Open Source, Browser Harness, SDK, and MCP support the two products above.

[Developer Index](https://browser-use.com/index.md)
[Product Map](https://browser-use.com/llms.txt)
[Full Product Context](https://browser-use.com/llms-full.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)

---

# Cloud SDK

**Date:** 2025-09-02
> Typesafe Python and TypeScript SDKs for seamless cloud integration.

---

You can control the cloud API using the typesafe SDK.



```python
from browser_use_sdk import BrowserUse

client = BrowserUse(api_key="bu_...")

task = client.tasks.create_task(
    task="Search for the top 10 Hacker News posts and return the title and url.",
    llm="browser-use-llm"
)

result = task.complete()

result.output
```

```typescript
import { BrowserUseClient } from "browser-use-sdk";

const client = new BrowserUseClient({
    apiKey: "bu_...", // Optional if BROWSER_USE_API_KEY is set
});

const task = await client.tasks.createTask({
    task: "Search for the top 10 Hacker News posts and return the title and url.",
});

const result = await task.complete();

console.log(result.output);
```



For more information, check out [the documentation](https://docs.cloud.browser-use.com).
