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

# List All Agents

> Retrieves all configured agents with their full configuration and metadata.



## OpenAPI

````yaml GET /v2/list-all-agent/
openapi: 3.1.0
info:
  title: CloserX.ai API
  description: >-
    The CloserX.ai API provides programmatic access to manage AI-powered calling
    operations, including agent creation, campaign management, contact handling,
    telephony integration, and more. This API enables seamless automation and
    integration with CRM systems, telephony providers, and other third-party
    services for enhanced client communication and business operations.
  license:
    name: MIT
  version: 1.0.0
servers:
  - url: https://app.closerx.ai/api
security:
  - api_key: []
paths:
  /v2/list-all-agent/:
    get:
      summary: List All Agents
      description: >-
        Retrieves all configured agents with their full configuration and
        metadata.
      parameters:
        - name: Company-Name
          in: header
          required: true
          description: Schema name for multi-tenancy
          schema:
            type: string
      responses:
        '200':
          description: List of agents retrieved successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ListAllAgentsResponse'
        '400':
          description: Invalid request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
components:
  schemas:
    ListAllAgentsResponse:
      type: object
      properties:
        total_count:
          type: integer
          example: 559
        data:
          type: array
          items:
            type: object
            properties:
              pk:
                type: integer
                example: 571
              agent_name:
                type: string
                example: add_agent_name
              agent_id:
                type: string
                example: agent_77f109e0965c6947df907591b3
              voice_id:
                type: string
                example: openai-Shimmer
              language:
                type: string
                example: en-US
              interruption_sensitivity:
                type: string
                example: '1.0'
              voicemail:
                type: boolean
                example: true
              voicemail_message:
                type:
                  - string
                  - 'null'
                example: null
              end_call_after_silence:
                type: integer
                example: 10
              max_call_duration:
                type: integer
                example: 10
              reminder_trigger:
                type: integer
                example: 10
              ambient_sound:
                type:
                  - string
                  - 'null'
                example: null
              analysis_data:
                type: array
                items: {}
              llm:
                type: integer
                example: 577
              voice_speed:
                type: number
                example: 1
              voice_temperature:
                type: number
                example: 1
              volume:
                type: number
                example: 1
              enable_backchannel:
                type: boolean
                example: true
              normalize_for_speech:
                type: boolean
                example: false
              enable_transcription_formatting:
                type: boolean
                example: true
              reminder_trigger_ms:
                type: integer
                example: 10000
              reminder_max_count:
                type: integer
                example: 1
              boosted_keywords:
                type: array
                items: {}
              ambient_sound_volume:
                type: number
                example: 1
              voicemail_detection_timeout_ms:
                type: integer
                example: 5000
              begin_message_delay_ms:
                type: integer
                example: 0
              updated_at:
                type: string
                format: date-time
                example: '2025-08-26T11:41:37.296105Z'
              is_locked:
                type: boolean
                example: false
              calendar_id:
                type:
                  - string
                  - 'null'
                example: null
              inbound_appoitment:
                type: boolean
                example: false
              ring_duration_sec:
                type: integer
                example: 30
              stt_mode:
                type: string
                example: fast
              backchannel_words:
                type:
                  - string
                  - 'null'
                example: null
              backchannel_frequency:
                type: number
                example: 0.8
              call_scheduling:
                type: boolean
                example: false
              agent_crm_type:
                type:
                  - string
                  - 'null'
                example: null
              voicemail_option:
                type: object
                properties:
                  action:
                    type: object
                    properties:
                      type:
                        type: string
                        example: hangup
              agent_type:
                type: string
                example: legacy
              responsiveness:
                type: number
                example: 1
              pronunciation_dictionary:
                type:
                  - string
                  - 'null'
                example: null
              vocab_specialization:
                type: string
                example: general
              user_dtmf_options:
                type: object
              denoising_mode:
                type: string
                example: noise-cancellation
              allow_user_dtmf:
                type: boolean
                example: true
              llm_detail:
                type: object
                properties:
                  llm_id:
                    type: string
                    example: llm_b47e623ae3d8110e6a05241a9799
                  model:
                    type:
                      - string
                      - 'null'
                    example: null
                  s2s_model:
                    type: string
                    example: gpt-4o-mini-realtime
              is_active:
                type: boolean
                example: false
    Error:
      required:
        - success
        - message
        - data
      type: object
      properties:
        success:
          type: boolean
        message:
          type: string
        data:
          type: object
  securitySchemes:
    api_key:
      type: apiKey
      in: header
      name: api_key

````