What the document pipeline costs
A pipeline that reads documents for you doesn’t have to cost real money. Most of the system runs on free tiers; the only meaningful spend is the AI extraction itself, and even that’s pennies per document.
Free at this scale
- The robots — the cloud gives you a million runs a month for free, more than the pipeline will ever need.
- Pipeline orchestration — the workflow engine that strings the steps together charges per state transition. At SMB volume that’s fractions of a cent per month — below the noise floor of the bill.
- Webhook URLs — the upload endpoint and the destination callbacks. Free at this volume.
- Queues and alerts — the small bookkeeping pieces. All free.
- Small tables — the audit log, the doc metadata. Comfortably under the always-free quota.
Costs pennies to a dollar each month
- Storage — the original documents and the structured outputs. Pennies per month at SMB volume; cheaper if you move old files to cold storage automatically.
- Password vault — about 40 cents a month for each secret you store (the access keys for your destinations).
Grows with how busy the inbox is
- Reading pages. The specialist AI charges per page. The default cheap mode (text + layout) rounds to pennies per page — great for receipts and most invoices. For forms-heavy documents that need precise table extraction, a richer mode is available at about a nickel per page; the rules file picks per type.
- AI structuring. The generalist AI works on the small clean output of the reader, not the original document — so even on long documents the cost stays around a cent or two per document.
- Notifications. Slack messages are free. Emails are a fraction of a cent.
Three traps you’re avoiding
- No always-on server — would be $30+ a month before reading anything.
- No paid document-reading service — those charge a dollar or more per document and usually require a monthly minimum. The pipeline has no minimum and costs less per document.
- No infinite logs — 7-day retention; logs can’t pile into a slow-growing surprise bill.
In plain words
For an SMB processing a hundred or so documents a month, the bill is a coffee. Push that to a thousand and the bill goes up — but per document it’s still cents, not dollars. Set a budget alarm that fits the volume you actually expect, and the bill can’t surprise you.
All posts