PDF API Endpoints
PDFBolt has three conversion endpoints (Direct, Sync, Async) and one usage endpoint to check your remaining quota.
For an interactive view of endpoints, schemas, error responses, and webhook payloads, see the OpenAPI Reference.
Base URL
All API requests are made to:
https://api.pdfbolt.com
Authentication
Every request requires the API-KEY header. The same key works for all endpoints – conversion (/v1/direct, /v1/sync, /v1/async) and usage monitoring (/v1/usage).
API-KEY: XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX
Find your API key on the API Keys page in your Dashboard. You can manage up to 5 keys.
Quick Example
Convert a webpage to PDF and save it as webpage.pdf:
curl 'https://api.pdfbolt.com/v1/direct' \
-H 'API-KEY: XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX' \
-H 'Content-Type: application/json' \
-d '{"url": "https://example.com"}' \
-o webpage.pdf
This example converts a URL. You can also use HTML or a template ID with data – see source parameters for all input options.