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": "Leaky Example",
"nodes": [
{
"name": "Webhook",
"type": "n8n-nodes-base.webhook",
"typeVersion": 1,
"position": [
0,
0
],
"parameters": {
"path": "hook",
"httpMethod": "POST"
}
},
{
"name": "Call OpenAI",
"type": "n8n-nodes-base.httpRequest",
"typeVersion": 4,
"position": [
200,
0
],
"parameters": {
"url": "https://api.openai.com/v1/chat/completions",
"headerParametersJson": "{\"Authorization\": \"Bearer <redacted-credential>\"}"
},
"credentials": {
"openAiApi": {
"name": "<your credential>"
}
}
},
{
"name": "Append to Sheet",
"type": "n8n-nodes-base.googleSheets",
"typeVersion": 4,
"position": [
400,
0
],
"parameters": {
"documentId": {
"value": "1zcuAB3I_PDgwjmAvXOEoKM2lZFGizrJZU1IMIs6LpXI"
}
},
"credentials": {
"googleSheetsOAuth2Api": {
"name": "<your credential>"
}
}
}
],
"connections": {
"Webhook": {
"main": [
[
{
"node": "Call OpenAI",
"type": "main",
"index": 0
}
]
]
},
"Call OpenAI": {
"main": [
[
{
"node": "Append to 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.
googleSheetsOAuth2ApiopenAiApi
For the full experience including quality scoring and batch install features for each workflow upgrade to Pro
About this workflow
Leaky Example. Uses httpRequest, googleSheets. Webhook trigger; 3 nodes.
Source: https://github.com/Redsf/n8n-workflow-linter/blob/main/tests/fixtures/leaky.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.
Forgexe - Pilot Waitlist. Uses googleSheets, httpRequest. Webhook trigger; 5 nodes.
WA GCLID Tracking — Incoming Message to CRM. Uses httpRequest, googleSheets. Webhook trigger; 5 nodes.
Jane Riveros — Flujo 08 · Testimonios en piloto automático. Uses httpRequest, googleSheets. Webhook trigger; 5 nodes.
[Setup] Spanish Phone Survey — Create Sheet. Uses googleSheets, httpRequest. Webhook trigger; 4 nodes.
Resume Screening & Behavioral Interviews with Gemini, Elevenlabs, & Notion ATS copy. Uses googleDrive, httpRequest, notion, formTrigger. Webhook trigger; 67 nodes.