browser-use-sdk
v3.8.4
Published
Official TypeScript SDK for the Browser Use API
Readme
browser-use-sdk
Official TypeScript SDK for Browser Use Cloud.
Install
npm install browser-use-sdkQuick Start
Get your API key at cloud.browser-use.com/settings.
export BROWSER_USE_API_KEY=your_keyimport { BrowserUse } from "browser-use-sdk";
const client = new BrowserUse();
const result = await client.run("Find the top 3 trending repos on GitHub today");
console.log(result.output);v3 Bring Your Own LLM Key
Add your provider API key in Browser Use project settings, then enable BYOK for v3 agent runs:
import { BrowserUse } from "browser-use-sdk/v3";
const client = new BrowserUse({ useOwnKey: true });
const result = await client.run("Find the top 3 trending repos on GitHub today");
console.log(result.output);Docs
License
MIT
