API Documentation
Everything you need to integrate our powerful HTML to PDF conversion service
Getting Started
Sign up for an account, obtain your API key, buy a few credits and start making requests to our endpoints.
Authentication
Authenticate your requests by including your API key in the header of each request.
Endpoints
Use our simple endpoints to convert your HTML and receive a PDF in return.
Authentication
Include your API key in the header of each request:
Authorization: Bearer YOUR_API_KEY
Endpoints
Generate PDF
POST /api/pdf/generate
Convert HTML5 to PDF. Each successful generation consumes 1 credit, unless you are using the test mode.
Request Body (JSON)
Properties:
html
Your HTML content as a string. Can be a full HTML document or partial HTML.
Note: please see below for more information on supported resources.
options
Configuration object to customize the PDF output. All options are optional.
default: see below
test
Set to true to use the test mode. This will not consume a credit. The generated PDF will contain sample watermarks.
default: false
{
html: "<html><body><h1>Hello, World!</h1></body></html>",
options: {
scale: 0.75,
margin: {
top: "0.5in",
right: "0.65in",
bottom: "0.5in",
left: "0.65in"
},
format: "Letter",
printBackground: true,
height: "11in",
width: "8.5in",
omitBackground: false,
preferCSSPageSize: false
},
test: false
}
Supported Resources:
Please note that while we support external resources, retrieval will affect rendering time, and may result in timeouts depending on network conditions. For CSS specifically, we recommend using inline styles. JavaScript is not supported.
Sample JSON Response:
{
"pdf": "base64EncodedPDFString..."
}
Returns a base64 encoded string of the generated PDF.
Important Notes:
- Each successful non-test PDF generation consumes 1 credit
- Users receive an email warning when credits reach their configured warning level
- Any options not in the allowed list will be silently filtered out. If the option cannot be filtered, the API will return an exception.
Options Reference
scale
numberdefault: 0.75Scale of the webpage rendering. Accepts values between 0.1 and 2.
margin
objectdefault: see belowPage margins in inches in, millimeters mm, pixels px or centimeters cm.
top
: "0.5in"
right
: "0.65in"
bottom
: "0.5in"
left
: "0.65in"
format
stringdefault: "Letter" Paper format. Available values:
Letter Legal Tabloid Ledger A0 A1 A2 A3 A4 A5 A6
printBackground
booleandefault: trueWhether to print CSS backgrounds.
height
stringdefault: nonePage height. Accepts values with units (in, cm, mm, px).
width
stringdefault: nonePage width. Accepts values with units (in, cm, mm, px).
preferCSSPageSize
booleandefault: falseGive priority to page size declared in CSS @page rules.
Code Examples
Here are examples of how to use our API to convert HTML5 to PDF in different programming languages:
curl -X POST \
'https://www.pdfy.online/api/pdf/generate' \
-H 'Authorization: Bearer YOUR_API_KEY' \
-H 'Content-Type: application/json' \
-d '{
"html": "<html><body><h1>Hello World</h1></body></html>",
"options": {
"format": "Letter",
"scale": 0.75
}
}' | jq -r '.pdf' | base64 -d > output.pdf
Note:
Remember to replace 'YOUR_API_KEY' with your actual API key in the examples above. The response will contain a base64 encoded PDF string that you'll need to decode to get the actual PDF file.
Response Codes
200 OK
The request was successful
400 Bad Request
The request was invalid or cannot be served
401 Unauthorized
You have not included an API key or your API key is invalid
402 Insufficient Credits
Your account is out of credits
403 Invalid PDF Options
The PDF options you supplied are invalid
500 Internal Server Error
The server encountered an unexpected condition
Need Help?
Our support team is always ready to assist you with any questions or issues.