Learn how to integrate Browser Use Cloud API with n8n using a practical workflow example (competitor research).
TL;DR – In 3 minutes you can have an n8n workflow that:You can grab the workflow JSON below – copy it and import it into n8n, plug in your API keys and hit Execute 🚀.
- Shows a form asking for a competitor’s name
- Starts a Browser Use task that crawls the web and extracts pricing, jobs, new features & announcements
- Waits for the task to finish via a webhook
- Formats the output and drops a rich message into Slack
Form Trigger
– collect the competitor’s nameHTTP Request – Browser Use Run Task
/api/v1/run-task
with the following body:
structured_output_json
tells the agent which keys to return – no post-processing required.
• We tag the task with metadata.source
so the webhook can filter only our jobs.
Webhook
+ IF
– wait for task completion/get-research-data
and let the agent call it.
We only proceed when both conditions are true:
payload.status == "finished"
payload.metadata.source == "n8n-competitor-demo"
Get Task Details
session_id
. We fetch the full task record so we get the output
field containing the structured JSON from step 2.
Code – Generate Slack message
HTTP Request – Send to Slack
Want to… | How to do it |
---|---|
Extract different data | Edit structured_output_json to specify exactly what fields you need (pricing, reviews, contact info, etc.) and adjust the JS formatter. |
Send to Teams/Email/Notion | Swap the last Slack node for Teams, Gmail, or any of n8n’s 400+ connectors. |
Run automatically | Replace the Form trigger with a Cron trigger for daily/weekly competitor monitoring. |
Monitor multiple competitors | Use a Google Sheets trigger with a list of companies and loop through them. |
Add AI analysis | Pipe the extracted data through OpenAI/Claude to generate insights and summaries. |
Create alerts | Set up conditional logic to only notify when competitors announce new features or price changes. |
Build a dashboard | Send data to Airtable, Notion, or Google Sheets to build a real-time competitor intelligence dashboard. |
n8n Workflow JSON (click to expand)