๐Ÿ“„

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

๐Ÿ“‹
Cover Pages
๐Ÿ“
Text & Headings
๐Ÿ“Š
Tables
๐Ÿ“ˆ
Charts
๐Ÿ–ผ๏ธ
Images
๐Ÿ“„
Lists
๐Ÿƒ
Cards
๐Ÿ“
Flexbox
โš
Grids
โž–
Dividers

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%" }
            ]}
          ]
        }
      ]
    }]
  }
}