What is Gotenberg?
Gotenberg is a Docker-based API for converting documents to PDF. Send your files via multipart/form-data, get a PDF back. No need to manage Chromium, LibreOffice, or fonts yourself.
Quick Start
Two commands to convert a URL to PDF:
# 1. Start the container.
docker run --rm -p "3000:3000" gotenberg/gotenberg:8
# 2. Convert a URL to PDF.
curl \
--request POST http://localhost:3000/forms/chromium/convert/url \
--form url=https://sparksuite.github.io/simple-html-invoice-template/ \
-o invoice.pdf
What's Next?
Get started with Gotenberg by reading the installation guide.

