Comparisons & Reviews – Jun 25, 2026 – 5 min read
Free File Conversion API: Zamzar vs Convert Fleet (2026)

Free File Conversion API: Zamzar vs Convert Fleet (2026)
TL;DR: - Zamzar's API requires paid plans from ~$9/month; free tier is web-only with no API access - Convert Fleet offers a production-ready free file conversion API with 178+ formats, 100 req/min, and native n8n integration - For automation builders, the critical differentiator is cost predictability—not just headline price - Both use FFmpeg under the hood; only Convert Fleet offers self-hosted deployment with full codec control
You built an n8n workflow that processes user uploads. Everything works until your conversion step hits a rate limit, or worse—a per-file charge that makes your unit economics impossible. You've tried Zamzar's web uploader, but the API pricing is opaque and the free tier excludes API access entirely. You need a free file conversion API that scales with your automation, not against it.
This comparison cuts through marketing copy. We'll examine real numbers: rate limits, authentication models, supported formats, pricing curves, and n8n compatibility. By the end, you'll know which service fits your stack—and where the hidden costs actually hide.
What Is the Best File Conversion API for Automation?
The best file conversion API for automation is one that doesn't break your workflow—or your budget—when volume spikes. That means no per-conversion metering, simple token-based auth, and native integration with tools like n8n.
Most developers discover the problem too late. They pick a service based on the web uploader, build their integration, then find the API is a separate product with separate pricing. Or the "free" tier caps at 50 conversions per month, making it useless for anything production-grade.
According to Postman's 2023 State of the API Report, 53% of developers cite "pricing unpredictability" as the primary reason for switching APIs. File conversion APIs are particularly prone to this trap because vendors often obscure the true cost of batch operations behind credit systems or tiered overages.
Here's how Zamzar and Convert Fleet actually compare:
| Feature | Zamzar | Convert Fleet |
|---|---|---|
| Free API access | No | Yes |
| API starting price | ~$9/mo (Basic) | $0 |
| Rate limit (free) | N/A | 100 req/min |
| Rate limit (paid entry) | 1,000 credits/mo | 100 req/min or custom |
| Auth model | API key + IP whitelist | Bearer token, no IP lock |
| n8n native node | No | Yes |
| Self-host option | No | Docker container |
| Formats supported | 1,200+ | 178+ |
| Max file size (API) | 50 MB (Basic), 2 GB (Biz) | 2 GB default, negotiable |
| Per-conversion billing | Yes (credits) | No (flat/unlimited) |
The table tells the story for most builders. Zamzar's strength is its massive format catalog—over 1,200 formats including obscure CAD and legacy document types. Convert Fleet's strength is predictable pricing and automation-native design. If you're converting common formats (PDF, image, audio, video, Office docs) and running more than a few dozen files per month, the cost curve diverges fast.
How Zamzar Pricing Actually Works (And Where It Hurts)
Zamzar's pricing is credit-based. You buy a monthly allotment; each conversion costs one or more credits depending on file size and format complexity. The Basic plan at approximately $9/month includes 1,000 credits. Business plans scale to 5,000+ credits.
The pain point isn't the dollar amount—it's the uncertainty. A video conversion might consume 10 credits. A batch of 100 audio files burns your monthly budget in one job. You can't predict costs without testing each format, which makes budgeting for(let i = 0; i < batch.length; i++) { credits += await convert(batch[i]); if (credits > planLimit) throw new Error("Overage"); }
For teams building file conversion into a product, this model creates a direct conflict: every new user costs you money. That's why per-conversion billing is rare in infrastructure APIs—Stripe doesn't charge per API call, and neither do the best file conversion services.
See how Convert Fleet's flat-rate pricing works for high-volume use cases.
Convert Fleet's Free Tier: What's Actually Included
Convert Fleet's free file conversion API includes full access to all 178+ formats, 100 requests per minute, and 2 GB max file size. There's no credit system, no per-file charge, and no feature gating between free and paid tiers beyond rate limits and support.
The free tier is designed to be production-usable for small to medium workflows. A 100 req/min limit handles ~144,000 conversions per day—enough for most n8n automations, internal tools, and early-stage products. When you need more, you can self-host the open-source engine or upgrade to a paid plan with dedicated throughput.
The auth model is a single API token passed in the Authorization header. No IP whitelisting, no OAuth dance, no multiple credential types to manage. For n8n users, this means the native node configures in two fields: API endpoint and token.
How Do I Automate File Conversions in n8n?
You can automate file conversions in n8n using either HTTP Request nodes or a native integration node. The native node is faster to configure and handles polling, error retry, and file streaming automatically.
Here's the exact setup for Convert Fleet in n8n:
- Install the Convert Fleet node from the n8n community node catalog: Settings → Community Nodes → Search "Convert Fleet" → Install
- Create credentials with your API token from your Convert Fleet dashboard
- Add a Convert Fleet node to your workflow, select your operation (Convert, Compress, or Info)
- Map input file from a previous node (HTTP Request, Google Drive, S3, etc.) using
{{ $binary.data }}or file URL - Select output format from the dropdown—MP4, MP3uria MP3, PNG, PDF, DOCX, and 170+ others
- Set destination—download to n8n, send to S3, push to Slack, or forward to another API
- Run the workflow—the node handles streaming, progress polling, and error states
For Zamzar, you replace steps 1–3 with a generic HTTP Request node, manually construct the multipart upload, poll the status endpoint, and handle the download yourself. It's workable but adds 15–20 minutes of configuration and ongoing maintenance.
If you're building with Claude Code or Cursor, grab the ready-made workflow in the free download below—it includes error handling, format validation, and automatic retry logic.
What Are the Benefits of Using FFmpeg for File Conversion?
FFmpeg is the industry-standard engine for file conversion because it handles virtually every codec, container, and format variation without proprietary lock-in. Both Zamzar and Convert Fleet use FFmpeg under the hood, but the difference is who controls the deployment.
When you use a managed API like Zamzar, FFmpeg runs on their infrastructure. You don't see the command flags, can't optimize for your specific use case, and can't debug codec-level failures. When you self-host Convert Fleet, you get the full FFmpeg toolchain with configurable presets, hardware acceleration options, and direct log access.
Key benefits of FFmpeg-based conversion:
- Format coverage: 500+ codecs across 200+ container formats, including emerging standards like AV1 and Opus
- Quality control: CRF (Constant Rate Factor) tuning, two-pass encoding, and filter chains for precise output
- Speed: Hardware acceleration via NVENC, VAAPI, and VideoToolbox on supported instances
- Transparency: Full command-line visibility for debugging and optimization
For most automation use cases, the managed API is the right choice. But for teams with compliance requirements, unusual formats, or massive batch volumes, self-hosted FFmpeg is the only path that combines control with cost predictability.
Can I Convert Files Without Losing Quality?
Yes, but "without losing quality" means different things for different formats. Lossless conversion is possible for formats that support it (PNG to PNG, FLAC to FLAC, PDF to PDF with no re-rendering). Transcoding between lossy formats (MP3 to AAC, H.264 to H.265) always involves some generation loss.
The practical approach for automation workflows:
| Scenario | Strategy | FFmpeg Example |
|---|---|---|
| Archive original | Store source, never transcode | N/A |
| Lossless rewrap | Copy streams, change container | -c copy |
| Same-codec resize | Re-encode at high quality | -crf 18 -preset slow |
| Cross-format (lossy) | Target transparent quality | -q:a 0 (VBR 320kbps MP3) |
| Thumbnail/generate proxy | Accept loss for speed | -crf 28 -preset ultrafast |
The mistake most teams make is re-encoding unnecessarily. If your n8n workflow receives a PDF and needs a PDF, don't convert it—validate it. If you need a thumbnail, generate it from the source rather than from a previously compressed proxy. Convert Fleet's API includes a quality parameter that maps to these strategies, so you don't need to memorize FFmpeg flags.
Common Mistakes and Pitfalls When Choosing a File Conversion API
The most expensive mistake is optimizing for the wrong constraint. Teams fixate on format count when they should care about throughput, or chase a low per-conversion price and get destroyed by volume.
Mistakes we've seen in production workflows:
- Ignoring metadata stripping. Some APIs strip EXIF, XMP, or document properties by default. For legal or medical workflows, this is a data-loss event. Verify what survives conversion.
- Not testing with your actual files. A service that handles "test.pdf" perfectly may fail on a 200-page scanned document with embedded fonts. Test your 95th percentile files, not your simplest ones.
- Overlooking webhook vs. polling latency. Zamzar's API uses polling for job status. Convert Fleet supports both polling and webhooks. For real-time workflows, webhook latency is 10–100× lower.
- Forgetting about error handling. What happens when a 2 GB upload fails at 99%? Does the API resume, retry, or require a full re-upload? Check before you build.
- Assuming all "free" tiers are comparable. Zamzar's free tier is web-only; Convert Fleet's free tier includes full API access. The word "free" means radically different things.
File Conversion Software: Desktop vs. API vs. Self-Hosted
Not every team needs an API. Understanding the three deployment models prevents costly misalignment:
| Model | Best For | Trade-off |
|---|---|---|
| Desktop (HandBrake, Audacity) | One-off, manual conversions | No automation, local hardware limits |
| Cloud API (Zamzar, Convert Fleet) | Integration, variable volume | Network dependency, ongoing cost |
| Self-hosted (Convert Fleet Docker) | Compliance, fixed cost, scale | DevOps overhead, server management |
A 2024 survey by RapidAPI found that 67% of developers prefer flat-rate API pricing over usage-based models for infrastructure services. The preference is stronger for file conversion specifically because batch operations make usage unpredictable.
Who Should Choose Which?
Choose Zamzar if: you need an obscure format (MDL, OST, legacy CAD) and your volume is low enough that credit costs don't matter. The 1,200+ format catalog is genuinely unmatched for edge cases.
Choose Convert Fleet if: you're building automation, running n8n workflows, or need predictable costs at scale. The free file conversion API tier is production-usable, the n8n node saves hours of integration work, and self-hosting is available when compliance or cost requires it.
For most developers reading this, the decision is straightforward. Zamzar is a file conversion services company with an API. Convert Fleet is an API-first platform built for automation. The fit to your workflow matters more than the feature list.
Free download
To make this actionable, we built a free resource you can grab right now — no signup:
- ⬇ N8N Workflow: free-file-conversion-api-workflow-5bd309f29da0353a.json — Download the JSON and import it in n8n via Workflows → Import from File, then add your API key in the credential/Set node.
Frequently Asked Questions
What is the best file conversion API for high-volume automation? Convert Fleet, due to its flat-rate pricing, native n8n node, and no per-conversion metering. Zamzar's credit system becomes unpredictable above 1,000 conversions monthly.
How do I automate file conversions in n8n without writing code? Use Convert Fleet's native n8n node (install from Community Nodes). It handles auth, file streaming, and format selection through a visual interface—no custom HTTP configuration required.
What are the benefits of using FFmpeg for file conversion instead of a managed service? FFmpeg gives you codec-level control, hardware acceleration, and no per-file costs. Managed APIs abstract this away for convenience; self-hosted FFmpeg returns control for specialized needs.
Can I convert files without losing quality? Yes for lossless formats (copy streams, rewrap containers). No when transcoding between lossy codecs—though you can minimize loss with high bitrate targets and slow encoding presets.
Is there a truly free file conversion API with no hidden limits? Convert Fleet's free tier offers 100 req/min across 178+ formats with no credit system or feature gates. Zamzar's free tier is web-only; API access requires a paid plan.
Conclusion
The right free file conversion API depends on what you're actually building. Zamzar wins on format breadth. Convert Fleet wins on automation fit, cost predictability, and developer experience. If you're running n8n workflows, processing user uploads, or embedding conversion into a product, start with Convert Fleet's free tier—it's designed for exactly that.
Read next

Automation & Workflows · Jun 25, 2026
n8n AI Automation Workflows: Build a Document Extraction Agent (2026)
Build n8n AI automation workflows that extract data from PDFs and images. Learn how to pre-process files with ConvertFleet before LLM nodes read them.

Developer & APIs · Jun 25, 2026
File Content Conversion: 2026 Developer Guide to APIs, n8n & FFmpeg
File content conversion extracts structured data from PDFs, Office files, and images. Learn how it differs from format swapping, with real API examples.

File Conversion · Jun 25, 2026
File Content Conversion: Types, Methods & Free Tools (2026)
File content conversion explained: how it works, types of conversion, lossless methods, and the best free tools and APIs for developers and n8n workflows.