> ## 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 Agent Conversation

> Retrieves detailed statistics and metadata for a specific conversation of a given agent



## OpenAPI

````yaml /api-reference/openapi.json get /api/agents/{agent_id}/conversations/{conversation_id}
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/agents/{agent_id}/conversations/{conversation_id}:
    get:
      tags:
        - Agents
      summary: Get Agent Conversation
      description: >-
        Retrieves detailed statistics and metadata for a specific conversation
        of a given agent
      parameters:
        - name: agent_id
          in: path
          required: true
          schema:
            type: string
            example: 68dce5202fc07b92042493b1
          description: Unique identifier of the agent.
        - name: conversation_id
          in: path
          required: true
          schema:
            type: string
            example: 6900b87ca70928b1224f0619
          description: Unique identifier of the conversation.
      responses:
        '200':
          description: Conversation retrieved successfully
          content:
            application/json:
              schema:
                type: object
                properties:
                  status:
                    type: integer
                    example: 200
                  message:
                    type: string
                    example: Conversation retrieved successfully
                  data:
                    type: object
                    description: >-
                      Conversation info record returned by assistant-service
                      (fields may include additional keys).
                    properties:
                      id:
                        type: string
                        example: 6900be1d39f3fd5dd4e503d4
                      assistant_id:
                        type: string
                        example: 68dce5202fc07b92042493b1
                      conversation_id:
                        type: string
                        example: 6900b87ca70928b1224f0619
                      disconnect_reason:
                        type: string
                        example: user_disconnect
                      status:
                        type: string
                        example: connected
                      to_number:
                        type:
                          - string
                          - 'null'
                        example: null
                      userId:
                        type:
                          - string
                          - 'null'
                        example: 685d4b93fb5b2e221dc80ea8
                      workspaceId:
                        type:
                          - string
                          - 'null'
                        example: 6960a5eb2c65e7fda50603e5
                      campaign_id:
                        type:
                          - string
                          - 'null'
                        example: null
                      connected_at:
                        type:
                          - string
                          - 'null'
                        format: date-time
                        example: '2025-10-28T12:35:17.423000Z'
                      ended_at:
                        type:
                          - string
                          - 'null'
                        format: date-time
                        example: '2025-10-28T12:59:09.821000Z'
                      duration:
                        type:
                          - string
                          - 'null'
                        example: '00:23:52'
                      duration_sec:
                        type:
                          - integer
                          - 'null'
                        example: 1432
                      disconnected_by:
                        type:
                          - string
                          - 'null'
                        example: user
                      metadata:
                        type:
                          - object
                          - 'null'
                        description: Collected call metadata (dynamic keys).
                        additionalProperties: true
                        example:
                          summary: …
                          process_compliance: 'yes'
                          outcome: positive
        '400':
          description: Bad Request
          content:
            application/json:
              schema:
                type: object
                properties:
                  status:
                    type: integer
                    example: 400
                  message:
                    type: string
                    examples:
                      assistantNotFound:
                        value: Assistant 68dce5202fc07b92042493b1 not found.
                      conversationNotFound:
                        value: Conversation 6900b87ca70928b1224f0619 not found.
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                type: object
                properties:
                  status:
                    type: integer
                    example: 401
                  message:
                    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 getting conversation info
                  error:
                    type: object
                    properties:
                      details:
                        type: string
                        example: Error message details
      security:
        - apiKey: []
        - bearerAuth: []
components:
  securitySchemes:
    apiKey:
      type: apiKey
      in: header
      name: X-API-Key
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT

````