Block 1 - Sticky Note
- Type / Role
- n8n-nodes-base.stickyNote - stickyNote
- Config choices
- Version 1
This workflow is provided as-is. Please review and test before using in production.
AI Background Removal Workflow This workflow automatically removes backgrounds from images stored in Airtable using the APImage API π‘₯ , then downloads and saves the processe...
n8n-nodes-base.stickynote, n8n-nodes-base.airtable, n8n-nodes-base.code, n8n-nodes-base.splitout, n8n-nodes-base.httprequest, n8n-nodes-base.googledrive, n8n-nodes-base.manualtrigger
This workflow is cataloged by N8N Workflows and links back to its original n8n.io source page by Gegenfeld.
Original n8n.io sourceThis workflow automatically removes backgrounds from images stored in Airtable using the APImage API π‘₯, then downloads and saves the processed images to Google Drive. Perfect for batch processing product photos, portraits, or any images that need clean, transparent backgrounds. The source (Airtable) and the storage (Google Drive) can be changed to any service or database you want/use.
This manual trigger starts the background removal process when clicked.
Customization Options:
Retrieves media files from your Airtable "Creatives Library" database.
Required Airtable Structure:
Customization Options:
Processes Airtable records and prepares thumbnail data for background removal.
Key Features:
// Selects best thumbnail quality
if (thumbnail.thumbnails?.large?.url) {
thumbnailUrl = thumbnail.thumbnails.large.url;
}
// Creates clean filename
cleanFileName: (record.fields['File Name'] || 'unknown')
.replace(/[^a-zA-Z0-9]/g, '_')
.toLowerCase()
Easy Customization for Different Databases:
Converts the array of thumbnails into individual items for parallel processing.
Calls the APImage service to remove backgrounds from images.
API Endpoint:
POST https://apimage.org/api/ai-remove-background
Request Configuration:
Authorization: Bearer YOUR_API_KEYimage_url: {{ $json.originalThumbnailUrl }}β Setup Required:
YOUR_API_KEY with your actual API keyDownloads the processed image from APImage's servers using the returned URL.
Saves processed images to your Google Drive in a "bg_removal" folder.
Customization Options:
Set up APImage API:
YOUR_API_KEY with your actual API keyBearer prefixConfigure Airtable:
Test the workflow:
Replace the Airtable integration with any data source containing image URLs:
Modify where processed images are stored:
Remove Background β Get a Record β Code β Split Out β APImage API β Download β Upload File
β‘ Processing Speed: Handles multiple images in parallel for fast batch processing
π Secure: API keys stored safely in n8n credentials
π Reliable: Built-in error handling and retry mechanisms
This catalog entry is organized from the workflow JSON. The node-level section below shows the executable blocks available for review before importing the template.
| Workflow | Remove image backgrounds with APImage AI: Airtable to Google Drive |
|---|---|
| Complexity | intermediate |
| Nodes | 14 |
| Categories | Content Creation, Multimodal AI |
| Author | Gegenfeld |
| Published | 25 Jul 2025 |
Use the JSON export at /data/workflows/6457/6457.json as the source template for this automation.
Open n8n, import the downloaded JSON, and review each node before activating the workflow.
Replace placeholder credentials, API keys, webhook URLs, account IDs, and environment-specific values with your own settings.
Run the workflow manually or in a staging workspace, inspect node output, and confirm downstream systems receive the expected data.
Enable the workflow only after testing, then monitor executions, errors, and rate limits during the first production runs.
Review imported nodes carefully before activation. This catalog entry is intended to help you inspect the workflow structure, understand required services, and find related templates faster.
Node names, credentials, schedules, webhook paths, and external service limits may need adjustment for your workspace.
AI Background Removal Workflow This workflow automatically removes backgrounds from images stored in Airtable using the APImage API π‘₯ , then downloads and saves the processe...
Review the workflow JSON, configure any required credentials in n8n, and test the automation in a safe workspace before using it in production.
Yes. Use the block-by-block analysis and the downloadable JSON to inspect each node, then adjust credentials, prompts, schedules, filters, or destinations for your Content Creation, Multimodal AI use case.