Skip to main content
GET
/
api
/
public
/
tenants
/
{tenantId}
/
addons
/
active
curl "https://app.crovver.com/api/public/tenants/workspace_123/addons/active?publicKey=pk_live_..."
{
  "success": true,
  "data": [
    {
      "pool_key": "api_calls",
      "addon_remaining": "500",
      "active_addon_grants": "1",
      "next_addon_expiry": "2026-06-10T05:12:21.000Z"
    }
  ]
}
Returns add-on credit ledger entries that still have credits remaining (not exhausted, not expired), grouped by pool key. Returns an empty array [] if the tenant has no active subscription or no purchased add-ons.

Path Parameters

tenantId
string
required
The external tenant ID from your application

Query Parameters

publicKey
string
Your public key (pk_live_...). Alternative to the Authorization bearer header.

Authentication

Requires a public key (?publicKey=pk_live_...) or secret key (Authorization: Bearer sk_live_...).
curl "https://app.crovver.com/api/public/tenants/workspace_123/addons/active?publicKey=pk_live_..."
{
  "success": true,
  "data": [
    {
      "pool_key": "api_calls",
      "addon_remaining": "500",
      "active_addon_grants": "1",
      "next_addon_expiry": "2026-06-10T05:12:21.000Z"
    }
  ]
}