Files
liqiang b119135836
Build latest book artifacts / build (push) Canceled after 0s
dependency resolution / resolve (3.11) (push) Canceled after 0s
dependency resolution / resolve (3.13) (push) Canceled after 0s
deploy-pages / build (push) Canceled after 0s
deploy-pages / deploy (push) Canceled after 0s
i18n consistency check / check (push) Canceled after 0s
provider adoption tests / test (chapter2/context-compression) (push) Canceled after 0s
provider adoption tests / test (chapter2/prompt-injection) (push) Canceled after 0s
provider adoption tests / test (chapter2/system-hint) (push) Canceled after 0s
provider adoption tests / test (chapter3/log-sanitization) (push) Canceled after 0s
web-search-agent tests / test (push) Canceled after 0s
web-search-agent tests / agentbook (push) Canceled after 0s
ai-agent-book 精选快照(<2MB 代码与文档,来自 github.com/bojieli/ai-agent-book)
2026-08-20 13:12:50 +00:00

46 lines
1.3 KiB
Plaintext

---
title: "Quickstart"
description: "Learn how to get started with the Browser Use Cloud API"
icon: "cloud"
mode: "wide"
---
<img
className="block dark:hidden rounded-2xl"
src="/images/cloud-banner.png"
alt="Browser Use Cloud Banner"
/>
<img
className="hidden dark:block rounded-2xl"
src="/images/cloud-banner-dark.png"
alt="Browser Use Cloud Banner"
/>
<Note>
You need an active subscription and an API key from
[cloud.browser-use.com/billing](https://cloud.browser-use.com/billing). For
detailed pricing information, see our [pricing page](/cloud/v1/pricing).
</Note>
## Creating Your First Agent
To understand how the API works visit the [Run Task](/api-reference/api-v1/run-task?playground=open) page.
```bash
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.
<Note>
To play around with the API, you can use the [Browser Use Cloud
Playground](https://cloud.browser-use.com/playground).
</Note>
For the full implementation guide see the [Implementation](/cloud/v1/implementation) page.