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

# List voices



## OpenAPI

````yaml /api/openapi.json get /api/v1/audio/voices
openapi: 3.0.2
info:
  title: Melius API
  version: '1'
  description: >-
    The Melius REST API. Authenticate with an API key as a bearer token
    (`Authorization: Bearer mel_...`) and select the team to act on with the
    `x-team-id` header. Generations run through the same node + run pipeline as
    the app: create a node on a canvas, start a run, poll the run, then read the
    resulting version asset.
servers:
  - url: https://api.melius.com
security:
  - apiKey: []
    teamId: []
paths:
  /api/v1/audio/voices:
    get:
      tags:
        - audio
      summary: List voices
      operationId: audio.listVoices
      parameters:
        - name: page
          in: query
          schema:
            default: 0
            type: integer
            minimum: 0
            nullable: true
        - name: pageSize
          in: query
          schema:
            default: 100
            type: integer
            minimum: 1
            maximum: 100
        - name: search
          in: query
          schema:
            type: string
        - name: quality
          in: query
          schema:
            type: string
            enum:
              - studio
        - name: language
          in: query
          schema:
            type: string
            enum:
              - en
              - es
              - fr
              - de
              - it
              - pt
              - pl
              - hi
              - ja
              - zh
              - ko
              - ar
              - ru
              - nl
              - sv
              - tr
              - id
              - fil
              - af
              - hy
              - az
              - be
              - bn
              - bs
              - bg
              - ca
              - cs
              - da
              - el
              - et
              - fi
              - he
              - hu
              - is
              - kn
              - lv
              - lt
              - ms
              - mr
              - 'no'
              - ro
              - sk
              - sl
              - sr
              - ta
              - te
              - th
              - uk
              - ur
              - vi
        - name: accent
          in: query
          schema:
            type: string
            enum:
              - american
              - british
              - australian
              - irish
              - scottish
              - indian
              - canadian
              - south african
              - new zealand
              - swedish
              - italian
              - german
              - french
              - spanish
              - portuguese
              - brazilian
              - mexican
              - arabic
              - japanese
              - chinese
              - korean
        - name: gender
          in: query
          schema:
            type: string
            enum:
              - male
              - female
              - neutral
        - name: age
          in: query
          schema:
            type: string
            enum:
              - young
              - middle_aged
              - old
        - name: useCase
          in: query
          schema:
            type: string
            enum:
              - conversational
              - narrative_story
              - characters_animation
              - social_media
              - informative_educational
              - advertisement
              - entertainment_tv
      responses:
        '200':
          description: '200'
          content:
            application/json:
              schema:
                type: object
                properties:
                  voices:
                    type: array
                    items:
                      type: object
                      properties:
                        voiceId:
                          type: string
                        name:
                          type: string
                        category:
                          type: string
                        previewUrl:
                          type: string
                          format: uri
                          nullable: true
                        labels:
                          type: object
                          additionalProperties:
                            type: string
                      required:
                        - voiceId
                        - name
                        - category
                        - previewUrl
                        - labels
                  page:
                    type: number
                  pageSize:
                    type: number
                  hasMore:
                    type: boolean
                  totalCount:
                    type: number
                required:
                  - voices
                  - page
                  - pageSize
                  - hasMore
                  - totalCount
        '401':
          description: Missing, invalid, expired, or revoked API key.
          content:
            application/json:
              schema:
                type: object
                properties:
                  statusCode:
                    type: integer
                  error:
                    type: string
                  message:
                    type: string
                required:
                  - statusCode
                  - message
        '403':
          description: '403'
          content:
            application/json:
              schema:
                type: object
                properties:
                  message:
                    type: string
                required:
                  - message
        '429':
          description: Rate limit reached — retry after the `Retry-After` header.
          headers:
            Retry-After:
              description: Seconds to wait before retrying.
              schema:
                type: integer
          content:
            application/json:
              schema:
                type: object
                properties:
                  statusCode:
                    type: integer
                  error:
                    type: string
                  message:
                    type: string
                  retryAfterSeconds:
                    type: integer
                required:
                  - statusCode
                  - message
components:
  securitySchemes:
    apiKey:
      type: http
      scheme: bearer
      description: 'A Melius API key (`mel_...`), sent as `Authorization: Bearer <key>`.'
    teamId:
      type: apiKey
      in: header
      name: x-team-id
      description: The team (workspace) to act on. Defaults to the key's team when omitted.

````