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": "Homes.com Deal Enrichment",
"version": 1,
"nodes": [
{
"name": "Start",
"type": "n8n-nodes-base.manualTrigger",
"typeVersion": 1,
"position": [
0,
0
]
},
{
"name": "Read Sheet",
"type": "n8n-nodes-base.googleSheets",
"typeVersion": 3,
"position": [
250,
0
],
"parameters": {
"operation": "read",
"sheetName": "",
"rangeDefinition": "Data",
"valueRenderMode": "UNFORMATTED_VALUE",
"returnAll": true
},
"credentials": {
"googleApi": {
"name": "<your credential>"
}
}
},
{
"name": "SplitInBatches",
"type": "n8n-nodes-base.splitInBatches",
"typeVersion": 1,
"position": [
500,
0
],
"parameters": {
"batchSize": 1
}
},
{
"name": "HTTP Request",
"type": "n8n-nodes-base.httpRequest",
"typeVersion": 2,
"position": [
750,
0
],
"parameters": {
"authentication": "none",
"url": "={{$json[\"Homes_URL\"]}}",
"responseFormat": "string"
}
},
{
"name": "Extract Deals",
"type": "n8n-nodes-base.function",
"typeVersion": 1,
"position": [
1000,
0
],
"parameters": {
"functionCode": "const html = items[0].json;\nconst text = typeof html === \"string\" ? html : JSON.stringify(html);\nfunction extractNumberAfter(label) {\n const idx = text.indexOf(label);\n if (idx === -1) return 0;\n const slice = text.slice(idx, idx + 400);\n const match = slice.match(/(\\d{1,3}(?:,\\d{3})*|\\d+)/);\n if (!match) return 0;\n return parseInt(match[1].replace(/,/g, ''), 10);\n}\nconst buyerDeals = extractNumberAfter(\"Buyer Deals\");\nconst sellerDeals = extractNumberAfter(\"Seller Deals\");\nreturn [\n {\n json: {\n Deals_1Y_Buyer: buyerDeals,\n Deals_1Y_Seller: sellerDeals,\n Deals_1Y_Total: buyerDeals + sellerDeals\n }\n }\n];"
}
},
{
"name": "Update Sheet",
"type": "n8n-nodes-base.googleSheets",
"typeVersion": 3,
"position": [
1250,
0
],
"parameters": {
"operation": "update",
"sheetName": "",
"updateKey": "Email",
"keyValue": "={{$node[\"SplitInBatches\"].json[\"Email\"]}}",
"dataToSend": {
"fields": {
"Deals_1Y_Buyer": "={{$json[\"Deals_1Y_Buyer\"]}}",
"Deals_1Y_Seller": "={{$json[\"Deals_1Y_Seller\"]}}",
"Deals_1Y_Total": "={{$json[\"Deals_1Y_Total\"]}}"
}
}
},
"credentials": {
"googleApi": {
"name": "<your credential>"
}
}
},
{
"name": "Wait",
"type": "n8n-nodes-base.wait",
"typeVersion": 1,
"position": [
1500,
0
],
"parameters": {
"waitTime": 2000
}
}
],
"connections": {
"Start": {
"main": [
[
{
"node": "Read Sheet",
"type": "main",
"index": 0
}
]
]
},
"Read Sheet": {
"main": [
[
{
"node": "SplitInBatches",
"type": "main",
"index": 0
}
]
]
},
"SplitInBatches": {
"main": [
[
{
"node": "HTTP Request",
"type": "main",
"index": 0
}
]
]
},
"HTTP Request": {
"main": [
[
{
"node": "Extract Deals",
"type": "main",
"index": 0
}
]
]
},
"Extract Deals": {
"main": [
[
{
"node": "Update Sheet",
"type": "main",
"index": 0
}
]
]
},
"Update Sheet": {
"main": [
[
{
"node": "Wait",
"type": "main",
"index": 0
}
]
]
},
"Wait": {
"main": [
[
{
"node": "SplitInBatches",
"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.
googleApi
For the full experience including quality scoring and batch install features for each workflow upgrade to Pro
About this workflow
Homes.com Deal Enrichment. Uses googleSheets, httpRequest. Event-driven trigger; 7 nodes.
Source: https://gist.github.com/Scottyx24/52869b8bd3ce548d78cc76b304b2d7a4 — 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.
TrackCollect_deeper. Uses googleSheets, httpRequest, @n-octo-n/n8n-nodes-json-database, itemLists. Event-driven trigger; 80 nodes.
This template is ideal for solo store owners, eCommerce marketers, automation beginners, or anyone using Shopify and Gmail who wants to recover lost revenue without coding.
PCN. Uses googleSheets, httpRequest, @n-octo-n/n8n-nodes-json-database, itemLists. Event-driven trigger; 60 nodes.
Product Ad Machine. Uses googleDrive, googleSheets, httpRequest, @ffmpeg-micro/n8n-nodes-ffmpeg-micro. Event-driven trigger; 60 nodes.
Basic AI SEO KW Research n8n DataForSEO Gumroad 030125. Uses googleSheets, googleDrive, httpRequest. Event-driven trigger; 56 nodes.