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.
*.pdf → POST file to /api/v1/convert → save the returned spreadsheet to Google Drive./api/v1/convert → upload the result back to the row.https://pdftoexcelnow.com/api/v1/convertform; attach the file from your trigger as the file field; add format=xlsx (or csv / docx) and optionally ai_clean=1.Authorization: Bearer YOUR_API_KEY.POST, URL https://pdftoexcelnow.com/api/v1/convert, body type multipart/form-data.file field bound to your trigger's binary data, plus format and ai_clean as needed.Authorization: Bearer YOUR_API_KEY.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.