Zapier Integration
Connect 5000+ apps with SuperConverter
Zapier lets you connect SuperConverter to thousands of apps without code. Use the Webhooks by Zapier action to call our API endpoints.
Prerequisites
- Zapier account (free tier works for testing)
- SuperConverter API key from your dashboard
Step 1: Create a New Zap
- Log in to Zapier
- Click Create Zap
- Set up your trigger (e.g., Google Drive "New File in Folder")
Step 2: Add Webhooks by Zapier Action
- Click the + to add an action
- Search for Webhooks by Zapier
- Choose Custom Request (required for file uploads)
Step 3: Configure the Request
Method
POSTURL
https://api.superconverter.io/v1/heic-to-jpgReplace with the endpoint you need (see table below)
Headers
Authorization:Bearer YOUR_API_KEYData (Form)
file:Map to file URL from triggerquality:90File Handling in Zapier
Zapier passes files as URLs. SuperConverter will automatically fetch the file from the URL you provide. Make sure the URL is publicly accessible or includes authentication.
Example Zaps
Google Drive HEIC Converter
When a HEIC file is uploaded to Google Drive, convert it to JPG and save back to Drive.
Email Invoice Scanner
Extract data from invoice attachments and add to a spreadsheet.
Slack Image Compressor
When an image is posted to a channel, compress it and post the optimized version.
Customer Feedback Analyzer
Analyze sentiment of customer feedback and categorize in Airtable.
Handling API Responses
Binary Files (Images, PDFs, Videos)
The API returns the converted file directly. Use the Hydrate option in Zapier to save the file to cloud storage like Google Drive or Dropbox.
JSON Responses (AI Tools)
AI endpoints return JSON data. You can parse individual fields in subsequent Zapier steps.
{
"overall": "positive",
"score": 0.85,
"summary": "Very positive feedback..."
}Popular Endpoints
| Endpoint | Use Case |
|---|---|
/v1/heic-to-jpg | iPhone photo conversion |
/v1/compress-image | Optimize images for web |
/convert/compress-pdf | Reduce PDF file size |
/ai/invoice-scan | Extract invoice data |
/ai/sentiment | Analyze text sentiment |
/v1/qr-generator | Create QR codes |
Troubleshooting
401 Unauthorized
Check that your API key is correct and includes Bearer prefix.
File not uploading
Ensure the file URL from your trigger is publicly accessible. Some services require authentication.
413 File Too Large
Free tier has a 100MB file limit. Check our pricing page for larger file limits.