Browser Use API

👤 jfrux 📦 v1.0.1 ⭐ 4.4 ⬇️ 5.7K 下載
📊 資料分析 免費 🔑 需 API Key

📖 技能介紹


name: browser-use version: 1.0.0 description: Cloud browser automation via Browser Use API. Use when you need AI-driven web browsing, scraping, form filling, or multi-step web tasks without local browser control. Triggers on "browser use", "cloud browser", "scrape website", "automate web task", or when local browser isn't available/suitable. metadata: {"clawdbot":{"emoji":"🌐","requires":{"env":["BROWSER_USE_API_KEY"]}}}


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:

小蔥技能站7w4.net每天更新,海量AI技能等你發現。

# 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"

API Reference

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)

🤖 AI 評測

這個 Skill 質量不錯,通過雲端 API 實現瀏覽器自動化,適合需要網頁抓取、表單填寫等複雜任務的使用者。文件清晰易讀,提供了實用的輔助指令碼簡化操作。優點是上手簡單、功能說明完整,缺點是功能相對基礎,複雜自動化場景可能需要自行擴充套件。沒有示例檔案略顯遺憾,但整體值得一試。

📊 多維度評分

適應性4.5
規範性4.2
有效性4.6
可靠性4.4
可信度4.3

📁 包含檔案 (3 個)

📄 SKILL.md 2.5 KB
📄 _meta.json 134 B
📄 scripts/browser-use.sh 2 KB