This workflow follows the Google Sheets → 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": "Scheduled API to Google Sheets",
"active": false,
"nodes": [
{
"id": "1",
"name": "Schedule Trigger",
"type": "n8n-nodes-base.schedule",
"typeVersion": 1,
"position": [
100,
200
],
"parameters": {
"rule": "interval",
"interval": 60
}
},
{
"id": "2",
"name": "HTTP Request",
"type": "n8n-nodes-base.httpRequest",
"typeVersion": 1,
"position": [
300,
200
],
"parameters": {
"url": "https://api.example.com/data",
"method": "GET",
"headers": {
"Content-Type": "application/json"
}
}
},
{
"id": "3",
"name": "Google Sheets",
"type": "n8n-nodes-base.googleSheets",
"typeVersion": 1,
"position": [
500,
200
],
"parameters": {
"operation": "append",
"sheetId": "your_sheet_id",
"range": "A:C",
"values": [
[
"{{ $json.timestamp }}",
"{{ $json.value }}",
"{{ $json.status }}"
]
]
}
}
],
"connections": {
"Schedule Trigger": {
"main": [
[
{
"node": "HTTP Request",
"type": "main",
"index": 0
}
]
]
},
"HTTP Request": {
"main": [
[
{
"node": "Google Sheets",
"type": "main",
"index": 0
}
]
]
}
},
"settings": {},
"staticData": {}
}
For the full experience including quality scoring and batch install features for each workflow upgrade to Pro
About this workflow
Scheduled API to Google Sheets. Uses schedule, httpRequest, googleSheets. Scheduled trigger; 3 nodes.
Source: https://github.com/1987-Dmytro/n8n-agent/blob/main/examples/mock_workflow_2.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.
Linkedin Workflow. Uses httpRequest, googleSheets. Scheduled trigger; 39 nodes.
BSW Growth Agent · Lite (Free Tier). Uses googleSheets, googleDrive, httpRequest, gmail. Scheduled trigger; 21 nodes.
Founder's Discovery Engine. Uses googleSheets, googleDrive, httpRequest, gmail. Scheduled trigger; 21 nodes.
R25 | The Ultimate Publishing Agent. Uses scheduleTrigger, googleSheets, httpRequest, stickyNote. Scheduled trigger; 15 nodes.
E-Commerce Auto Sync — Shopify ↔ Amazon + Claude Descriptions. Uses shopify, httpRequest, googleSheets. Scheduled trigger; 13 nodes.