Introduction

Welcome to FinePDF, the developer-first infrastructure for pixel-perfect PDF generation. FinePDF allows you to generate compliant, beautiful invoices by simply sending a JSON payload.

Core Principles

  • API-First: Designed to be automated. No manual intervention required.
  • Performant: Invoices generated in milliseconds, globally available.
  • Beautiful: High-density, professional templates that look perfect in print and on screen.

Quick Start

To get started, you'll need an API key from your Dashboard. Once you have your key, you can make your first request to the generation endpoint.

curl -X POST https://api.finepdf.dev/v1/generate \
  -H "X-API-Key: fine_live_your_key" \
  -H "Content-Type: application/json" \
  -d '{
    "template": "minimal",
    "invoice_number": "INV-001",
    "items": [{ "description": "API Services", "price": 100 }]
  }'

New to FinePDF?

Check out our Authentication guide to learn how to secure your requests.