api

PDFDate Developer Platform

ENTERPRISE PLAN • 100k Req/mo

REST APIs, Webhooks, Multilingual SDKs, and OpenAPI Sandbox

arrow_back Dashboard

Official SDK Starters & Code Examples

Production code snippets for JavaScript/TypeScript, Python, PHP, Java, C# (.NET), and Go.

import { PDFToolsPro } from '@pdftools/sdk'; const pdfClient = new PDFToolsPro({ apiKey: process.env.PDF_TOOLS_API_KEY, }); // Merge PDFs const result = await pdfClient.pdf.merge({ files: ['./invoice_1.pdf', './invoice_2.pdf'], outputName: 'Combined_Invoices.pdf', }); console.log('Merged PDF Download URL:', result.downloadUrl);