This workflow follows the Agent → 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": "Unsafe support agent",
"nodes": [
{
"id": "webhook",
"name": "Public Webhook",
"type": "n8n-nodes-base.webhook",
"parameters": {
"path": "support"
}
},
{
"id": "agent",
"name": "AI Agent",
"type": "@n8n/n8n-nodes-langchain.agent",
"parameters": {
"text": "Respond to the customer"
}
},
{
"id": "api",
"name": "Send response",
"type": "n8n-nodes-base.httpRequest",
"retryOnFail": true,
"maxTries": 10,
"waitBetweenTries": 0,
"parameters": {
"url": "https://api.example.com/messages",
"headerParameters": {
"parameters": [
{
"name": "Authorization",
"value": "Bearer vf_fake_0123456789abcdef"
}
]
}
}
},
{
"id": "shell",
"name": "Run Shell",
"type": "n8n-nodes-base.executeCommand",
"parameters": {
"command": "echo done"
}
}
],
"connections": {
"Public Webhook": {
"main": [
[
{
"node": "AI Agent",
"type": "main",
"index": 0
}
]
]
},
"AI Agent": {
"main": [
[
{
"node": "Send response",
"type": "main",
"index": 0
}
]
]
},
"Send response": {
"main": [
[
{
"node": "Run Shell",
"type": "main",
"index": 0
}
]
]
}
},
"settings": {}
}
For the full experience including quality scoring and batch install features for each workflow upgrade to Pro
About this workflow
Unsafe support agent. Uses agent, httpRequest, executeCommand. Webhook trigger; 4 nodes.
Source: https://github.com/domfelipe/vibeflow-n8n/blob/main/examples/unsafe-support-agent.workflow.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.
veo limpo new. Uses moveBinaryData, httpRequest, chatTrigger, baserow. Webhook trigger; 36 nodes.
Vocfy-Agents. Uses agent, lmChatGoogleGemini, httpRequest, httpRequestTool. Webhook trigger; 28 nodes.
N8N Workflow. Uses httpRequest, toolHttpRequest, memoryBufferWindow, lmChatGoogleGemini. Webhook trigger; 13 nodes.
This workflow automatically turns any YouTube video into a structured blog post with Gemini AI. By sending a simple POST request with a YouTube URL to a webhook, it downloads the video’s audio, transc
FE-BE-SELF. Uses httpRequest, n8n-nodes-minio, agent, chatTrigger. Webhook trigger; 12 nodes.