> ## Documentation Index
> Fetch the complete documentation index at: https://docs.crovver.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Get Seat Count

> Get the current active seat count and capacity for a tenant.

Returns the number of active seat allocations for a tenant, their total purchased capacity, and utilization percentage.

## Request Body

<ParamField body="requestingEntityId" type="string" required>
  The external tenant ID from your application
</ParamField>

## Authentication

Requires a **secret key** (`Authorization: Bearer sk_live_...`) or **service key** (`x-service-key`).

<RequestExample>
  ```bash cURL theme={null}
  curl -X POST "https://app.crovver.com/api/public/capacity/count" \
    -H "Authorization: Bearer sk_live_..." \
    -H "Content-Type: application/json" \
    -d '{ "requestingEntityId": "workspace_123" }'
  ```
</RequestExample>

<ResponseExample>
  ```json 200 theme={null}
  {
    "success": true,
    "data": {
      "activeCount": 8,
      "capacityUnits": 10,
      "utilizationPercentage": 80,
      "billingMode": "recurring",
      "exceeded": false
    }
  }
  ```

  ```json 404 No active subscription theme={null}
  {
    "success": false,
    "error": "No active subscription found for this tenant"
  }
  ```
</ResponseExample>
