wkhtmltopdf was the go-to HTML-to-PDF tool for years — but its Qt WebKit engine hasn't received security patches since 2023 and doesn't support modern CSS. Renderly uses the real Chrome rendering engine, managed for you.
Start free — no credit card →<span class="cm"># ❌ Before — binary, shell exec, temp files, security flags</span> wkhtmltopdf --no-stop-slow-scripts --enable-local-file-access \ --javascript-delay 2000 \ input.html output.pdf
<span class="cm"># ✅ After — one curl call, no binary, no temp files</span>
curl -X POST https://api.renderlyapi.com/v1/pdf/from-html \
-H "Authorization: Bearer rly_live_…" \
-H "Content-Type: application/json" \
-d '{"html":"<h1>Hello</h1>","format":"A4"}' \
--output invoice.pdfFree tier — 50 PDFs/month, no credit card, API key on sign-up.
Start for free →