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": [
{
"name": "On clicking 'execute'",
"type": "n8n-nodes-base.manualTrigger",
"position": [
240,
300
],
"parameters": {},
"typeVersion": 1
},
{
"name": "Is new?",
"type": "n8n-nodes-base.if",
"position": [
680,
300
],
"parameters": {
"conditions": {
"string": [
{
"value1": "={{$json[\"Processed\"]}}",
"operation": "isEmpty"
}
]
}
},
"typeVersion": 1
},
{
"name": "Do something here",
"type": "n8n-nodes-base.noOp",
"position": [
900,
100
],
"parameters": {},
"typeVersion": 1
},
{
"name": "Mark Row as processed",
"type": "n8n-nodes-base.googleSheets",
"position": [
1120,
300
],
"parameters": {
"key": "ID",
"options": {},
"sheetId": "1SdnwaIJ6xwaZl006FmK2j4f-b00tq7tT7iQgdfe7Qh4",
"operation": "update",
"authentication": "oAuth2"
},
"credentials": {
"googleSheetsOAuth2Api": {
"name": "<your credential>"
}
},
"typeVersion": 1
},
{
"name": "Read sheet",
"type": "n8n-nodes-base.googleSheets",
"position": [
460,
300
],
"parameters": {
"options": {},
"sheetId": "1SdnwaIJ6xwaZl006FmK2j4f-b00tq7tT7iQgdfe7Qh4",
"authentication": "oAuth2"
},
"credentials": {
"googleSheetsOAuth2Api": {
"name": "<your credential>"
}
},
"typeVersion": 1
},
{
"name": "Set processed value",
"type": "n8n-nodes-base.set",
"position": [
900,
300
],
"parameters": {
"values": {
"string": [
{
"name": "Processed",
"value": "={{ $now.toISO() }}"
}
]
},
"options": {}
},
"typeVersion": 1
},
{
"name": "Run every 5 minutes",
"type": "n8n-nodes-base.interval",
"position": [
240,
100
],
"parameters": {
"unit": "minutes",
"interval": 5
},
"typeVersion": 1
}
],
"connections": {
"Is new?": {
"main": [
[
{
"node": "Do something here",
"type": "main",
"index": 0
},
{
"node": "Set processed value",
"type": "main",
"index": 0
}
]
]
},
"Read sheet": {
"main": [
[
{
"node": "Is new?",
"type": "main",
"index": 0
}
]
]
},
"Run every 5 minutes": {
"main": [
[
{
"node": "Read sheet",
"type": "main",
"index": 0
}
]
]
},
"Set processed value": {
"main": [
[
{
"node": "Mark Row as processed",
"type": "main",
"index": 0
}
]
]
},
"On clicking 'execute'": {
"main": [
[
{
"node": "Read sheet",
"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.
googleSheetsOAuth2Api
For the full experience including quality scoring and batch install features for each workflow upgrade to Pro
About this workflow
Identify New Google Sheets Rows. Uses manualTrigger, noOp, googleSheets, interval. Event-driven trigger; 7 nodes.
Source: https://github.com/Zie619/n8n-workflows — 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.
Blotato. Uses googleSheets, @blotato/n8n-nodes-blotato. Event-driven trigger; 65 nodes.
keyword_rank_tracker_google_sheets. Uses googleSheets, googleBigQuery. Event-driven trigger; 30 nodes.
AI ImgGen. Uses manualTrigger, stickyNote, convertToFile, splitInBatches. Event-driven trigger; 21 nodes.
Google Maps Scraper. Uses manualTrigger, googleSheets, httpRequest, itemLists. Event-driven trigger; 20 nodes.
Google Maps Scraper No API. Uses manualTrigger, removeDuplicates, splitInBatches, limit. Event-driven trigger; 15 nodes.