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

# Get Call Stats

> Get call statistics for your organization.

Returns various metrics about calls in your organization.

This endpoint provides a high-level summary of call statistics for your entire organization. It's a quick way to get key metrics without any parameters.

### Response

The response is a JSON object containing the following key statistics:

* `total_calls`: The total number of calls ever made.
* `total_duration`: The sum of the duration of all calls, in seconds.
* `average_duration`: The average duration of a call, in seconds.

```json Response theme={null}
{
  "total_calls": 500,
  "total_duration": 150000,
  "average_duration": 300
}
```


## OpenAPI

````yaml GET /api/v1/calls/stats
openapi: 3.1.0
info:
  title: Burki
  description: A system that uses AI to answer customer Calls.
  version: 0.1.0
servers: []
security: []
paths:
  /api/v1/calls/stats:
    get:
      tags:
        - calls
      summary: Get Call Stats
      description: |-
        Get call statistics for your organization.

        Returns various metrics about calls in your organization.
      operationId: get_call_stats_api_v1_calls_stats_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CallStatsResponse'
      security:
        - HTTPBearer: []
components:
  schemas:
    CallStatsResponse:
      properties:
        total_calls:
          type: integer
          title: Total Calls
        total_duration:
          type: integer
          title: Total Duration
        average_duration:
          type: number
          title: Average Duration
      type: object
      required:
        - total_calls
        - total_duration
        - average_duration
      title: CallStatsResponse
      description: Response model for high-level call statistics.
  securitySchemes:
    HTTPBearer:
      type: http
      scheme: bearer

````