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

# Get Voice

> Retrieve details of a specific voice by its ID.



## OpenAPI

````yaml get /v1/voices/{voice_id}
openapi: 3.1.0
info:
  title: OpenMic v1 External API
  description: >-
    API specification for OpenMic v1 External API, providing endpoints for bot
    management, call handling, and phone number operations.
  version: 1.0.0
servers:
  - url: https://api.openmic.ai
    description: Production Environment
security:
  - api_key: []
tags:
  - name: Calls
    description: Endpoints related to phone call creation and management.
  - name: Bots
    description: Endpoints related to bot management and configuration.
  - name: Phone Numbers
    description: Endpoints related to phone number management and bot linking.
  - name: Knowledge Bases
  - name: FAQs
  - name: Campaigns
  - name: Tools
  - name: Contact Lists
  - name: Contacts
  - name: Voices
    description: >-
      Endpoints for browsing available text-to-speech voices. Voices are
      read-only and can be filtered by gender, provider, language, and accent.
  - name: SMS
    description: Endpoints for sending SMS messages.
paths:
  /v1/voices/{voice_id}:
    get:
      tags:
        - Voices
      summary: Get Voice
      description: Retrieve details of a specific voice by its ID.
      operationId: getVoiceExt
      parameters:
        - name: voice_id
          in: path
          required: true
          schema:
            type: integer
          description: The numeric ID of the voice.
      responses:
        '200':
          description: Voice details.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/VoiceResponse'
        '400':
          description: Invalid voice_id
        '404':
          description: Voice not found
components:
  schemas:
    VoiceResponse:
      type: object
      properties:
        id:
          type: integer
          description: Unique numeric ID of the voice.
        name:
          type: string
          description: Display name of the voice.
        voice_id:
          type: string
          description: Provider-specific voice identifier used when configuring a bot.
        sample_url:
          type: string
          description: URL to an audio sample of the voice.
        provider:
          type: string
          description: TTS provider (e.g. 'elevenlabs', 'deepgram').
        gender:
          type: string
          description: Gender of the voice (e.g. 'male', 'female').
        language:
          type: string
          description: Primary language code.
        languages:
          type: array
          items:
            type: string
          description: All supported language codes.
        accent:
          type: string
          description: Accent or regional variant, if applicable.
        age:
          type: string
          description: Approximate age group (e.g. 'young', 'middle-aged').
        ethnicity:
          type: string
          description: Ethnicity descriptor, if available.
        characteristics:
          type: array
          items:
            type: string
          description: Descriptive tags (e.g. 'warm', 'professional', 'energetic').
        description:
          type: string
          description: Free-text description of the voice.
        created_at:
          type: string
          format: date-time
        updated_at:
          type: string
          format: date-time
  securitySchemes:
    api_key:
      type: http
      scheme: bearer
      bearerFormat: API Key
      description: >-
        API key authentication. Include your API key in the Authorization header
        as: `Authorization: Bearer <your-api-key>`

````