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

  1. Trigger — e.g. "New file in Google Drive / Dropbox / email attachment".
  2. 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
  3. Use the response — map document_url to the next step (save to Drive, email it, post to Slack, etc.). The schema array 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_url is a signed link valid for 24 hours — download or forward it promptly.
  • For high volume, use the bulk tool in the dashboard instead.