Activity
Mon
Wed
Fri
Sun
Jan
Feb
Mar
Apr
May
Jun
Jul
Aug
Sep
Oct
Nov
Dec
What is this?
Less
More

Owned by James

AA
AI Agency with Dunbizzle

1 member • $37/m

Memberships

Skoolers

181k members • Free

6 contributions to AI Automations with Dunbizzle
n8n gemini setting
hey guys im having trouble with setting nano banana on n8n, can anybody help me with that
0 likes • 4d
What issue are you facing?
N8n
Can someone please tell me where I can download the viral video n8n templates?
0 likes • 4d
Hi, all of mine are currently on the community but if you want more head to - https://n8n.io/workflows/
0 likes • 4d
Hi mate, here's the yeti one
0 likes • 4d
The body cam one was more of a follow along tutorial
Trying to create remove background feature on my lovable app
Hey everyone! Idk how active this channel is, but I just created an AI image generator website and I wanted to integrate a feature that removes the background of the AI generated image. I am trying to use remove.bg, but I'm struggling with integrating this feature into my current workflow. Basically, when a user clicks on the "remove background" button on my website I want the background to be removed by remove.bg. If anyones curious this is my current workflow, if anyone knows how to create this feature into my lovable app I'd greatly appreciate it.
Trying to create remove background feature on my lovable app
0 likes • 25d
Hi Dylan, glad you enjoyed the video, sorry for such the late response: Modify your webhook to receive the action In the Webhook node, make sure the payload includes something like: { "action": "remove_bg", "image_url": "https://..." } Your Lovable front end simply needs to send this when the button is pressed. Add an IF node after the Webhook IF Condition Property: {{$json["action"]}} Operation: equals Value: remove_bg Now your workflow has two branches: true → run remove.bg false → run your existing image generator 3. Add an HTTP Request node for remove.bg remove.bg provides a REST API, so you’ll use a HTTP Request node. Node Settings Method: POST URL: https://api.remove.bg/v1.0/removebg Authentication Under headers: X-Api-Key: <YOUR_REMOVE_BG_API_KEY> Body Set Body Content Type = Form-Data (important) Add fields: Field Name Type Value image_url text {{$json["image_url"]}} size text auto Also add: accept: "application/json" Binary Output Set “Response Format → File” so N8N treats the output as image data. This outputs a binary “data” file containing the background-removed PNG. 4. Return the processed image back to Lovable Add a Webhook Response node and connect it to the remove.bg HTTP Request node. Set: Respond With: Binary Property Name: data (whatever your HTTP Request node outputs) Your front end receives the cleaned PNG directly. 🧩 FRONT-END LOGIC (Lovable) Your “Remove BG” button should send a request like: await fetch("https://your-n8n-webhook-url", { method: "POST", headers: { "Content-Type": "application/json" }, body: JSON.stringify({ action: "remove_bg", image_url: selectedImageURL }) }) .then(r => r.blob()) The blob returned is the cleaned image.
1-6 of 6
James Dunbizzle
1
1point to level up
@james-dunbizzle-9437
Whaddup

Active 4d ago
Joined Aug 19, 2025