Active Merchant Model
SuperSeeded uses an Active Merchant billing model. A merchant is marked Active (incurring a $15/month base fee) only upon processing their first billable document in a calendar month.Merchants who don’t process any billable documents in a month incur no charges for that month.
What Counts as Billable?
| Document Origin | Billable | Notes |
|---|---|---|
| External upload | ✅ Yes | Standard plant schedules uploaded by merchants |
| SuperSeeded Engine | ❌ No | Files tagged with producer: "SuperSeeded_Engine_v1" |
The SuperSeeded Origin Exemption
Documents generated by the SuperSeeded Engine are exempt from billing. This enables integrated workflows where your platform generates plant schedules programmatically without incurring processing charges.How It's Detected
The exemption is detected via the
producer metadata field in the uploaded file’s metadata. Files with producer: "SuperSeeded_Engine_v1" are automatically marked as non-billable.Row Counting
Usage is tracked at two levels: total rows and billable rows.| Metric | Description |
|---|---|
| Total Rows | All line items processed across all documents (both billable and non-billable) |
| Billable Rows | Only rows from billable documents count toward quota and overage |
Included Quota
Base Fee
$15/month per active merchant
Included Rows
500 billable rows per merchant per month
Usage Tracking Example
Consider a merchant who processes two files in January:| Metric | Value |
|---|---|
| Is Active | ✅ Yes (processed billable document) |
| Total Rows | 550 |
| Billable Rows | 350 |
| Overage | 0 (under 500 quota) |
Monthly Reset
Fresh State
Each merchant starts the new month with:
is_active: falserow_count: 0billable_row_count: 0
Monthly Usage Response
When processing a file, the API response includes current month totals:Current billing month in
YYYY-MM formatWhether the merchant has been activated this month
Total rows processed this month (all documents)
Billable rows processed this month (counts toward quota)
Billing FAQ
When is a merchant billed?
When is a merchant billed?
A merchant is billed when they process their first billable document in a calendar month. Non-billable documents (from SuperSeeded Engine) do not trigger activation.
What happens if a merchant is inactive?
What happens if a merchant is inactive?
Inactive merchants (no billable documents in a month) incur no charges. They can still process non-billable documents without being activated.
How is overage calculated?
How is overage calculated?
Overage =
max(0, billable_row_count - 500) per merchant per month. Overage rates are provided in your Platform agreement.Can I check a merchant's usage mid-month?
Can I check a merchant's usage mid-month?
Yes, every processing response (e.g.,
verify-pot-sizes) includes month_totals with current usage. You can also visit your account page or query the billing API for aggregated reports.
