Skip to main content

Quick Start Guide

Below is a step-by-step guide to get up and running with PDFBolt's PDF generation API quickly. Test with cURL or Postman, or integrate using Node.js, Python, Java, PHP, C#, Go, Rust.

1. Sign Up and Get Your API Keyโ€‹

Start by signing up for an account. Once registered, you'll find your unique API key in the Dashboard under the API Keys section. Every new user is automatically enrolled in our free plan, which provides 100 document conversions per month to explore PDFBoltโ€™s features.

For more details on managing API keys, visit the Dashboard API Keys section.

Quick API Testing with Postman ๐Ÿš€

Click the button below to get started:

Run In Postman

2. Set Up Authorizationโ€‹

Securely access PDFBolt's API by including your unique API-KEY in the headers of your REST API requests:

API-KEY: YOUR-API-KEY

3. Make Your First Requestโ€‹

Choose your preferred endpoint and source combination using cURL.

โžก๏ธ Endpoints:

The Direct endpoint provides immediate PDF generation and returns the raw PDF file in the response.


โžก๏ธ Sources:

Convert any webpage into a PDF:

curl 'https://api.pdfbolt.com/v1/direct' \
-H 'Content-Type: application/json' \
-H 'API-KEY: XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX' \
-d '{
"url": "https://example.com",
"format": "A4",
"printBackground": true
}' \
-o webpage.pdf

4. Quick Start for Your Favorite Language and Postmanโ€‹

Ready to get started? Choose your favorite language or tool and follow our tailored stepโ€‘byโ€‘step guides to integrate PDFBolt with ease.