> ## 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.

# Get custom voice

> Read the live upstream state of a custom voice owned by your organization. Returns `404` for unknown IDs and for IDs owned by other organizations — voice existence is never confirmed cross-tenant.



## OpenAPI

````yaml /api-reference/openapi.json get /v1/custom-voices/{voice_id}
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/{voice_id}:
    get:
      tags:
        - Audio
      summary: Get custom voice
      description: >-
        Read the live upstream state of a custom voice owned by your
        organization. Returns `404` for unknown IDs and for IDs owned by other
        organizations — voice existence is never confirmed cross-tenant.
      parameters:
        - schema:
            minLength: 1
            maxLength: 255
            type: string
          in: path
          name: voice_id
          required: true
          description: xAI custom voice id
      responses:
        '200':
          description: Custom voice object (live upstream state).
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/UpstreamVoiceView'
        '403':
          description: '`customVoicesEnabled` is off for your organization.'
        '404':
          description: Voice ID not found or owned by another organization.
components:
  schemas:
    UpstreamVoiceView:
      type: object
      description: >-
        Allowlisted projection of an xAI custom voice object returned by create,
        read, and update operations. xAI-internal fields (team IDs, consent
        state) are excluded.
      required:
        - voice_id
      properties:
        voice_id:
          type: string
          pattern: ^[a-z0-9]{8}$
        name:
          type: string
          nullable: true
        description:
          type: string
          nullable: true
        gender:
          type: string
          nullable: true
        accent:
          type: string
          nullable: true
        age:
          type: string
          nullable: true
        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).

````