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

# ListVoiceAgentsAPI lists the organization's concierges — the managed voice


> agents that answer its website widget, its phone and its texts — so a surface can offer them for picking. Archived agents are left out.

Each row carries the \`id\` another surface stores (the lead playbook's linked concierge, PUT /v1/lead-playbook \`agent\_id\`), the \`slug\` a person types, the \`name\` a lead sees, and the \`phone\_number\` and \`lead\_dataset\_id\` that say what the agent can already do. Both of the last two are empty when unset.




## OpenAPI

````yaml /api/openapi.json get /v1/voice/agents
openapi: 3.0.0
info:
  title: Erdo API
  description: >-
    Erdo's REST API: query and write datasets, run agents, manage threads,
    integrations, pages, evals, workstreams, experiments, and bounded outreach.
    Authenticate with a Bearer API key (erdo_api_...) or scoped token
    (erdo_token_...).
  version: '2026-09-22'
servers:
  - url: https://api.erdo.ai
    description: Production
security:
  - bearerAuth: []
paths:
  /v1/voice/agents:
    get:
      summary: >
        ListVoiceAgentsAPI lists the organization's concierges — the managed
        voice
      description: >
        agents that answer its website widget, its phone and its texts — so a
        surface can offer them for picking. Archived agents are left out.


        Each row carries the \`id\` another surface stores (the lead playbook's
        linked concierge, PUT /v1/lead-playbook \`agent\_id\`), the \`slug\` a
        person types, the \`name\` a lead sees, and the \`phone\_number\` and
        \`lead\_dataset\_id\` that say what the agent can already do. Both of
        the last two are empty when unset.
      operationId: GET:mcp.ListVoiceAgentsAPI
      responses:
        '200':
          content:
            application/json:
              schema:
                properties:
                  agents:
                    items:
                      $ref: '#/components/schemas/mcp.VoiceAgent'
                    type: array
                type: object
          description: Success response
        default:
          $ref: '#/components/responses/APIError'
components:
  schemas:
    mcp.VoiceAgent:
      description: >
        id another surface stores (the lead playbook's link), the slug a person
        types, the name a lead sees, and the two facts that say what it can
        already do — the number it calls and texts from, and where its leads
        land.


        Deliberately narrow. The full deployment (persona text, languages,
        transfer rules, provider account) is the voice service's own surface; a
        list that exists to fill a dropdown does not need to publish an org's
        prompts.
      properties:
        id:
          type: string
        lead_dataset_id:
          description: >
            empty when it pins none and the platform resolves the organization's
            canonical one.
          title: >
            LeadDatasetID is the dataset this agent's own leads are written
            into, or
          type: string
        name:
          type: string
        phone_number:
          type: string
        slug:
          type: string
      title: >
        VoiceAgent is one of an organization's concierges, as a picker needs it:
        the
      type: object
  responses:
    APIError:
      content:
        application/json:
          schema:
            externalDocs:
              url: https://pkg.go.dev/encore.dev/beta/errs#Error
            properties:
              code:
                description: Error code
                example: not_found
                externalDocs:
                  url: https://pkg.go.dev/encore.dev/beta/errs#ErrCode
                type: string
              details:
                description: Error details
                type: object
              message:
                description: Error message
                type: string
            title: APIError
            type: object
      description: Error response
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: An Erdo API key (erdo_api_...) or scoped token (erdo_token_...).

````