The official, n8n-verified Browser Use node lets any workflow drive a real browser. Describe the task, get structured JSON back, chain it into the 400+ apps n8n already speaks to.
{
"node": "Browser Use",
"operation": "Run Task",
"parameters": {
"task": "Find the cheapest direct flight
from SFO to Tokyo next Friday
and return the price + airline",
"startUrl": "https://www.google.com/flights",
"structuredOutput": true
}
}{
"schema": {
"price": "number",
"airline": "string",
"departure": "string",
"arrival": "string"
},
"result": {
"price": 612,
"airline": "ANA",
"departure": "07:55",
"arrival": "11:20+1"
}
}Cron ─┐ Webhook ─┼─► Browser Use ─► Slack DB row ─┘ ─► Sheets Trigger → automate the browser → fan out the result.
{
"operation": "Run Task",
"parameters": {
"profileId": "linkedin-recruiter",
"task": "Open my saved searches
and export new candidates
from the last 24 hours"
}
}Run Task (async) ─► taskId
▼
Wait / Poll Task
▼
┌──────────────┐
│ status: done │
│ output: {…} │
└──────────────┘1. Install the node Settings → Community Nodes → Install Package: n8n-nodes-browser-use-cloud 2. Add your API key Credentials → New → Browser Use API Paste a key from cloud.browser-use.com 3. Drop it in a workflow Add the "Browser Use" node, pick "Run Task", and write what you want the browser to do.