> ## 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 Squad Call Stats

> Get call statistics for a squad.

Returns total calls and breakdown by agent for the specified date.



## OpenAPI

````yaml https://api.mrassistant.ai/openapi.json get /squad-calls/squads/{squad_id}/call-stats
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:
  /squad-calls/squads/{squad_id}/call-stats:
    get:
      tags:
        - squad-calls
      summary: Get Squad Call Stats
      description: |-
        Get call statistics for a squad.

        Returns total calls and breakdown by agent for the specified date.
      operationId: get_squad_call_stats_squad_calls_squads__squad_id__call_stats_get
      parameters:
        - name: squad_id
          in: path
          required: true
          schema:
            type: string
            format: uuid
            title: Squad Id
        - name: date
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            title: Date
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SquadCallStatsResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - HTTPBearer: []
components:
  schemas:
    SquadCallStatsResponse:
      properties:
        squad_id:
          type: string
          title: Squad Id
        date:
          type: string
          title: Date
        total_calls:
          type: integer
          title: Total Calls
        by_agent:
          additionalProperties:
            type: integer
          type: object
          title: By Agent
        average_calls_per_agent:
          type: number
          title: Average Calls Per Agent
      type: object
      required:
        - squad_id
        - date
        - total_calls
        - by_agent
        - average_calls_per_agent
      title: SquadCallStatsResponse
      description: Squad call statistics response.
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
        input:
          title: Input
        ctx:
          type: object
          title: Context
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError
  securitySchemes:
    HTTPBearer:
      type: http
      scheme: bearer

````