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

# List Voices

> List all available voices for your organization



## OpenAPI

````yaml GET /voices
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:
    get:
      tags:
        - Voices
      summary: List Voices
      description: List all voices associated with the organization.
      operationId: list_voices_voices_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/VoiceResponse'
      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
  securitySchemes:
    APIKeyHeader:
      type: apiKey
      in: header
      name: Authorization

````