# Send Browser Use API to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "browser-use-api",
    "name": "Browser Use API",
    "source": "tencent",
    "type": "skill",
    "category": "效率提升",
    "sourceUrl": "https://clawhub.ai/jfrux/browser-use-api",
    "canonicalUrl": "https://clawhub.ai/jfrux/browser-use-api",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/browser-use-api",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=browser-use-api",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "scripts/browser-use.sh"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "browser-use-api",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-29T05:54:29.605Z",
      "expiresAt": "2026-05-06T05:54:29.605Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=browser-use-api",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=browser-use-api",
        "contentDisposition": "attachment; filename=\"browser-use-api-1.0.1.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "browser-use-api"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/browser-use-api"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/browser-use-api",
    "downloadUrl": "https://openagent3.xyz/downloads/browser-use-api",
    "agentUrl": "https://openagent3.xyz/skills/browser-use-api/agent",
    "manifestUrl": "https://openagent3.xyz/skills/browser-use-api/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/browser-use-api/agent.md"
  }
}
```
## Documentation

### Browser Use

Cloud-based AI browser automation. Send a task in plain English, get structured results.

### Quick Start

# Submit task
curl -s -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": "Go to example.com and extract the main heading"}'

# Poll for result (replace TASK_ID)
curl -s "https://api.browser-use.com/api/v2/tasks/TASK_ID" \\
  -H "X-Browser-Use-API-Key: $BROWSER_USE_API_KEY"

### Helper Script

Use scripts/browser-use.sh for simpler execution:

# Run task and wait for result
./scripts/browser-use.sh "Go to hacker news and get the top 3 stories"

# Just submit (don't wait)
./scripts/browser-use.sh --no-wait "Search Google for AI news"

### Create Task

POST https://api.browser-use.com/api/v2/tasks

Body:

{
  "task": "Plain English description of what to do",
  "llm": "gemini-3-flash-preview"  // optional, default is fast model
}

Response:

{
  "id": "task-uuid",
  "sessionId": "session-uuid"
}

### Get Task Status

GET https://api.browser-use.com/api/v2/tasks/{taskId}

Response fields:

status: pending | started | finished | failed
output: Result text when finished
steps: Array of actions taken (with screenshots)
cost: Cost in dollars (e.g., "0.02")
isSuccess: Boolean result

### Stop Task

POST https://api.browser-use.com/api/v2/tasks/{taskId}/stop

### Pricing

~$0.01-0.05 per task depending on complexity. Check balance:

curl -s https://api.browser-use.com/api/v2/credits \\
  -H "X-Browser-Use-API-Key: $BROWSER_USE_API_KEY"

### When to Use

Complex multi-step web workflows
Sites that block simple scraping
Form filling and submissions
When you need screenshots of steps
When local browser control isn't available

### When NOT to Use

Simple page fetches (use web_fetch instead)
When you have local browser access (use browser tool)
Rapid/high-volume scraping (use Code Use or local scraping)
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: jfrux
- Version: 1.0.1
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-04-29T05:54:29.605Z
- Expires at: 2026-05-06T05:54:29.605Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/browser-use-api)
- [Send to Agent page](https://openagent3.xyz/skills/browser-use-api/agent)
- [JSON manifest](https://openagent3.xyz/skills/browser-use-api/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/browser-use-api/agent.md)
- [Download page](https://openagent3.xyz/downloads/browser-use-api)