--- title: "Quickstart" description: "Learn how to get started with the Browser Use Cloud API" icon: "cloud" mode: "wide" --- Browser Use Cloud Banner Browser Use Cloud Banner 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). ## 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. To play around with the API, you can use the [Browser Use Cloud Playground](https://cloud.browser-use.com/playground). For the full implementation guide see the [Implementation](/cloud/v1/implementation) page.