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

# Get Capacity Metrics

> Get system capacity and utilization metrics.

Shows:
- Current active calls
- Total system capacity
- Utilization percentage
- Available capacity
- Number of agents



## OpenAPI

````yaml https://api.mrassistant.ai/openapi.json get /analytics/capacity
openapi: 3.1.0
info:
  title: Backend - Multilingual Voice Agent System
  description: FastAPI backend for multilingual voice agents with tool use
  version: 1.0.0
servers: []
security: []
paths:
  /analytics/capacity:
    get:
      tags:
        - analytics
      summary: Get Capacity Metrics
      description: |-
        Get system capacity and utilization metrics.

        Shows:
        - Current active calls
        - Total system capacity
        - Utilization percentage
        - Available capacity
        - Number of agents
      operationId: get_capacity_metrics_analytics_capacity_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CapacityMetrics'
      security:
        - HTTPBearer: []
components:
  schemas:
    CapacityMetrics:
      properties:
        tenant_id:
          type: string
          title: Tenant Id
        current_active_calls:
          type: integer
          title: Current Active Calls
        total_capacity:
          type: integer
          title: Total Capacity
        utilization_percentage:
          type: number
          title: Utilization Percentage
        available_capacity:
          type: integer
          title: Available Capacity
        agents_count:
          type: integer
          title: Agents Count
      type: object
      required:
        - tenant_id
        - current_active_calls
        - total_capacity
        - utilization_percentage
        - available_capacity
        - agents_count
      title: CapacityMetrics
      description: System capacity metrics.
  securitySchemes:
    HTTPBearer:
      type: http
      scheme: bearer

````