Puppeteer HTML to PDF
If you currently use Puppeteer for HTML to PDF, you can offload rendering to API for lower maintenance and stable output.
curl -X POST "https://shipany2-pdf-sandbox.vercel.app/api/pdf" \
-H "content-type: application/json" \
-d '{"html":"<html><body><h1>Hello</h1></body></html>"}' \
--output out.pdfFAQ: Puppeteer HTML to PDF
Why move from Puppeteer to API?
API offloads browser maintenance and keeps rendering output more predictable across environments.
Can I still keep my existing Puppeteer pipeline?
Yes. You can gradually replace the PDF step by calling the API from your current job runner.
