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

# List custom voices

> List custom voice clones owned by your organization. Requires the `customVoicesEnabled` org gate. Served from AI Reserve's ownership map — voices belonging to other organizations are never visible regardless of their xAI voice ID.



## OpenAPI

````yaml /api-reference/openapi.json get /v1/custom-voices
openapi: 3.0.3
info:
  title: AI Reserve Gateway API
  description: >-
    The AI Reserve API surface — OpenAI-compatible chat completions,
    Anthropic-compatible messages, Bedrock Converse, images, video, files,
    text-to-speech, realtime voice sessions, and GPU Compute pod/volume
    management — all behind one endpoint and one API key.
  version: 1.0.0
servers:
  - url: https://api.aireserve.com
security:
  - bearerAuth: []
paths:
  /v1/custom-voices:
    get:
      tags:
        - Audio
      summary: List custom voices
      description: >-
        List custom voice clones owned by your organization. Requires the
        `customVoicesEnabled` org gate. Served from AI Reserve's ownership map —
        voices belonging to other organizations are never visible regardless of
        their xAI voice ID.
      responses:
        '200':
          description: Your organization's custom voices.
          content:
            application/json:
              schema:
                type: object
                properties:
                  voices:
                    type: array
                    items:
                      $ref: '#/components/schemas/CustomVoice'
        '403':
          description: '`customVoicesEnabled` is off for your organization.'
components:
  schemas:
    CustomVoice:
      type: object
      description: >-
        A custom voice clone owned by your organization (served from AI
        Reserve's ownership records).
      required:
        - voice_id
        - name
        - created_at
      properties:
        voice_id:
          type: string
          pattern: ^[a-z0-9]{8}$
          description: 8-character xAI voice ID.
        name:
          type: string
        description:
          type: string
          nullable: true
        gender:
          type: string
          nullable: true
          enum:
            - male
            - female
            - neutral
            - null
        accent:
          type: string
          nullable: true
        age:
          type: string
          nullable: true
          enum:
            - young
            - middle-aged
            - old
            - null
        language:
          type: string
          nullable: true
        use_case:
          type: string
          nullable: true
        tone:
          type: string
          nullable: true
        created_at:
          type: string
          format: date-time
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: >-
        Your AI Reserve API key (aireserve_api_…) from the API Keys page in the
        portal (https://portal.aireserve.com/keys).

````