This workflow follows the Execute Workflow Trigger → HTTP Request recipe pattern — see all workflows that pair these two integrations.
The workflow JSON
Copy or download the full n8n JSON below. Paste it into a new n8n workflow, add your credentials, activate. Full import guide →
{
"name": "tool_search_web",
"nodes": [
{
"id": "Start",
"name": "Start",
"type": "n8n-nodes-base.executeWorkflowTrigger",
"typeVersion": 1,
"position": [
-420,
140
],
"parameters": {}
},
{
"id": "Brave Search",
"name": "Brave Search",
"type": "n8n-nodes-base.httpRequest",
"typeVersion": 4.2,
"position": [
-160,
140
],
"parameters": {
"method": "GET",
"url": "https://api.search.brave.com/res/v1/web/search",
"sendQuery": true,
"queryParameters": {
"parameters": [
{
"name": "q",
"value": "={{ $json.query }}"
},
{
"name": "count",
"value": "5"
}
]
},
"sendHeaders": true,
"headerParameters": {
"parameters": [
{
"name": "X-Subscription-Token",
"value": "={{ $env.BRAVE_API_KEY }}"
}
]
}
}
},
{
"id": "Format",
"name": "Format",
"type": "n8n-nodes-base.code",
"typeVersion": 2,
"position": [
80,
140
],
"parameters": {
"jsCode": "const results = $json.web?.results || [];\nreturn [{ results: results.map(r => ({ title: r.title, url: r.url, snippet: r.description })) }];"
}
}
],
"connections": {
"Start": {
"main": [
[
{
"node": "Brave Search",
"type": "main",
"index": 0
}
]
]
},
"Brave Search": {
"main": [
[
{
"node": "Format",
"type": "main",
"index": 0
}
]
]
}
},
"active": false
}
For the full experience including quality scoring and batch install features for each workflow upgrade to Pro
About this workflow
tool_search_web. Uses executeWorkflowTrigger, httpRequest. Event-driven trigger; 3 nodes.
Source: https://github.com/ogu83/n8n-ai-agent-lab/blob/main/ep2-persistent-agent/workflows/tool_search_web.json — original creator credit. Request a take-down →
Related workflows
Workflows that share integrations, category, or trigger type with this one. All free to copy and import.
🤖🧑💻 AI Agent for Top n8n Creators Leaderboard Reporting. Uses httpRequest, executeWorkflowTrigger, readWriteFile, googleDrive. Event-driven trigger; 49 nodes.
Memorybufferwindow Workflow. Uses emailSend, httpRequest, executeWorkflowTrigger, formTrigger. Event-driven trigger; 45 nodes.
Memorybufferwindow Workflow. Uses telegramTrigger, telegram, executeWorkflowTrigger, httpRequest. Event-driven trigger; 35 nodes.
Agent with custom HTTP Request. Uses httpRequest, executeWorkflowTrigger. Event-driven trigger; 20 nodes.
[2/2] KNN classifier (lands dataset). Uses httpRequest, stickyNote, executeWorkflowTrigger. Event-driven trigger; 18 nodes.