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": "SnapCut AI - Workflows Export",
"nodes": [
{
"parameters": {
"httpMethod": "POST",
"path": "process-image",
"responseMode": "responseNode",
"options": {}
},
"id": "1",
"name": "Webhook Process Image Trigger",
"type": "n8n-nodes-base.webhook",
"typeVersion": 1,
"position": [
250,
300
]
},
{
"parameters": {
"conditions": {
"string": [
{
"value1": "={{$node[\"Webhook Process Image Trigger\"].json[\"body\"][\"imageUrl\"]}}",
"operation": "isNotEmpty"
}
]
}
},
"id": "2",
"name": "Validate Request Payload",
"type": "n8n-nodes-base.if",
"typeVersion": 1,
"position": [
450,
300
]
},
{
"parameters": {
"method": "POST",
"url": "https://api.remove.bg/v1.0/removebg",
"sendHeaders": true,
"headerParameters": {
"parameters": [
{
"name": "X-Api-Key",
"value": "={{$env.REMOVEBG_API_KEY}}"
}
]
},
"sendBody": true,
"contentType": "json",
"bodyParameters": {
"parameters": [
{
"name": "image_url",
"value": "={{$node[\"Webhook Process Image Trigger\"].json[\"body\"][\"imageUrl\"]}}"
},
{
"name": "size",
"value": "auto"
}
]
},
"options": {
"responseFormat": "file"
}
},
"id": "3",
"name": "Send request to Remove.bg AI",
"type": "n8n-nodes-base.httpRequest",
"typeVersion": 3,
"position": [
680,
280
]
},
{
"parameters": {
"authentication": "apiKey",
"method": "POST",
"url": "https://api.cloudinary.com/v1_1/{{$env.CLOUDINARY_CLOUD_NAME}}/image/upload",
"sendBody": true,
"contentType": "multipart-form-data",
"bodyParameters": {
"parameters": [
{
"name": "file",
"value": "={{$node[\"Send request to Remove.bg AI\"].binary.data}}"
},
{
"name": "upload_preset",
"value": "snapcut_temp"
},
{
"name": "folder",
"value": "snapcut/results"
}
]
},
"options": {}
},
"id": "4",
"name": "Upload Transparent result to Cloudinary",
"type": "n8n-nodes-base.httpRequest",
"typeVersion": 3,
"position": [
900,
280
]
},
{
"parameters": {
"operation": "update",
"table": "uploads",
"columns": "status, result_url, cloudinary_result_id",
"where": "id = {{$node[\"Webhook Process Image Trigger\"].json[\"body\"][\"uploadId\"]}}",
"updateData": {
"status": "completed",
"result_url": "={{$node[\"Upload Transparent result to Cloudinary\"].json[\"secure_url\"]}}",
"cloudinary_result_id": "={{$node[\"Upload Transparent result to Cloudinary\"].json[\"public_id\"]}}"
}
},
"id": "5",
"name": "Update status in Supabase DB",
"type": "n8n-nodes-base.supabase",
"typeVersion": 1,
"position": [
1120,
280
]
},
{
"parameters": {
"respondWith": "json",
"responseBody": "{\n \"status\": \"completed\",\n \"resultUrl\": \"{{$node[\"Upload Transparent result to Cloudinary\"].json[\"secure_url\"]}}\"\n}"
},
"id": "6",
"name": "Send Webhook response Node",
"type": "n8n-nodes-base.respondToWebhook",
"typeVersion": 1,
"position": [
1340,
280
]
}
],
"connections": {
"Webhook Process Image Trigger": {
"main": [
[
{
"node": "Validate Request Payload",
"type": "main",
"index": 0
}
]
]
},
"Validate Request Payload": {
"main": [
[
{
"node": "Send request to Remove.bg AI",
"type": "main",
"index": 0
}
]
]
},
"Send request to Remove.bg AI": {
"main": [
[
{
"node": "Upload Transparent result to Cloudinary",
"type": "main",
"index": 0
}
]
]
},
"Upload Transparent result to Cloudinary": {
"main": [
[
{
"node": "Update status in Supabase DB",
"type": "main",
"index": 0
}
]
]
},
"Update status in Supabase DB": {
"main": [
[
{
"node": "Send Webhook response Node",
"type": "main",
"index": 0
}
]
]
}
}
}
For the full experience including quality scoring and batch install features for each workflow upgrade to Pro
About this workflow
SnapCut AI - Workflows Export. Uses httpRequest, supabase. Webhook trigger; 6 nodes.
Source: https://github.com/Rudrant-Joshi/Background-remover/blob/6f55a3cda371f8ae0d4577fc71236e32f0ffd68b/n8n/workflows.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.
booking no duplicate. Uses httpRequest, supabase. Webhook trigger; 38 nodes.
01-intake-storage. Uses airtable, supabase, stopAndError, httpRequest. Webhook trigger; 33 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.
n8n-supabase-ai-pipeline. Uses supabase, httpRequest, postgres, readWriteFile. Webhook trigger; 25 nodes.