Files
wehub-resource-sync 4cd2d4af2b
Test Browser Use CLI Install / uv pip install (ubuntu-latest) (push) Failing after 1s
Test Browser Use CLI Install / uvx browser-use from local wheel (push) Failing after 1s
Test Browser Use CLI Install / uvx browser-use[cli] from PyPI (push) Failing after 1s
package / pip-install-on-macos-latest-py-3.11 (push) Has been skipped
package / pip-install-on-macos-latest-py-3.13 (push) Has been skipped
package / pip-install-on-ubuntu-latest-py-3.11 (push) Has been skipped
package / pip-install-on-windows-latest-py-3.13 (push) Has been skipped
cloud_evals / trigger_cloud_eval_image_build (push) Failing after 1s
docker / build_publish_image (push) Failing after 1s
Test Browser Use CLI Install / browser-use skill sync (push) Failing after 1s
lint / code-style (push) Failing after 0s
lint / type-checker (push) Failing after 1s
package / pip-build (push) Failing after 1s
lint / syntax-errors (push) Failing after 3s
package / pip-install-on-ubuntu-latest-py-3.13 (push) Has been skipped
package / pip-install-on-windows-latest-py-3.11 (push) Has been skipped
test / ${{ matrix.test_filename }} (push) Has been skipped
test / evaluate-tasks (push) Has been skipped
test / setup-chromium (push) Failing after 2s
test / find_tests (push) Failing after 2s
Test Browser Use CLI Install / uv pip install (windows-latest) (push) Has been cancelled
Test Browser Use CLI Install / uv pip install (macos-latest) (push) Has been cancelled
chore: import upstream snapshot with attribution
2026-07-13 12:02:32 +08:00

3.8 KiB

Cloud Quickstart, Pricing & FAQ

Table of Contents


Overview

Browser Use Cloud is the hosted platform for web automation. Stealth browsers with anti-fingerprinting, CAPTCHA solving, residential proxies in 195+ countries. Usage-based pricing via API keys.

Setup

Python

pip install browser-use-sdk
from browser_use_sdk import BrowserUse
client = BrowserUse()  # Uses BROWSER_USE_API_KEY env var

TypeScript

npm install browser-use-sdk
import BrowserUse from 'browser-use-sdk';
const client = new BrowserUse();  // Uses BROWSER_USE_API_KEY env var

cURL

export BROWSER_USE_API_KEY=your-key

First Task

SDK

result = await client.run("Search for top Hacker News post and return title and URL")
print(result.output)

cURL

curl -X POST https://api.browser-use.com/api/v2/tasks \
     -H "X-Browser-Use-API-Key: $BROWSER_USE_API_KEY" \
     -H "Content-Type: application/json" \
     -d '{"task": "Search for the top Hacker News post and return the title and url."}'

Response: {"id": "<task-id>", "sessionId": "<session-id>"}

Structured Output

from pydantic import BaseModel

class HNPost(BaseModel):
    title: str
    url: str
    points: int

result = await client.run(
    "Find top Hacker News post",
    output_schema=HNPost
)
print(result.output)  # HNPost instance

Live View

Every session has a liveUrl:

curl https://api.browser-use.com/api/v2/sessions/<sessionId> \
     -H "X-Browser-Use-API-Key: $BROWSER_USE_API_KEY"

Open the liveUrl to watch the agent work in real-time.


Pricing

AI Agent Tasks

$0.01 init + per-step (varies by model):

Model Per Step
Browser Use LLM $0.002
Browser Use 2.0 $0.006
Gemini Flash Lite $0.005
GPT-4.1 Mini $0.004
O3 $0.03
Claude Sonnet 4.6 $0.05

Typical task: 10 steps = ~$0.03 (with Browser Use LLM)

V3 API (Token-Based)

Model Input/1M Output/1M
BU Mini (Gemini 3 Flash) ~$0.72 ~$4.20
BU Max (Claude Sonnet 4.6) ~$3.60 ~$18.00

Browser Sessions

  • PAYG: $0.06/hour
  • Business: $0.03/hour
  • Billed upfront, proportional refund on stop. Min 1 minute.

Skills

  • Creation: $2 (PAYG), $1 (Business). Refinements free.
  • Execution: $0.02 (PAYG), $0.01 (Business)

Proxies

  • PAYG: $10/GB, Business: $5/GB, Scaleup: $4/GB

Tiers

  • Business: 25% off per-step, 50% off sessions/skills/proxy
  • Scaleup: 50% off per-step, 60% off proxy
  • Enterprise: Contact for ZDR, compliance, on-prem

FAQ & Troubleshooting

Slow tasks?

  • Switch models (Browser Use LLM is fastest)
  • Set start_url to skip navigation
  • Use closer proxy country

Agent failed?

  • Check liveUrl to see what happened
  • Simplify instructions
  • Set start_url

Login issues?

  • Profile sync (easiest): curl -fsSL https://browser-use.com/profile.sh | sh
  • Secrets (per-domain credentials)
  • 1Password (most secure, auto 2FA)

Blocked by site?

  • Stealth is on by default
  • Try different proxy country
  • Set flash_mode=False (slower but more careful)

Rate limited?

  • Auto-retry with backoff
  • Upgrade plan if consistent

Stop a session:

curl -X PATCH https://api.browser-use.com/api/v2/sessions/<id> \
     -H "X-Browser-Use-API-Key: $BROWSER_USE_API_KEY" \
     -H "Content-Type: application/json" \
     -d '{"action": "stop"}'