This workflow follows the Error 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": "Clean Example",
"nodes": [
{
"name": "Schedule Trigger",
"type": "n8n-nodes-base.scheduleTrigger",
"typeVersion": 1,
"position": [
0,
0
],
"parameters": {}
},
{
"name": "Fetch Data",
"type": "n8n-nodes-base.httpRequest",
"typeVersion": 4,
"position": [
200,
0
],
"retryOnFail": true,
"maxTries": 3,
"parameters": {
"url": "https://api.example.com/data"
},
"credentials": {
"httpHeaderAuth": {
"name": "<your credential>"
}
}
},
{
"name": "Error Trigger",
"type": "n8n-nodes-base.errorTrigger",
"typeVersion": 1,
"position": [
0,
200
],
"parameters": {}
},
{
"name": "Notify Ops",
"type": "n8n-nodes-base.slack",
"typeVersion": 2,
"position": [
200,
200
],
"parameters": {},
"credentials": {
"slackApi": {
"name": "<your credential>"
}
}
}
],
"connections": {
"Schedule Trigger": {
"main": [
[
{
"node": "Fetch Data",
"type": "main",
"index": 0
}
]
]
},
"Error Trigger": {
"main": [
[
{
"node": "Notify Ops",
"type": "main",
"index": 0
}
]
]
}
}
}
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.
httpHeaderAuthslackApi
For the full experience including quality scoring and batch install features for each workflow upgrade to Pro
About this workflow
Clean Example. Uses httpRequest, errorTrigger, slack. Scheduled trigger; 4 nodes.
Source: https://github.com/Redsf/n8n-workflow-linter/blob/main/examples/scheduled_api_sync.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.
Stop the daily grind of checking multiple apps just to stay updated. This template automates the creation of recurring digests by querying a powerful AI assistant you build on the Super platform.
Automated Content Pipeline. Uses httpRequest, slack. Scheduled trigger; 9 nodes.
Politician Social Media Monitor. Uses httpRequest, slack. Scheduled trigger; 7 nodes.
6️⃣ Full Pipeline - News → Webhook → Blotato → Analytics. Uses httpRequest, slack. Scheduled trigger; 7 nodes.
Flow. Uses httpRequest, slack, pagerDuty. Scheduled trigger; 7 nodes.