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

# Get Voice

> Get details of a specific voice



## OpenAPI

````yaml GET /voices/{uuid}
openapi: 3.1.0
info:
  title: Public API v1
  description: >-
    Public API v1 requiring API keys.


    **Timestamps:** All datetime fields in API responses are returned in UTC
    using ISO 8601 format (e.g., `2024-01-15T14:30:00Z`). When filtering by date
    parameters, provide timestamps in ISO 8601 format.
  version: 0.1.0
servers:
  - url: https://api.prod.usesimple.ai/api/v1
    description: Production API Server
security: []
paths:
  /voices/{uuid}:
    get:
      tags:
        - Voices
      summary: Get Voice Details
      description: |-
        Get details for a specific voice.
        Only returns voices associated with the organization.
      operationId: get_voice_details_voices__uuid__get
      parameters:
        - name: uuid
          in: path
          required: true
          schema:
            type: string
            format: uuid
            title: Uuid
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/VoiceResponse'
        '404':
          description: Voice Not Found
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: string
                    default: Voice not found
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - APIKeyHeader: []
components:
  schemas:
    VoiceResponse:
      type: object
      required:
        - id
        - name
        - languages
        - organization_id
        - created_at
        - updated_at
      properties:
        id:
          type: string
          format: uuid
          title: ID
          description: Unique identifier for the voice
        name:
          type: string
          title: Name
          description: Name of the voice
        description:
          anyOf:
            - type: string
            - type: 'null'
          title: Description
          description: Description of the voice
        languages:
          type: array
          items:
            type: string
          title: Languages
          description: List of supported languages for this voice
        tags:
          type: array
          items:
            type: string
          title: Tags
          description: Tags associated with the voice
        organization_id:
          type: integer
          title: Organization ID
          description: ID of the organization that owns this voice
        created_at:
          type: string
          format: date-time
          title: Created At
          description: When the voice was created
        updated_at:
          type: string
          format: date-time
          title: Updated At
          description: When the voice was last updated
      title: Voice Response
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError
  securitySchemes:
    APIKeyHeader:
      type: apiKey
      in: header
      name: Authorization

````