ReflowPDFCommunity

A real API for generating PDFs programmatically

2 replies · 690 views

5 rep

Is there any plan for a real API? I run billing for a small agency and we kick out around 200 invoices a month from our own system. Right now the workflow is export the data, then hand-build each PDF, which is exactly the manual step I'm trying to kill.

What I'd love is to POST the line-item data plus a template id and get back a finished PDF. Bonus points if the result is still round-trip editable the way a normal export is, so when a client disputes a line I can open it, fix it, and re-send without rebuilding from scratch.

POST /v1/render
{ "template": "invoice-clean", "data": {... } }
=> application/pdf

Even a rate-limited beta key would be enough to get me off the manual track. Anyone else need this?

2 Replies

10 rep

+1, and please keep the round-trip property the team mentioned. Half the reason I switched was that my exports re-import cleanly. An API that produced a flat, non-editable PDF would be a different and lesser product to me.

5 rep
OP

good point, hadnt thought of it that way