Zapier & Make

Status: there is no published "pdftoexcelnow" app in the Zapier or Make app directories yet. The recipes below use Zapier's generic Webhooks action and Make's HTTP module to call the public REST API directly — that works today with no extra install.

Recipes you can build today

Zapier setup (Webhooks by Zapier)

  1. Create an API key in Dashboard → API keys.
  2. Add a Webhooks by Zapier → POST action.
  3. URL: https://pdftoexcelnow.com/api/v1/convert
  4. Payload type: form; attach the file from your trigger as the file field; add format=xlsx (or csv / docx) and optionally ai_clean=1.
  5. Headers: Authorization: Bearer YOUR_API_KEY.

Make setup (HTTP module)

  1. Add an HTTP → Make a request module.
  2. Method POST, URL https://pdftoexcelnow.com/api/v1/convert, body type multipart/form-data.
  3. Add a file field bound to your trigger's binary data, plus format and ai_clean as needed.
  4. Add header Authorization: Bearer YOUR_API_KEY.

Reference

Full request/response shape, error codes and rate limits are documented in the API reference. A native Zapier/Make app with first-class triggers and actions is on the roadmap — tell us if you'd use it.