Getting Started
Authenticate and send your first request
Every FastPDF request requires an API key in the X-API-Key header. Follow the steps below to get a key and make your first conversion.
- 1key
Create an API key
Go to your Dashboard → API Keys page and click
New API Key. Copy and save the key — it's only shown once. - 2lock
Include it in every request
Pass the key as the
X-API-KeyHTTP header on all conversion requests. There is no Bearer prefix or OAuth flow — just the raw key value. - 3arrow_forward
Continue with an endpoint
For endpoint-specific request bodies, continue with Convert HTML to PDF or Convert URL to PDF.
Keep your API key out of version control. Store it in an environment variable — FASTPDF_API_KEY is a good name.
Verify connectivity
Before sending your first conversion, confirm the API is reachable with a single GET /health request. No API key required.
See the Health Check reference for the full response schema and use cases for uptime monitoring and CI pre-flight checks.
Quick start