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 →
{
"_meta": {
"name": "Scheduled API Call Template",
"description": "Cron-triggered workflow that calls an API and handles response",
"usage": "Import into n8n, set schedule and API endpoint"
},
"nodes": [
{
"name": "Schedule",
"type": "n8n-nodes-base.scheduleTrigger",
"position": [
250,
300
],
"parameters": {
"rule": {
"interval": [
{
"field": "hours",
"hoursInterval": 1
}
]
}
}
},
{
"name": "HTTP Request",
"type": "n8n-nodes-base.httpRequest",
"position": [
450,
300
],
"parameters": {
"method": "GET",
"url": "https://api.example.com/endpoint",
"authentication": "genericCredentialType",
"genericAuthType": "httpHeaderAuth",
"options": {}
}
},
{
"name": "Check Success",
"type": "n8n-nodes-base.if",
"position": [
650,
300
],
"parameters": {
"conditions": {
"boolean": [
{
"value1": "={{ $json.success }}",
"value2": true
}
]
}
}
},
{
"name": "On Success",
"type": "n8n-nodes-base.noOp",
"position": [
850,
200
],
"parameters": {}
},
{
"name": "On Failure",
"type": "n8n-nodes-base.noOp",
"position": [
850,
400
],
"parameters": {}
}
],
"connections": {
"Schedule": {
"main": [
[
{
"node": "HTTP Request",
"type": "main",
"index": 0
}
]
]
},
"HTTP Request": {
"main": [
[
{
"node": "Check Success",
"type": "main",
"index": 0
}
]
]
},
"Check Success": {
"main": [
[
{
"node": "On Success",
"type": "main",
"index": 0
}
],
[
{
"node": "On Failure",
"type": "main",
"index": 0
}
]
]
}
}
}
For the full experience including quality scoring and batch install features for each workflow upgrade to Pro
About this workflow
Scheduled-Api-Call. Uses httpRequest. Scheduled trigger; 5 nodes.
Source: https://github.com/itsablabla/garza-os-github/blob/ea5b761ee18b142e1a174af5c3880f1f9e8790b4/templates/n8n/scheduled-api-call.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.
Obsidian Tag Index Refresher. Uses executeCommand, httpRequest. Scheduled trigger; 5 nodes.
E-Décor - Support Client. Uses httpRequest, emailSend. Scheduled trigger; 5 nodes.
77STF — Morning Digest (08:30 pon-pt). Uses httpRequest. Scheduled trigger; 5 nodes.
This workflow connects a USB scanner to Nextcloud via ScanservJS and the integrated API. It checks for new scans at a scheduled time (e.g., every 5 minutes). If there are any, they are automatically r