URL to PDF
A real PDF with selectable text, not a screenshot wrapped in a page.
A paginated PDF where the text is text — searchable, selectable and copyable.
No result yet
Complete the settings and run the tool. Images, PDFs, text, and video all preview in this panel.
Questions
- Is the text selectable?
- Yes. The page is printed by the browser rather than photographed, so text stays text and links stay clickable.
- Can I fit everything on one page?
- The API has `pdf_fit_one_page`, which measures the document and sizes the paper to match.
Need this in your own code?
This tool is one call to the PageCapture API. The free plan gives you 100 captures a month with every feature unlocked, and no card.
Related tools
URL to PDF, with the margins and paper size you specify
Invoices, reports and receipts, rendered by the same browser your customers use to view them.
Paper formats
A0 through A6, Letter, Legal, Tabloid and Ledger.
Margins per side
pdf_margin sets all four; the per-side parameters override it.
Backgrounds preserved
pdf_print_background keeps the CSS backgrounds most print stylesheets drop.
Fit to one page
Measures the document and builds a custom paper size, capped so the result stays readable.
Move the same workflow into one API call.
The free tool and your integration use the same public endpoint. The API adds the controls, authentication and delivery options needed in production.
Open the API playgroundcurl -G https://api.pagecapture.dev/v1/take \
-H "X-Access-Key: $PAGECAPTURE_KEY" \
--data-urlencode "url=https://example.com/invoice/1042" \
-d "format=pdf" \
-d "pdf_print_background=true" \
-d "pdf_paper_format=a4" \
-d "pdf_margin=0.5" \
-o invoice.pdf