Turn pricing plans into infrastructure rules.
Define what each customer can access and how much they can consume. Kaiten enforces the limits at the SDK level and streams real-time usage data to your billing and sales tools.
Your billing says one thing. Your infrastructure does another.
The mapping between 'what the customer pays for' and 'what they can actually do' is maintained by a spreadsheet, a Confluence page, or if statements buried in application code.
Revenue leakage
Expired trials still access premium features
Quota violations
No one knows limits are exceeded until the monthly invoice
Engineering overhead
Every new plan requires code changes and a deployment
Sales friction
'Let me check with Engineering' — a conversation that takes 3 days
Entitlements as code. Metering as a service.
Entitlement Types
Three primitives. Infinite packaging.
Real-Time Metering
Track consumption without building a data pipeline.
Threshold Alerts & Webhooks
Know the second a customer hits their limit.
Compliance-Grade Audit Trail
Every SDK call. Every limit check. Traced.
License-Based Packaging
One license change. Instant enforcement.
Real-time metering in action.
# Report a usage event
curl -X POST https://api.kaiten.sh/api/instances/acme-prod/usage \
-H "Authorization: Bearer ksh_your_token" \
-d '{
"entitlement_slug": "api-calls",
"value": 1
}'
# Check current state
GET /api/instances/acme-prod/entitlements/api-calls/usage
→ {
"entitlement": "api-calls",
"limit": 100000,
"current_usage": 67433,
"percentage_used": 67.4,
"status": "ACCEPTED"
}Why not Stigg or Schematic?
Stigg and Schematic are good entitlement platforms. But they don't control your feature flags, and they can't orchestrate your deployments.
| Capability | Kaiten | Stigg | Schematic | Custom (internal) |
|---|---|---|---|---|
| Boolean entitlements | ✅ | ✅ | ✅ | ✅ (manual) |
| Numeric quotas + metering | ✅ Native | ✅ | ✅ | ❌ Build yourself |
| Config entitlements | ✅ Typed JSON | ❌ | ❌ | ❌ |
| Feature flags (integrated) | ✅ OpenFeature | ❌ | Partial | ❌ |
| Deployment orchestration | ✅ | ❌ | ❌ | ❌ |
| Audit trail | ✅ Compliance-grade | Partial | Partial | ❌ |
| Open source | ✅ | ❌ | ❌ | ✅ (unmaintained) |
| Self-hostable | ✅ | ❌ | ❌ | ✅ |
| Webhook events (27 types) | ✅ | Partial | Partial | ❌ |