PDFPipeDocs

Comparison

A hosted alternative to Gotenberg

Gotenberg is an excellent open-source PDF service, and it is free. The cost shows up elsewhere: you run the Docker container, you allocate the RAM each Chromium instance needs, you handle health checks and scaling, and you eat a cold start on every deploy. For a lot of teams that operational tax is not worth it. PDFPipe is the same idea, hosted.

Self-hosted versus hosted

PDFPipeSelf-hosted Gotenberg
You runNothingA Docker container, sized for Chromium
ScalingAutomaticYour problem
Cold startsNone you seeOn every deploy and scale-up
CostFlat per document, free below 500/moFree software, paid infrastructure and ops time
SecuritySSRF-sandboxed by defaultYou configure it
AI agentsFirst-class MCP serverNone

When to keep Gotenberg

If you have the DevOps capacity, need full data sovereignty, or run very high volume where per-document pricing adds up, self-hosting wins. PDFPipe is the better trade when you would rather ship product than operate a rendering service, especially below the volume where running your own cluster pays off.

The request looks familiar

curl -X POST https://api.pdfpipe.xyz/v1/pdf \
  -H "Authorization: Bearer pp_live_your_key" \
  -d '{"html":"<h1>Report</h1>","options":{"format":"A4"}}' \
  --output report.pdf

Try it on the live playground with no signup.

See pricing →