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

# Server Capacity

> Check platform capacity and availability. No authentication required.

# Server Capacity

Returns current server capacity information. This endpoint is **public** - no authentication required.

<RequestExample>
  ```bash cURL theme={null}
  curl https://api.rigbox.dev/api/v1/capacity
  ```
</RequestExample>

<ResponseExample>
  ```json 200 theme={null}
  {
    "available": true,
    "total": 50,
    "used": 12
  }
  ```
</ResponseExample>

<ResponseField name="available" type="boolean">Whether the platform has capacity for new workspaces</ResponseField>
<ResponseField name="total" type="integer">Total workspace slots on the platform</ResponseField>
<ResponseField name="used" type="integer">Currently occupied workspace slots</ResponseField>
