Pdfrender

Turn HTML into pixel-faithful PDFs with one API call — or one MCP tool call from your agent.

Try it now — no signup, no key:

curl -X POST https://api.pdfrender.dev/v1/render \
     -H 'Content-Type: application/json' \
     -d '{"html": "<h1>Hello</h1>"}' \
     -o hello.pdf
import requests
r = requests.post(
    "https://api.pdfrender.dev/v1/render",
    json={"html": "<h1>Hello</h1>"},
)
open("hello.pdf", "wb").write(r.content)

Plans

Free

€0/mo

100 credits / month

Essential

€20/mo

10,000 credits / month

Scale

€80/mo

100,000 credits / month