Use this file to discover all available pages before exploring further.
Try the BU Agent API (v3) — more accurate agents, long-running tasks, file uploads, and persistent workspaces. V3 is a superset of v2.
Every browser comes with: anti-fingerprinting, automatic CAPTCHA solving, cookie/ad blocking, Cloudflare bypass, and residential proxies. No configuration needed.
import asynciofrom browser_use_sdk import AsyncBrowserUseasync def main(): client = AsyncBrowserUse() result = await client.run("What is the top post on Hacker News right now?") print(result.output)asyncio.run(main())
Every session has a liveUrl — a real-time view of the browser. Use it for debugging, embedding in your app, or handing control to a human mid-task.
client = AsyncBrowserUse()session = await client.sessions.create()print(session.live_url) # open this or embed in an iframeresult = await client.run( "Get the top 3 posts from Hacker News", session_id=session.id,)
Use saved browser profiles for authenticated sites, residential proxies for geo-specific content, and 1Password for auto-filling credentials and 2FA codes.