Send HTML + config. Get a downloadable PDF link. Stored in S3. That simple.
Send your HTML template and configuration options to our API with a simple POST request.
Our MCP server processes your request and generates a high-quality PDF document.
Receive a link to download your PDF directly from S3, ready to share or integrate.
Built by developers, for developers. Simple, intuitive, and well-documented.
Optimized for speed. Generate complex PDFs in milliseconds.
Hosted on reliable cloud infrastructure with 99.9% uptime guarantee.
Control page size, margins, headers, footers, and more with simple options.
// Generate a PDF with a simple API call
const response = await fetch('https://api.pdfprint.io/generate', {
method: 'POST',
headers: {
'Content-Type': 'application/json',
'Authorization': 'Bearer YOUR_API_KEY'
},
body: JSON.stringify({
html: '<h1>Hello World</h1><p>This is a PDF generated from HTML</p>',
config: {
pageSize: 'A4',
margin: '1cm',
filename: 'document.pdf'
}
})
});
const { pdfUrl } = await response.json();
console.log('Your PDF is ready:', pdfUrl);Join thousands of developers who are already using PDFPrint.