Home › Catalog › PDF Converter › Why Forge PDF
iLovePDF and Smallpdf are the big, polished PDF suites — OCR, compression, splitting, e-signatures, Office conversion, mobile apps, the works. Their programmatic API sits behind a paid plan. The Forge PDF API does one family of jobs and does it free: convert a URL, raw HTML, or Markdown into a PDF, and merge PDFs together — no API key, no signup, no watermark, no file-count cap, rendered with Playwright for accurate output. It is the conversion endpoint you script; they are the full editing suites you click through.
| Feature | Forge PDF | iLovePDF / Smallpdf |
|---|---|---|
| Convert in the browser | ✓ | ✓ |
| Free REST API for scripts & CI | ✓ (/url-to-pdf, /html-to-pdf) | × (API is paid-plan only) |
| API key / signup | × | ✓ (account + key for API) |
| Watermark on free tier | × | some free flows / caps apply |
| URL → PDF | ✓ | partial (browser extensions; not a free API) |
| Markdown → PDF | ✓ (/md-to-pdf) | × |
| Merge PDFs | ✓ (/merge-pdf) | ✓ |
| Daily task / file-count cap | per-IP rate limit only | ✓ (free tier capped) |
| OCR, compress, split, e-sign, Office conversion | × | ✓ (full suites) |
| Cost | $0, no signup, no API key | Free w/ caps; API and pro features paid |
iLovePDF and Smallpdf gate their REST APIs behind paid developer plans. Forge's conversion endpoints are one curl away — no account, no key in your CI secrets:
curl "https://forge-node.tail2b516d.ts.net/url-to-pdf?url=https://example.com" -o page.pdf
Point it at a live URL and get a faithful PDF rendered by a real headless browser — CSS, web fonts, and layout intact. Or send Markdown and get a clean document back:
curl "https://forge-node.tail2b516d.ts.net/md-to-pdf" \
-H "Content-Type: application/json" \
-d '{"markdown":"# Invoice\n\nThanks for your order."}' -o invoice.pdf
The big suites focus on file-to-file operations; a free, scriptable URL-to-PDF and Markdown-to-PDF endpoint is exactly the gap Forge fills.
Free tiers on the big services often watermark output or cap you at a handful of tasks per day. Forge is rate-limited per IP but does not stamp a watermark or count your files against a daily quota.
Render an invoice, a report, or a receipt from server-side HTML straight to PDF in your pipeline via POST /html-to-pdf — no headless-browser setup of your own to maintain.
/merge-pdf.Yes. No signup, no API key, no watermark. Rate-limited per IP. See the PDF API docs for every endpoint and parameter.
URL to PDF, raw HTML to PDF, and Markdown to PDF, plus merging multiple PDFs into one. Rendering is done with Playwright for accurate layout.
No. Forge handles conversion and merging. For OCR, compression, splitting, or e-signatures, use a full suite like iLovePDF or Smallpdf.
Try the PDF Converter, or browse the full free API catalog for 15 more developer APIs in the same no-signup style.