This workflow follows the Gmail → 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": "monthly-financial-summary-email",
"nodes": [
{
"parameters": {
"rule": {
"interval": [
{
"field": "cronExpression",
"expression": "0 8 1 * *"
}
]
}
},
"id": "schedule",
"name": "Monthly Schedule",
"type": "n8n-nodes-base.scheduleTrigger",
"typeVersion": 1.2,
"position": [
240,
300
]
},
{
"parameters": {
"method": "GET",
"url": "={{$env.APP_API_BASE_URL}}/api/automation/monthly-summary?user_id=default",
"sendHeaders": true,
"headerParameters": {
"parameters": [
{
"name": "Authorization",
"value": "={{'Bearer ' + $env.AUTOMATION_WEBHOOK_TOKEN}}"
}
]
},
"options": {}
},
"id": "fetch-summary",
"name": "Fetch Monthly Summary",
"type": "n8n-nodes-base.httpRequest",
"typeVersion": 4.2,
"position": [
520,
300
]
},
{
"parameters": {
"sendTo": "={{$env.SUMMARY_EMAIL_TO}}",
"subject": "={{ $json.data.subject }}",
"emailType": "text",
"message": "={{ $json.data.body }}",
"options": {}
},
"id": "gmail",
"name": "Send Gmail Summary",
"type": "n8n-nodes-base.gmail",
"typeVersion": 2.1,
"position": [
780,
300
],
"credentials": {
"gmailOAuth2": {
"name": "<your credential>"
}
}
}
],
"connections": {
"Monthly Schedule": {
"main": [
[
{
"node": "Fetch Monthly Summary",
"type": "main",
"index": 0
}
]
]
},
"Fetch Monthly Summary": {
"main": [
[
{
"node": "Send Gmail Summary",
"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.
gmailOAuth2
For the full experience including quality scoring and batch install features for each workflow upgrade to Pro
About this workflow
monthly-financial-summary-email. Uses httpRequest, gmail. Scheduled trigger; 3 nodes.
Source: https://github.com/ChrisDANG-data/Household-Finance-AI/blob/main/automation/n8n/workflows/monthly-financial-summary-email.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.
[](https://youtu.be/mMEX4Zsz4XY)
Gmail Workflow. Uses gmail, httpRequest. Scheduled trigger; 7 nodes.
🔷 W6 — Veille hebdo → Claude → Buffer → Newsletter. Uses httpRequest, gmail. Scheduled trigger; 5 nodes.
ELECTRON - Backup Automatique. Uses httpRequest, gmail. Scheduled trigger; 3 nodes.
Relatórios aos Laboratórios. Uses httpRequest, gmail, formTrigger. Scheduled trigger; 54 nodes.