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

> List all transcripts for an agent.

Returns a paginated list of conversation transcripts with summary information.



## OpenAPI

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


        Returns a paginated list of conversation transcripts with summary
        information.
      operationId: list_transcripts_agents__agent_id__transcripts_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 transcripts to return
            default: 50
            title: Limit
          description: Number of transcripts to return
        - name: offset
          in: query
          required: false
          schema:
            type: integer
            minimum: 0
            description: Number of transcripts to skip
            default: 0
            title: Offset
          description: Number of transcripts to skip
        - name: channel
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            description: 'Filter by channel: web, sip'
            title: Channel
          description: 'Filter by channel: web, sip'
        - name: status
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            description: 'Filter by status: completed, active, ended'
            title: Status
          description: 'Filter by status: completed, active, ended'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/TranscriptListResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - HTTPBearer: []
components:
  schemas:
    TranscriptListResponse:
      properties:
        agent_id:
          type: string
          title: Agent Id
        total:
          type: integer
          title: Total
        transcripts:
          items:
            $ref: '#/components/schemas/TranscriptListItem'
          type: array
          title: Transcripts
      type: object
      required:
        - agent_id
        - total
        - transcripts
      title: TranscriptListResponse
      description: List of transcripts.
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    TranscriptListItem:
      properties:
        session_id:
          type: string
          title: Session Id
        channel:
          type: string
          title: Channel
        phone_number:
          anyOf:
            - type: string
            - type: 'null'
          title: Phone Number
        caller_number:
          anyOf:
            - type: string
            - type: 'null'
          title: Caller Number
        start_time:
          type: string
          title: Start Time
        end_time:
          anyOf:
            - type: string
            - type: 'null'
          title: End Time
        duration_seconds:
          anyOf:
            - type: integer
            - type: 'null'
          title: Duration Seconds
        status:
          type: string
          title: Status
        message_count:
          type: integer
          title: Message Count
        summary:
          anyOf:
            - type: string
            - type: 'null'
          title: Summary
      type: object
      required:
        - session_id
        - channel
        - start_time
        - status
        - message_count
      title: TranscriptListItem
      description: Transcript 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

````