Browser Use Cloud Banner
You need an active subscription and an API key from cloud.browser-use.com/billing. For detailed pricing information, see our pricing page.

Creating Your First Agent

To understand how the API works visit the Run Task page.
curl -X POST https://api.browser-use.com/api/v1/run-task \
  -H "Authorization: Bearer your_api_key_here" \
  -H "Content-Type: application/json" \
  -d '{
    "task": "Go to google.com and search for Browser Use"
  }'
run-task API returns a task ID, which you can query to get the task status, live preview URL, and the result output.
To play around with the API, you can use the Browser Use Cloud Playground.
For the full implementation guide see the Implementation page.