This workflow follows the HTTP Request → Supabase 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": "fluxo-ingestao",
"nodes": [
{
"parameters": {
"httpMethod": "POST",
"path": "feedback",
"options": {}
},
"type": "n8n-nodes-base.webhook",
"typeVersion": 2.1,
"position": [
-192,
-64
],
"id": "df079ebf-8fd1-446d-987a-2bf04b6481a3",
"name": "Webhook"
},
{
"parameters": {
"method": "POST",
"url": "https://api.groq.com/openai/v1/chat/completions",
"authentication": "genericCredentialType",
"genericAuthType": "httpHeaderAuth",
"sendBody": true,
"specifyBody": "json",
"jsonBody": "={{\n {\n \"model\": \"llama-3.3-70b-versatile\",\n \"messages\": [\n {\n \"role\": \"system\",\n \"content\": \"Voc\u00ea \u00e9 um classificador de sentimentos. Classifique o sentimento do feedback. Regras estritas:\\n1. POSITIVO: Apenas se houver elogios claros, gratid\u00e3o ou satisfa\u00e7\u00e3o.\\n2. NEGATIVO: Se houver reclama\u00e7\u00e3o, erro, bug ou insatisfa\u00e7\u00e3o.\\n3. NEUTRO: D\u00favidas, perguntas, sugest\u00f5es de melhoria ou fatos sem emo\u00e7\u00e3o.\\n\\nResponda APENAS com uma das palavras: positivo, neutro, negativo. Sem pontua\u00e7\u00e3o.\"\n },\n {\n \"role\": \"user\",\n \"content\": $('Webhook').item.json.body.feedback\n }\n ]\n }\n}}",
"options": {}
},
"type": "n8n-nodes-base.httpRequest",
"typeVersion": 4.3,
"position": [
16,
-64
],
"id": "bbfd8486-a40a-4740-a77a-5512fbcda7a8",
"name": "HTTP Request",
"credentials": {
"httpHeaderAuth": {
"name": "<your credential>"
}
}
},
{
"parameters": {
"tableId": "feedbacks",
"fieldsUi": {
"fieldValues": [
{
"fieldId": "nome",
"fieldValue": "={{ $('Webhook').item.json.body.nome }}"
},
{
"fieldId": "email",
"fieldValue": "={{ $('Webhook').item.json.body.email }}"
},
{
"fieldId": "feedback",
"fieldValue": "={{ $('Webhook').item.json.body.feedback }}"
},
{
"fieldId": "sentimento",
"fieldValue": "={{ $json.choices[0].message.content }}"
}
]
}
},
"type": "n8n-nodes-base.supabase",
"typeVersion": 1,
"position": [
224,
-64
],
"id": "9d0d8045-e97d-4887-b348-c11934a2889d",
"name": "Create a row",
"credentials": {
"supabaseApi": {
"name": "<your credential>"
}
}
}
],
"connections": {
"Webhook": {
"main": [
[
{
"node": "HTTP Request",
"type": "main",
"index": 0
}
]
]
},
"HTTP Request": {
"main": [
[
{
"node": "Create a row",
"type": "main",
"index": 0
}
]
]
}
},
"active": true,
"settings": {
"executionOrder": "v1",
"availableInMCP": false
},
"versionId": "66acdb82-a8f6-4436-9dd2-7c4adf138e0c",
"meta": {
"templateCredsSetupCompleted": true
},
"id": "MWeMg5UM6sJf9CIsd3lkL",
"tags": []
}
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.
httpHeaderAuthsupabaseApi
For the full experience including quality scoring and batch install features for each workflow upgrade to Pro
About this workflow
fluxo-ingestao. Uses httpRequest, supabase. Webhook trigger; 3 nodes.
Source: https://github.com/jrchakalo/n8n-feedback/blob/ff711a8f4c0f0aa1cebac11602ee3c6277272d76/fluxo-ingestao.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.
operation34. Uses supabase, httpRequest. Webhook trigger; 4 nodes.
2. Refresh Pipedrive tokens. Uses stopAndError, stickyNote, supabase, httpRequest. Webhook trigger; 29 nodes.
This workflow provides an OAuth 2.0 auth token refresh process for better control. Developers can utilize it as an alternative to n8n's built-in OAuth flow to achieve improved control and visibility.
Buildnbloom - Typeform to Tier 1 Call. Uses supabase, airtable, httpRequest. Webhook trigger; 17 nodes.
Ai Assistant Workflow. Uses supabase, httpRequest, emailSend. Webhook trigger; 14 nodes.