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 Admin 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 Admin 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.