The API that returns PDF URLs for Airtable, Make, Zapier, and any automation platform. Send JSON, get a hosted PDF link ready for attachment fields.
// Your Airtable scripting extension
let response = await fetch('https://api.docujson.com/v1/generate', {
method: 'POST',
headers: { 'X-API-Key': API_KEY },
body: JSON.stringify({ template: 'invoice', data: invoiceData })
});
let { pdfUrl } = await response.json();
// Attach to your record
await table.updateRecordAsync(record, {
'Invoice PDF': [{ url: pdfUrl }]
});Three simple steps to generate professional PDFs from your automation workflows.
POST your data to our API with your template choice
Our engine generates a beautiful PDF in seconds
Receive a hosted URL ready for any attachment field
Returns a URL that works perfectly with attachment fields. No file handling required.
Our API returns a direct URL that Airtable's scripting extension can use to populate attachment fields. Generate invoices, reports, or any document directly from your base.
Start free, scale as you grow