No-code (Zapier, Make, n8n)
Use the API without writing code.
Any tool with a generic HTTP request step can call the API. The shape is always: send a PDF to
/v1/convert, then use the document_url from the response.
Zapier / Make / n8n recipe
- Trigger — e.g. "New file in Google Drive / Dropbox / email attachment".
- HTTP action — POST to
https://api.createafillablepdf.com/v1/convert- Header:
Authorization: Bearer sk_live_••• - Body type:
multipart/form-data - Field
file: the file from the trigger - Field
detect:fields
- Header:
- Use the response — map
document_urlto the next step (save to Drive, email it, post to Slack, etc.). Theschemaarray has every field if you want to store structured data.
Raw HTTP / Postman
A Postman collection is available at
https://createafillablepdf.com/postman_collection.json. Import it, set the CAFP_KEY variable,
and run the Convert request.
Tips
- The
document_urlis a signed link valid for 24 hours — download or forward it promptly. - For high volume, use the bulk tool in the dashboard instead.