Back to Integrations

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

  1. Log in to Zapier
  2. Click Create Zap
  3. Set up your trigger (e.g., Google Drive "New File in Folder")

Step 2: Add Webhooks by Zapier Action

  1. Click the + to add an action
  2. Search for Webhooks by Zapier
  3. Choose Custom Request (required for file uploads)

Step 3: Configure the Request

Method

POST

URL

https://api.superconverter.io/v1/heic-to-jpg

Replace with the endpoint you need (see table below)

Headers

Authorization:Bearer YOUR_API_KEY

Data (Form)

file:Map to file URL from trigger
quality:90

File 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

Google DriveSuperConverterGoogle Drive

When a HEIC file is uploaded to Google Drive, convert it to JPG and save back to Drive.

Email Invoice Scanner

GmailSuperConverterGoogle Sheets

Extract data from invoice attachments and add to a spreadsheet.

Slack Image Compressor

SlackSuperConverterSlack

When an image is posted to a channel, compress it and post the optimized version.

Customer Feedback Analyzer

TypeformSuperConverterAirtable

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

EndpointUse Case
/v1/heic-to-jpgiPhone photo conversion
/v1/compress-imageOptimize images for web
/convert/compress-pdfReduce PDF file size
/ai/invoice-scanExtract invoice data
/ai/sentimentAnalyze text sentiment
/v1/qr-generatorCreate 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.