Official SDKs for the Browser Use cloud API.
| Package | Language | Registry | Version |
|---|---|---|---|
| browser-use-sdk | TypeScript | npm | 3.1.0 |
| browser-use-sdk | Python | PyPI | 3.1.0 |
Both packages support v2 (default, stable) and v3 (experimental, via subpath import).
npm install browser-use-sdkimport { BrowserUse } from "browser-use-sdk";
const client = new BrowserUse();
const output = await client.run("Go to google.com");pip install browser-use-sdkfrom browser_use_sdk import AsyncBrowserUse
client = AsyncBrowserUse()
output = await client.run("Go to google.com")import { BrowserUse } from "browser-use-sdk/v3";from browser_use_sdk.v3 import BrowserUseRequires Task runner.
task gen:types # regenerate types from OpenAPI specs
task build # build both SDKs
task check # type-check both SDKs
task test # run testsSee RUNBOOK.md for the full update workflow.
