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

# List voices

> Get a paginated list of available voices from the specified provider



## OpenAPI

````yaml /openapi.yaml get /org/{org_id}/voices
openapi: 3.0.0
info:
  contact: {}
  title: Cozmo - API
  version: devel
servers:
  - url: https://v2-nova-api.prod.czmx.in/api
security:
  - BearerAuth: []
paths:
  /org/{org_id}/voices:
    get:
      tags:
        - Voices
      summary: List voices
      description: Get a paginated list of available voices from the specified provider
      operationId: listVoices
      parameters:
        - description: Organization ID
          in: path
          name: org_id
          required: true
          schema:
            type: string
        - description: Voice provider
          in: query
          name: provider
          required: true
          schema:
            type: string
            enum:
              - elevenlabs
              - cartesia
              - openai
              - cambai
              - sarvam
              - inworld
              - minimax
        - description: 'Page number (default: 1) - used for offset pagination'
          in: query
          name: page
          schema:
            type: integer
        - description: 'Page size (default: 50, max: 100)'
          in: query
          name: size
          schema:
            type: integer
        - description: >-
            Cursor for next page - used for native pagination (cartesia,
            elevenlabs)
          in: query
          name: next_page
          schema:
            type: string
        - description: >-
            Filter by model (e.g., bulbul:v2, bulbul:v3) - only for sarvam
            provider
          in: query
          name: model
          schema:
            type: string
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/voices.ListVoicesResponse'
        '400':
          description: Bad Request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/helper.ResponseError'
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/helper.ResponseError'
        '429':
          description: Rate limit exceeded
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/helper.ResponseError'
        '500':
          description: Internal Server Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/helper.ResponseError'
components:
  schemas:
    voices.ListVoicesResponse:
      properties:
        meta:
          $ref: '#/components/schemas/voices.PaginationMeta'
        voices:
          items:
            $ref: '#/components/schemas/voices.Voice'
          type: array
      type: object
    helper.ResponseError:
      properties:
        data: {}
        error: {}
        message:
          type: string
        status:
          type: boolean
      type: object
    voices.PaginationMeta:
      properties:
        has_more:
          type: boolean
        next_page:
          description: Cursor for next page (cartesia, elevenlabs)
          type: string
        page:
          type: integer
        size:
          type: integer
        total:
          description: May not be available with cursor pagination
          type: integer
        total_pages:
          description: May not be available with cursor pagination
          type: integer
      type: object
    voices.Voice:
      properties:
        accent:
          type: string
        age:
          type: string
        category:
          type: string
        description:
          type: string
        gender:
          type: string
        id:
          type: string
        language:
          type: string
        model:
          type: string
        name:
          type: string
        preview_url:
          type: string
        provider:
          description: >-
            "elevenlabs", "cartesia", "openai", "cambai", "sarvam", "inworld",
            "minimax"
          type: string
        use_case:
          type: string
      type: object
  securitySchemes:
    BearerAuth:
      type: apiKey
      in: header
      name: X-API-Key

````