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

> List all call recordings for an agent.

**Restriction**: Recording must be enabled for the agent in agent configuration.

Returns a paginated list of recordings with metadata.
Each recording includes file information, status, and timestamps.



## OpenAPI

````yaml https://api.mrassistant.ai/openapi.json get /agents/{agent_id}/recordings
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:
  /agents/{agent_id}/recordings:
    get:
      tags:
        - recordings
      summary: List Agent Recordings
      description: >-
        List all call recordings for an agent.


        **Restriction**: Recording must be enabled for the agent in agent
        configuration.


        Returns a paginated list of recordings with metadata.

        Each recording includes file information, status, and timestamps.
      operationId: list_agent_recordings_agents__agent_id__recordings_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: 100
            minimum: 1
            description: Number of recordings to return
            default: 50
            title: Limit
          description: Number of recordings to return
        - name: offset
          in: query
          required: false
          schema:
            type: integer
            minimum: 0
            description: Number of recordings to skip
            default: 0
            title: Offset
          description: Number of recordings to skip
        - name: status_filter
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            description: 'Filter by status: recording, processing, completed, failed'
            title: Status Filter
          description: 'Filter by status: recording, processing, completed, failed'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/RecordingListResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - HTTPBearer: []
components:
  schemas:
    RecordingListResponse:
      properties:
        agent_id:
          type: string
          title: Agent Id
        total:
          type: integer
          title: Total
        recordings:
          items:
            $ref: '#/components/schemas/RecordingListItem'
          type: array
          title: Recordings
      type: object
      required:
        - agent_id
        - total
        - recordings
      title: RecordingListResponse
      description: List of recordings.
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    RecordingListItem:
      properties:
        id:
          type: string
          title: Id
        call_id:
          type: string
          title: Call Id
        session_id:
          anyOf:
            - type: string
            - type: 'null'
          title: Session Id
        filename:
          type: string
          title: Filename
        file_size_bytes:
          anyOf:
            - type: integer
            - type: 'null'
          title: File Size Bytes
        duration_seconds:
          anyOf:
            - type: integer
            - type: 'null'
          title: Duration Seconds
        format:
          type: string
          title: Format
        status:
          type: string
          title: Status
        created_at:
          type: string
          title: Created At
      type: object
      required:
        - id
        - call_id
        - filename
        - format
        - status
        - created_at
      title: RecordingListItem
      description: Recording list item (summary).
    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

````