Playwright HTML to PDF
Use API-based rendering with Playwright-style workflows when you need consistent HTML to PDF output at scale.
const res = await fetch("https://shipany2-pdf-sandbox.vercel.app/api/pdf", {
method: "POST",
headers: { "content-type": "application/json" },
body: JSON.stringify({ url: "https://example.com" })
});FAQ: Playwright HTML to PDF
Is Playwright required if I use the API?
No. Playwright is optional. You can call the API directly from any backend service.
Does this support large batch rendering jobs?
Yes. Use async jobs and webhook callbacks for queue-based batch workflows.
