Critical-path latency
Browser startup and page rendering can push documents off the request path.
Rust execution keeps inline render calls predictable for user-facing flows.
Rechnungen, Verträge, Berichte, Bücher, Zertifikate — alles, was Typst setzen kann.
Render-Pfad
Synchrone API-Antworten
Runtime
Rust-Engine, kein Headless Browser
Powered by Typst under the hood.

Workflow canvas
Source to PDF in one synchronous path
Write
main.typ + data.json
Preview
Inline diagnostics path
Ship
Versioned API render
Why PDF stacks fail in production
Treat PDF generation as infrastructure: stable request contracts, predictable runtime behavior, and controlled version promotion.
Browser startup and page rendering can push documents off the request path.
Rust execution keeps inline render calls predictable for user-facing flows.
Queue workers, retries, and webhooks add moving parts to simple PDF delivery.
A synchronous render API removes pipeline complexity for core document paths.
Template edits without clear promotion rules create regressions in production.
Store templates in your own git repo. Send the Typst source directly with each request, or save it once and reference by ID.
Funktionen
Templates mit expliziten Verträgen bauen, validieren und ausrollen, damit das Produktionsverhalten vorhersagbar bleibt.
Templates mit Monaco, Diagnosen und direktem Pfad von der Quelle zum Laufzeit-Output erstellen.
Contract-first templates
Preview- und Produktionsrouten nutzen denselben deterministischen Render-Kern.
Inline preview
Schriften und Bilder einmal hochladen und per stabilen Dateireferenzen an Templates binden.
Assets once
Renders, Quoten und API-Keys mit klaren Limits und beobachtbaren Nutzungswerten verfolgen.
Usage visibility
Workflow
Ein dreistufiges Release-Modell wie in Produktion: erstellen, validieren, veröffentlichen.
Step 01
Templates liegen neben Datenverträgen, damit Schema und Layout gemeinsam weiterentwickelt werden.
Step 02
In Echtzeit rendern und Diagnosen direkt auf die fehlerhafte Zeile führen.
Step 03
Versionen mit klarer Audit-Spur promoten und in Produktion über die API rendern.
Security, API and MCP
Protect customer documents by default and keep audit conversations short. DocuForge gives teams secure delivery controls without slowing down shipping velocity.
TLS transport, authenticated APIs, and hardened defaults help teams clear security reviews without custom hardening projects.
Password-protected PDF delivery is built in for regulated workflows handling sensitive documents.
Credential and token handling defaults are designed to reduce leakage risk across render, billing, and webhook paths.
curl -X POST "$DOCUFORGE_API_URL/v1/render" \
-H "X-API-Key: $DOCUFORGE_API_KEY" \
-H "Content-Type: application/json" \
-d '{ "template_id": "tpl_123", "data": { "invoice_id": "1234" } }' \
--output invoice.pdfBlogs
Production-ready workflow
Starte mit der API-Referenz und liefere dieselben Payloads über deinen Produktionspfad aus.
Built for predictable latency under load.
TLS in transit plus hardened auth defaults.
Ship safely with stable template releases.