Skip to content

Billing & Usage Metering

TCS meters two kinds of usage:

  • Credential issuance — one unit per Verifiable Credential issued.
  • Verification — one unit per successful presentation verification.

Each plan includes an allotment of both. Usage beyond the included allotment is metered as overage and billed monthly. See the pricing page for plan prices and overage rates.

This page defines the exact billing semantics — what triggers a unit, what never does, and how quota behaves across billing cycles and plan changes.

Credential issuance — counted at issuance, not at offer creation

Section titled “Credential issuance — counted at issuance, not at offer creation”

A VC unit is consumed at the moment TCS signs and issues the credential — that is, when the Holder’s wallet redeems a credential offer (or completes a wallet-initiated flow) at the credential endpoint.

ActionCounted?
Creating a credential offerNo — offers are free, in any quantity
Offer expires unclaimedNo
Wallet redeems the offer and the credential is issuedYes — 1 unit
Re-presenting an already-issued credentialNo (issuance is one-time; presentations are metered on the Verifier side)

Practical consequence: a batch of 1,000 offers where 400 are claimed consumes 400 units, not 1,000.

A verification unit is consumed only when a presentation passes verification. Creating verification sessions is free.

OutcomeCounted?
Verification request (authorization request) createdNo
Session abandoned — wallet never submits a presentationNo
Presentation submitted but verification failsNo
Presentation submitted and verification succeedsYes — 1 unit

You are never charged for a verification that did not give you a usable result.

  • Growth / Scale — the included allotment is annual. It resets to the full amount at each subscription renewal (your annual anniversary date).
  • Free — the included allotment (100 VCs / 200 verifications) is a one-time threshold, not an annual grant. It does not reset. Once consumed, further usage requires pay-as-you-go or an upgrade.
  • Overage — usage beyond the included allotment is metered and billed monthly at your tier’s overage rate. Annual base fees and monthly overage appear as separate invoice lines.

By default the Free plan is hard-capped: once the included allotment is consumed, issuance and new verification requests are rejected with HTTP 402 (see error reference below).

Enabling pay-as-you-go (dashboard → Billing; requires a payment method) lifts the cap — usage beyond the threshold is metered at the Free overage rates instead of being rejected.

ChangeEffectiveBillingQuota
Free → paidImmediately at checkoutFull annual fee; a new annual cycle startsFull new allotment
Upgrade (e.g. Growth → Scale)ImmediatelyProrated for the remainder of the current period — your renewal date does not changeNew allotment minus units already used this period
Downgrade (paid → lower tier or Free)At the end of the current annual periodNo refund; full features until period endNew (lower) allotment from the next period
Cancel a pending downgradeImmediatelyUnchanged

Upgrades never forfeit usage: if you used 2,000 of Growth’s 3,000 VCs and upgrade to Scale (15,000), your remaining allotment is 13,000.

Only the Free plan without pay-as-you-go can hit these. Paid plans and Free with pay-as-you-go meter overage instead.

Issuance — returned by the credential endpoint when the wallet redeems an offer (offer creation itself always succeeds):

{
"error": "vc_quota_exhausted",
"message": "Your free VC quota has been exhausted. Enable pay-as-you-go or upgrade to continue issuing.",
"reset_at": null,
"upgrade_url": "/billing"
}

Verification — returned when creating a verification (authorization) request:

{
"error": "verification_quota_exhausted",
"message": "Your free verification quota has been exhausted. Enable pay-as-you-go or upgrade to continue.",
"reset_at": null,
"upgrade_url": "/billing"
}

Integration note: because the issuance quota is enforced at claim time, an exhausted Free tenant can still create offers — the 402 surfaces to the wallet at the credential endpoint. If you integrate the Issuer API, treat 402 on the credential endpoint as a billing condition, not a protocol failure.

Verified Authority (Trust Registry Tier 1)

Section titled “Verified Authority (Trust Registry Tier 1)”

The Verified Authority badge is a separate annual add-on subscription (US$750/yr), included with Growth and Scale. It has no usage meter — it is a flat annual fee. See Trust & Governance for what Tier 1 verification entails.