> ## Documentation Index
> Fetch the complete documentation index at: https://browseruse-0aece648-magnus-streaming-api-link.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Introduction

> Easiest way to automate the web. Tell this agent in natural language what it should do, and it can interact with the web like a human.

The SDK is a thin wrapper with polling around the [API v3 Reference](/cloud/api-reference). `client.run()` accepts all parameters from the API, creates a session, polls until completion, and parses the output.

<CodeGroup>
  ```python Python theme={null}
  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 theme={null}
  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);
  ```
</CodeGroup>

**What this agent can do:**

* **Data extraction** — scrape websites with thousands of listings
* **Form filling** — submit applications, fill out surveys, enter data
* **Multi-step workflows** — log in, navigate, click through flows, download files
* **Research** — search across multiple sites, compare results, summarize findings
* **Monitoring** — monitor a website and get notified if something changes
* **Testing** — test websites end-to-end with natural language instructions
* **Scheduling** — schedule tasks to run on a recurring basis
* **1,000+ integrations** — Gmail, Calendar, Notion, and more

The best SOTA browser agent — see our [online Mind2Web benchmark](https://browser-use.com/posts/online-mind2web-benchmark).
