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

# List conversational agents



## OpenAPI

````yaml api-reference/openapi3.json get /conversational_agents
openapi: 3.0.0
info:
  title: Operator API
  version: '2025-06-19'
  description: API for Operator
servers:
  - url: https://api.operator.xyz
security: []
paths:
  /conversational_agents:
    get:
      tags:
        - Conversational agents
      summary: List conversational agents
      parameters:
        - name: Operator-Version
          in: header
          required: true
          schema:
            type: string
            enum:
              - '2025-06-19'
          description: The API version to use.
          example: '2025-06-19'
      responses:
        '200':
          description: Successful response.
          content:
            application/json:
              schema:
                properties:
                  data:
                    description: List of agents.
                    items:
                      $ref: '#/components/schemas/ListConversationalAgent'
                      title: list.conversational.agent
                    type: array
                required:
                  - data
                type: object
        '404':
          description: The requested resource was not found.
          content:
            application/json:
              schema:
                type: object
                properties:
                  code:
                    type: string
                  message:
                    type: string
                  data: {}
      security:
        - BearerAuth: []
components:
  schemas:
    ListConversationalAgent:
      properties:
        id:
          description: Unique identifier for the agent, e.g. `ca_8qm9JBCiTe7`
          type: string
        created_at:
          description: Timestamp when the agent was created.
          format: date-time
          type: string
        updated_at:
          description: Timestamp when the agent was last updated.
          format: date-time
          type: string
        name:
          description: Human-readable name for the agent.
          type: string
        description:
          description: Description of the agent.
          type: string
        postprocess_agents:
          description: >-
            List of postprocessing procedural agent IDs that run after the
            conversation ends, e.g. `["pa_8qm9JBCiTe7"]`
          items:
            type: string
          type: array
        released_version_id:
          description: >-
            Version-specific identifier for the released version of this agent,
            e.g. `ca_8qm9JBCiTe7@v0`
          type: string
        latest_version_id:
          description: >-
            Version-specific identifier for the latest version of this agent,
            e.g. `ca_8qm9JBCiTe7@v1`
          type: string
      required:
        - id
        - created_at
        - updated_at
        - name
        - description
        - postprocess_agents
        - released_version_id
        - latest_version_id
      type: object
      description: ''
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      bearerFormat: API Key

````