Credits
Credits are used to measure and bill workflow run usage in a simple, predictable way. Each run has a small base cost, plus additional credits for any extra tasks it performs.
Cost model
Every workflow run follows the same pricing rules:
- 1 credit to invoke a workflow.
- The first 3 task credits are included in that base cost.
- Each additional task after the first 3 adds 1 credit to the final run cost.
This means that most small workflows cost just 1 credit, even if they include a few actions.
Task credit table
Task credits are counted per workflow run, based on which steps were executed (and what they do):
| Task | Cost | Notes |
|---|---|---|
| HTTP request | 1 credit | Per request |
| Send email | 1 credit | Per email sent |
| Document generation | 1 credit | Per generated document |
| Upload file to Google Drive | 1 credit | Per file uploaded |
| Send document to Zapier | 1 credit | Per document sent |
| Send document to Make | 1 credit | Per document sent |
Task credits are only counted for steps that actually execute during a run.
Examples
-
Generate a document, send it by email and upload it to Google Drive:
- Run invocation cost = 1
- Task credits = 1 (document generation) + 1 (send email) + 1 (upload to Google Drive) = 3
- Included in base cost = 3
- Final cost = 1 (1 + 3 - 3 = 1)
-
Generate a document, send it by email and send it via HTTP:
- Run invocation cost = 1
- Task credits = 1 (document generation) + 1 (send email) + 1 (HTTP request) = 3
- Included in base cost = 3
- Final cost = 1 (1 + 3 - 3 = 1)
-
Generate 2 documents, send each to a different recipient by email and upload both to Google Drive:
- Run invocation cost = 1
- Task credits = 2 (document generation) + 2 (send email) + 2 (upload to Google Drive) = 6
- Included in base cost = 3
- Final cost = 4 (1 + 6 - 3 = 4)
Next Steps
- Read the workflow overview to understand how workflows work
- Learn how to generate and manage workflow documents
- Explore formulas to generate different documents based on conditions and calculations