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

# List Voices

> Get available voices for dialogue synthesis

List available ElevenLabs voices. Returns `voiceId`, `name`, `previewUrl`, and labels synchronously — use the `voiceId` values in [Text to Dialogue](/api-reference/eleven/dialogue) `inputs[].voiceId`.

<Info>
  This endpoint is **synchronous**. It does not create a task and does not consume character credits.
</Info>

## Query Filters

| Parameter  | Description                                                             |
| ---------- | ----------------------------------------------------------------------- |
| `category` | Filter by category: `premade`, `cloned`, `generated`, or `professional` |
| `search`   | Fuzzy match on name, description, or `voiceId`                          |

<Tip>
  Call this endpoint first to pick voice IDs, then pass them into `POST /eleven/dialogue`. Preview a voice with the returned `previewUrl` before synthesizing.
</Tip>


## OpenAPI

````yaml GET /eleven/voices
openapi: 3.0.0
info:
  title: Eleven AI
  description: API documentation for Eleven AI
  version: 1.0.0
  contact: {}
servers:
  - url: https://api.mountsea.ai
    description: API Gateway
security: []
tags:
  - name: eleven
    description: ''
paths:
  /eleven/voices:
    get:
      tags:
        - eleven
      summary: 获取可用音色列表
      description: >-
        对应官方 GET /v1/voices。

        同步返回 voiceId / name / previewUrl 等，供 POST /eleven/dialogue 的
        inputs[].voiceId 选用。

        不走任务队列，不消耗 character credits。
      operationId: ApiPublicController_listVoices
      parameters:
        - name: category
          required: false
          in: query
          description: 按分类过滤：premade / cloned / generated / professional
          schema:
            type: string
            example: premade
        - name: search
          required: false
          in: query
          description: 按名称 / description / voiceId 模糊搜索
          schema:
            type: string
            example: George
      responses:
        '200':
          description: 音色列表
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ListVoicesResultDto'
      security:
        - bearerAuth: []
components:
  schemas:
    ListVoicesResultDto:
      type: object
      properties:
        voices:
          type: array
          items:
            $ref: '#/components/schemas/VoiceItemDto'
        total:
          type: number
          example: 20
      required:
        - voices
        - total
    VoiceItemDto:
      type: object
      properties:
        voiceId:
          type: string
          example: JBFqnCBsd6RMkjVDRZzb
        name:
          type: string
          example: George
        category:
          type: string
          example: premade
        description:
          type: string
          nullable: true
          example: Warm, narrative male voice
        previewUrl:
          type: string
          nullable: true
          description: 试听 URL
        labels:
          type: object
          additionalProperties:
            type: string
          nullable: true
          description: 标签（性别、口音等）
          example:
            accent: american
            gender: male
      required:
        - voiceId
        - name
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT

````