This workflow follows the Emailsend → 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 →
{
"nodes": [
{
"parameters": {
"triggerTimes": {
"item": [
{
"mode": "everyHour"
}
]
}
},
"name": "Hourly Trigger",
"type": "n8n-nodes-base.cron",
"typeVersion": 1,
"position": [
200,
300
]
},
{
"parameters": {
"url": "https://api.example.com/health",
"responseFormat": "json"
},
"name": "Check API",
"type": "n8n-nodes-base.httpRequest",
"typeVersion": 1,
"position": [
500,
300
]
},
{
"parameters": {
"conditions": {
"boolean": [
{
"value1": "={{$json.status === 'ok'}}",
"value2": true
}
]
}
},
"name": "Is Healthy",
"type": "n8n-nodes-base.if",
"typeVersion": 1,
"position": [
800,
300
]
},
{
"parameters": {
"fromEmail": "alerts@example.com",
"toEmail": "admin@example.com",
"subject": "API Health Check Failed",
"text": "The health check returned an unexpected response: {{$json}}"
},
"name": "Send Alert",
"type": "n8n-nodes-base.emailSend",
"typeVersion": 1,
"position": [
1100,
420
]
}
],
"connections": {
"Hourly Trigger": {
"main": [
[
{
"node": "Check API",
"type": "main",
"index": 0
}
]
]
},
"Check API": {
"main": [
[
{
"node": "Is Healthy",
"type": "main",
"index": 0
}
]
]
},
"Is Healthy": {
"main": [
[],
[
{
"node": "Send Alert",
"type": "main",
"index": 0
}
]
]
}
}
}
For the full experience including quality scoring and batch install features for each workflow upgrade to Pro
About this workflow
Workflow-Api-Health-Check. Uses httpRequest, emailSend. Scheduled trigger; 4 nodes.
Source: https://github.com/Rumman90/n8n-workflows/blob/main/workflows/workflow-api-health-check.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.
E-Décor - Support Client. Uses httpRequest, emailSend. Scheduled trigger; 5 nodes.
CEO_MORNING_REPORT. Uses httpRequest, emailSend, twilioSms. Scheduled trigger; 4 nodes.
29-fluxo-caixa-projecao-semanal. Uses httpRequest, emailSend. Scheduled trigger; 4 nodes.
This workflow is an improvement of this workflow by Greg Brzezinka.
N8N-Self-Updater. Uses ssh, emailSend, httpRequest. Scheduled trigger; 27 nodes.