Generate Beautiful PDFsfrom JSON Schemas
Transform your data into professional PDF documents with our powerful JSON-to-PDF generator. Create reports, invoices, catalogs, and more with rich layouts, charts, and custom styling.
Everything you need to create stunning PDFs
Powerful components and features to build professional documents
Rich Styling Options
Complete control over typography, colors, spacing, borders, and layouts. Create pixel-perfect designs with comprehensive CSS-like styling.
Data Visualization
Built-in support for tables, charts, lists, and statistics cards. Transform your data into clear, professional visualizations.
Flexible Layouts
Flexbox, grid, containers, and rows for complex layouts. Build responsive designs that look great on any page size.
Cover Pages & Branding
Professional cover pages with logo positioning, gradients, and backgrounds. Perfect for reports, proposals, and branded documents.
Live Preview
Real-time JSON editor with syntax highlighting and validation. See your changes instantly with our live preview system.
Developer Friendly
Simple REST API, comprehensive documentation, and TypeScript support. Integrate PDF generation into any application.
25+ Professional Components
Everything you need to build complex documents
Perfect for any use case
Business Reports
Create professional financial reports, analytics dashboards, and executive summaries with charts, tables, and branded cover pages.
Invoices & Receipts
Generate branded invoices, receipts, and billing documents with customer information, itemized lists, and payment details.
Documentation
Build technical documentation, user manuals, and guides with structured layouts, code examples, and navigation.
Certificates & Forms
Create certificates, contracts, forms, and official documents with signature fields, custom branding, and professional layouts.
Ready to create beautiful PDFs?
Start building professional documents in minutes with our intuitive JSON schema.
Simple API Integration
Generate PDFs with a simple POST request
POST /api/generate
{
"document": {
"metadata": {
"title": "Monthly Report",
"author": "Your Company"
},
"pages": [{
"components": [
{
"type": "coverPage",
"title": "Monthly Report",
"subtitle": "January 2024",
"logo": "https://your-domain.com/logo.png",
"logoPosition": "top-right"
},
{
"type": "table",
"headers": ["Metric", "Value", "Change"],
"rows": [
{ "cells": [
{ "content": "Revenue" },
{ "content": "$45,678" },
{ "content": "+12%" }
]}
]
}
]
}]
}
}