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

# Get Call

> Retreives details of a specific call



## OpenAPI

````yaml /api-reference/openapi.json get /api/reports/agents/calls
openapi: 3.1.0
info:
  title: Ello.AI API
  description: API for managing agents and calls in Ello.AI
  version: 1.0.0
servers:
  - url: https://api.getello.ai/
security: []
paths:
  /api/reports/agents/calls:
    get:
      tags:
        - Reports
      summary: Get Call
      description: Retreives details of a specific call
      parameters:
        - name: page
          in: query
          required: false
          description: Page number for pagination.
          schema:
            type: integer
            example: 1
        - name: limit
          in: query
          required: false
          description: Number of records per page.
          schema:
            type: integer
            example: 10
        - name: fromDate
          in: query
          required: false
          description: Start date for filtering (ISO format).
          schema:
            type: string
            format: date-time
            example: '2025-10-01T00:00:00Z'
        - name: toDate
          in: query
          required: false
          description: End date for filtering (ISO format).
          schema:
            type: string
            format: date-time
            example: '2025-10-29T23:59:59Z'
        - name: status
          in: query
          required: false
          description: Filter calls by status (e.g. success, failed).
          schema:
            type: string
            example: success
        - name: agent_type
          in: query
          required: false
          description: Filter calls by agent type (e.g. webcall, phonecall).
          schema:
            type: string
            example: webcall
      responses:
        '200':
          description: Call stats fetched successfully
          content:
            application/json:
              schema:
                type: object
                properties:
                  status:
                    type: integer
                    example: 200
                  message:
                    type: string
                    example: Call stats fetched successfully
                  data:
                    type: object
                    example:
                      total_calls: 125
                      successful_calls: 118
                      failed_calls: 7
                      average_duration: 3m 45s
                      calls:
                        - call_id: 6900b87ca70928b1224f0619
                          agent_id: 685d4b93e834a8dba90f2e12
                          agent_type: webcall
                          status: success
                          duration: 2m 30s
                          created_at: '2025-10-29T10:15:00Z'
        '400':
          description: Bad Request
          content:
            application/json:
              schema:
                type: object
                properties:
                  status:
                    type: integer
                    example: 400
                  message:
                    type: string
                    example: Failed to fetch call stats
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                type: object
                properties:
                  status:
                    type: integer
                    example: 401
                  message:
                    type: string
                    example: Unauthorized access
                  details:
                    type: string
                    example: Authentication token is missing or invalid
        '500':
          description: Internal Server Error
          content:
            application/json:
              schema:
                type: object
                properties:
                  status:
                    type: integer
                    example: 500
                  message:
                    type: string
                    example: Error while fetching call stats
      security:
        - apiKey: []
        - bearerAuth: []
components:
  securitySchemes:
    apiKey:
      type: apiKey
      in: header
      name: X-API-Key
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT

````