This repository contains free-to-use HTML templates for you to generate PDF documents without needing to design and build your own.
The following templates are currently available:
It is a very common use case to send your customers PDFs of their invoices, this template is a simple, responsive HTML template that you can customise for your specific needs.
You can use PageCapture to convert this HTML template to a PDF with this simple curl command.
Replace APIKEY
with your api key from your free PageCapture account.
curl --header "Content-Type: application/json" \
--header "Api-Key: APIKEY" \
--data '{"source":"https://app.pagecapture.io/template/invoice"}' \
https://api.pagecapture.io/pdf \
-o invoice.pdf
Producing easy to beautiful and consumable PDF reports directly can be very difficult. Leverage your existing HTML and CSS skills to build your report and then convert it to PDF.
You can use PageCapture to convert this HTML template to a PDF with this simple curl command.
Replace APIKEY
with your api key from your free PageCapture account.
curl --header "Content-Type: application/json" \
--header "Api-Key: APIKEY" \
--data '{"source":"https://app.pagecapture.io/template/report"}' \
https://api.pagecapture.io/pdf \
-o invoice.pdf
Have an event coming up that you need to print tickets for? You can generate HTML pages containing your tickets, generate a PDF, and then print or email the PDF to your customers.
You can use PageCapture to convert this HTML template to a PDF with this simple curl command.
Replace APIKEY
with your api key from your free PageCapture account.
curl --header "Content-Type: application/json" \
--header "Api-Key: APIKEY" \
--data '{"source":"https://app.pagecapture.io/template/ticket"}' \
https://api.pagecapture.io/pdf \
-o invoice.pdf