PdfPilot
Open PDF Studio

APP.PDFPILOT.DEV

Turn webpages and HTML into PDF in seconds.

No setup. No install. Paste content, click generate, download your PDF.

PDF Studio

Choose source type and generate your file.

1. Paste your source

Use either a page URL or plain HTML content.

2. Generate

PdfPilot renders with headless Chromium for consistent output.

3. Download

Your browser downloads the file immediately after rendering.

4. Repeat

Use it directly from app.pdfpilot.dev anytime.

API

Use these endpoints if you want to integrate PdfPilot in your own apps.

POST /pdf/html

curl -X POST https://app.pdfpilot.dev/pdf/html \
  -H "Content-Type: application/json" \
  -d '{
    "html": "<h1>Invoice #1042</h1>",
    "fileName": "invoice.pdf",
    "format": "A4",
    "printBackground": true
  }' \
  --output invoice.pdf

POST /pdf/url

curl -X POST https://app.pdfpilot.dev/pdf/url \
  -H "Content-Type: application/json" \
  -d '{
    "url": "https://example.com/report",
    "fileName": "report.pdf",
    "format": "A4",
    "printBackground": true
  }' \
  --output report.pdf