See what Pressa can generate

Real document examples for AI agents and developers. Each one is a single API call away.

SaaS Invoice PDF example

SaaS Invoice

PDF

Itemized billing with company branding, tax calculations, and payment terms.

"Generate an invoice for Acme Corp. 3 line items: API calls ($299), storage ($49), and support ($99). Net-30 payment terms, 8% tax. Include our logo and bank details."

invoice.tex
\documentclass{article}
\usepackage{booktabs, tabularx}
\begin{document}
\begin{center}
{\Large\bfseries INVOICE} \\[4pt]
Invoice \#2026-0042
\end{center}
% ... line items table, totals ...
\end{document}
curl
$ curl -X POST https://api.pressa.dev/api/v1/compile \
-H "Authorization: Bearer pressa_..." \
-d '{"latex": "\\documentclass{...}"}'
Monthly KPI Report PDF example

Monthly KPI Report

PDF

Executive dashboard with charts, trend analysis, and automated performance summaries.

"Create a monthly KPI report for March 2026. Revenue: $142K (up 12%), churn: 2.1%, NPS: 72. Include a bar chart of MRR over the last 12 months and a summary table of top metrics."

report.tex
\documentclass{article}
\usepackage{pgfplots, booktabs}
\begin{document}
\section*{Monthly KPI Report}
\begin{tikzpicture}
\begin{axis}[ybar, ...]
\addplot coordinates {
(Jan,98) (Feb,105) ...
};
\end{axis}
% ... metrics table ...
\end{document}
curl
$ curl -X POST https://api.pressa.dev/api/v1/compile \
-H "Authorization: Bearer pressa_..." \
-d '{"latex": "\\documentclass{...}"}'
Course Certificate PDF example

Course Certificate

PDF

Branded completion certificates with unique IDs, QR verification, and elegant typography.

"Create a certificate of completion for 'Advanced Machine Learning' course. Student: Sarah Chen. Date: March 15, 2026. Include a gold border, the academy logo placeholder, and a QR code for verification."

certificate.tex
\documentclass[landscape]{article}
\usepackage{tikz, qrcode}
\begin{document}
\begin{tikzpicture}[overlay]
\draw[gold, line width=3pt]
(0.5,0.5) rectangle (\pw,\ph);
\end{tikzpicture}
% ... centered name, course ...
\end{document}
curl
$ curl -X POST https://api.pressa.dev/api/v1/compile \
-H "Authorization: Bearer pressa_..." \
-d '{"latex": "\\documentclass{...}"}'
NDA Contract PDF example

NDA / Contract

PDF

Legally structured agreements with numbered clauses, signature blocks, and professional formatting.

"Draft a mutual NDA between TechCorp Inc. and DataFlow LLC. Standard 2-year term, include definitions of confidential information, permitted disclosures, and signature blocks for both parties."

nda.tex
\documentclass{article}
\usepackage{enumitem, geometry}
\begin{document}
\begin{center}
{\Large\bfseries
MUTUAL NON-DISCLOSURE}
\end{center}
\begin{enumerate}
\item \textbf{Definitions} ...
% ... clauses, signatures ...
\end{document}
curl
$ curl -X POST https://api.pressa.dev/api/v1/compile \
-H "Authorization: Bearer pressa_..." \
-d '{"latex": "\\documentclass{...}"}'
Security Incident Report PDF example

Security Incident Report

PDF

Structured incident documentation with severity levels, timelines, and remediation steps.

"Create a security incident report. Severity: HIGH. Unauthorized API access detected on March 12 at 14:23 UTC. Include timeline, affected systems, root cause analysis, and remediation steps."

incident.tex
\documentclass{article}
\usepackage{xcolor, booktabs}
\begin{document}
\section*{Security Incident Report}
\textbf{Severity:}
\colorbox{red!15}{\textcolor{red}
{\textbf{HIGH}}}
% ... timeline, analysis ...
\end{document}
curl
$ curl -X POST https://api.pressa.dev/api/v1/compile \
-H "Authorization: Bearer pressa_..." \
-d '{"latex": "\\documentclass{...}"}'
Financial Summary PDF example

Financial Summary

PDF

Revenue breakdowns, expense tables, and profit summaries with precise numerical formatting.

"Generate a Q1 2026 financial summary. Revenue: $1.2M, COGS: $340K, operating expenses: $520K. Break down revenue by product line (API, Enterprise, Self-serve). Include gross and net margins."

financial.tex
\documentclass{article}
\usepackage{booktabs, siunitx}
\begin{document}
\section*{Q1 2026 Financial Summary}
\begin{tabular}{l S S}
\toprule
{Line Item} & {Amount} \\
\midrule
Revenue & 1200000 \\
% ... expenses, margins ...
\end{document}
curl
$ curl -X POST https://api.pressa.dev/api/v1/compile \
-H "Authorization: Bearer pressa_..." \
-d '{"latex": "\\documentclass{...}"}'

Ready to create your first PDF?

Install Pressa, describe what you need, and get a publication-quality document in seconds. Free to start.