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": "OpenClaw \u2014 Web Search \u2192 Post Results",
"nodes": [
{
"parameters": {},
"id": "trigger-1",
"name": "Manual Trigger",
"type": "n8n-nodes-base.manualTrigger",
"typeVersion": 1,
"position": [
250,
300
]
},
{
"parameters": {
"resource": "web_search",
"query": "OpenClaw AI agent framework",
"count": 5
},
"id": "openclaw-1",
"name": "Search Web",
"type": "CUSTOM.openClaw",
"typeVersion": 1,
"position": [
450,
300
],
"credentials": {
"openClawApi": {
"name": "<your credential>"
}
}
},
{
"parameters": {
"resource": "message",
"action": "send",
"channel": "slack",
"target": "general",
"message": "=Search results:\n{{ $json.results.map(r => `\u2022 ${r.title}: ${r.url}`).join('\\n') }}"
},
"id": "openclaw-2",
"name": "Post Results",
"type": "CUSTOM.openClaw",
"typeVersion": 1,
"position": [
650,
300
],
"credentials": {
"openClawApi": {
"name": "<your credential>"
}
}
}
],
"connections": {
"Manual Trigger": {
"main": [
[
{
"node": "Search Web",
"type": "main",
"index": 0
}
]
]
},
"Search Web": {
"main": [
[
{
"node": "Post Results",
"type": "main",
"index": 0
}
]
]
}
},
"settings": {
"executionOrder": "v1"
}
}
Credentials you'll need
Each integration node will prompt for credentials when you import. We strip credential IDs before publishing — you'll add your own.
openClawApi
For the full experience including quality scoring and batch install features for each workflow upgrade to Pro
About this workflow
OpenClaw — Web Search → Post Results. Uses CUSTOM. Event-driven trigger; 3 nodes.
Source: https://github.com/karmaniverous/n8n-nodes-openclaw/blob/main/examples/web-search-to-message.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.
Convert Docx From Url To Pdf Using Convertapi. Uses manualTrigger, httpRequest, readWriteFile, stickyNote. Event-driven trigger; 6 nodes.
Preparing Data To Be Sent To A Service. Uses manualTrigger, stickyNote, googleSheets, n8nTrainingCustomerDatastore. Event-driven trigger; 6 nodes.
Extract Contracts to a Register. Uses n8n-nodes-iterationlayer. Event-driven trigger; 6 nodes.
📄 Description: This workflow helps you migrate customer records directly from Odoo v15 to Odoo v18 without the need for manual exports or intermediate files.
Convert Xlsx To Pdf Using Convertapi. Uses manualTrigger, readWriteFile, stickyNote, httpRequest. Event-driven trigger; 5 nodes.