> ## 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.

# List Agent Calls

> List all calls for a specific agent with filtering and pagination.

**Returns:**
- Actual call records from the database
- Proper to/from phone numbers
- Correct inbound/outbound direction
- Recording information if available



## OpenAPI

````yaml https://api.mrassistant.ai/openapi.json get /calls/agent/{agent_id}/calls
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:
  /calls/agent/{agent_id}/calls:
    get:
      tags:
        - calls
      summary: List Agent Calls
      description: |-
        List all calls for a specific agent with filtering and pagination.

        **Returns:**
        - Actual call records from the database
        - Proper to/from phone numbers
        - Correct inbound/outbound direction
        - Recording information if available
      operationId: list_agent_calls_calls_agent__agent_id__calls_get
      parameters:
        - name: agent_id
          in: path
          required: true
          schema:
            type: string
            format: uuid
            title: Agent Id
        - name: limit
          in: query
          required: false
          schema:
            type: integer
            maximum: 500
            minimum: 1
            description: Number of calls to return
            default: 100
            title: Limit
          description: Number of calls to return
        - name: offset
          in: query
          required: false
          schema:
            type: integer
            minimum: 0
            description: Number of calls to skip
            default: 0
            title: Offset
          description: Number of calls to skip
        - name: direction
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            description: 'Filter by direction: inbound, outbound'
            title: Direction
          description: 'Filter by direction: inbound, outbound'
        - name: status_filter
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            description: 'Filter by status: initiated, ringing, answered, ended, failed'
            title: Status Filter
          description: 'Filter by status: initiated, ringing, answered, ended, failed'
        - name: start_date
          in: query
          required: false
          schema:
            anyOf:
              - type: string
                format: date-time
              - type: 'null'
            description: Filter calls after this date
            title: Start Date
          description: Filter calls after this date
        - name: end_date
          in: query
          required: false
          schema:
            anyOf:
              - type: string
                format: date-time
              - type: 'null'
            description: Filter calls before this date
            title: End Date
          description: Filter calls before this date
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - HTTPBearer: []
components:
  schemas:
    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

````