Credits

Credits are used to measure and bill workflow usage in a simple, predictable way.

Cost model

Every workflow run follows the same pricing rules:

  • The trigger costs 1 credit - so every workflow run costs at least 1 credit.
  • Most executed steps cost 1 credit each - see the step credit table for details.
  • The first 3 credits after the trigger are included - they are free in every run.

This means that most small workflows cost just 1 credit, even if they include a few steps.

Workflow runCredits used
Trigger only1
Trigger + 1 step1
Trigger + 2 steps1
Trigger + 3 steps1
Trigger + 4 steps2
Trigger + 5 steps3
Trigger + 6 steps4
And so on...

Examples

  • Generate a document, send it by email and upload it to Google Drive:

    • Trigger = 1 credit
    • After the trigger = 1 (document generation) + 1 (send email) + 1 (upload to Google Drive) = 3
    • Included free credits = 3
    • Final cost = 1 (1 + 3 - 3 = 1)
  • Generate a document, send it by email and send it via HTTP:

    • Trigger = 1 credit
    • After the trigger = 1 (document generation) + 1 (send email) + 1 (HTTP request) = 3
    • Included free credits = 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:

    • Trigger = 1 credit
    • After the trigger = 2 (document generation) + 2 (send email) + 2 (upload to Google Drive) = 6
    • Included free credits = 3
    • Final cost = 4 (1 + 6 - 3 = 4)

Step credit table

Step typeDescriptionCost
Form trigger
Trigger workflow execution when a form is submitted1 credit
Webhook trigger
Trigger workflow execution when a webhook is received1 credit
Flow control
Apply conditions and split to multiple paths0
Set Variables
Define custom variables with formulas0
Document
Generate document1 credit
Email
Send email notification1 credit
HTTP
Send HTTP request1 credit
Google Drive
Upload document to Google Drive1 credit
Dropbox
Upload document to Dropbox1 credit
OneDrive
Upload document to Microsoft OneDrive1 credit
Google Sheets
Append a row to a Google Sheets spreadsheet1 credit
Airtable
Create a record in an Airtable table1 credit
Notion
Create a page in a Notion database1 credit
Zapier
Send document to Zapier1 credit
Make
Send document to Make1 credit

Next Steps