Skip to main content
GET /v1/billing/entitlements
Returns the resolved entitlements for your tenant, including the active plan, unlocked feature flags, and numeric quotas. Use this to check what your current plan allows before performing billable operations.

Response

plan_key
string
The active plan identifier (e.g., plan_starter, plan_business).
features
object
Feature flags unlocked by your plan and add-ons. Each key is a feature name and the value indicates whether it is enabled.
quotas
object
Numeric limits for billable resources. Each key is a metric name and the value is the limit.
curl https://api.truthlocks.com/v1/billing/entitlements \
  -H "X-API-Key: tl_live_..."
{
  "plan_key": "plan_starter",
  "features": {
    "online_verification": true,
    "offline_bundles": true,
    "sso_scim": false
  },
  "quotas": {
    "attestations.mint": 5000,
    "seats": 4,
    "api_rate_limit": 1200,
    "storage_bytes": 10737418240,
    "webhook_endpoints": 3
  }
}
To check your active add-ons, see billing overview. Add-on entitlements are merged into the features and quotas objects automatically.