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

# List AI Voices (Paginated)

> Retrieve a paginated, filterable list of available AI voice models.



## OpenAPI

````yaml GET /v1/voice/pagevoices
openapi: 3.0.1
info:
  title: FineVoice API
  description: >-
    This is the documentation for the FineVoice API. If you have any questions
    or need assistance, please contact support@finevoice.ai.
  version: v1
servers:
  - url: https://apis.finevoice.ai
    description: FineVoice API Gateway
security:
  - BearerAuth: []
paths:
  /v1/voice/pagevoices:
    get:
      tags:
        - Voice
      summary: List Voice Models
      description: Retrieve a paginated, filterable list of available AI voice models.
      operationId: PageVoices
      parameters:
        - name: categroy
          in: query
          required: false
          schema:
            type: string
            enum:
              - all
              - my_voices
              - favorite
            example: all
          description: >-
            Category filter. `all` returns every voice, `my_voices` returns
            custom models, `favorite` returns favorited voices.
        - name: primary_category
          in: query
          required: false
          schema:
            type: string
            enum:
              - social-media
              - advertisement
              - characters-and-animation
              - entertainment-and-tv
              - informative-and-educational
              - narrative-and-story
              - interactive_media
              - healthcare
              - companions
              - education_training
              - enterprise
              - all
            example: all
          description: Primary category filter.
        - name: gender
          in: query
          required: false
          schema:
            type: string
          description: Filter by gender (e.g. `male`, `female`).
        - name: language
          in: query
          required: false
          schema:
            type: string
            example: en-US
          description: >-
            Language filter using locale codes such as `en-US`, `zh-CN`,
            `ja-JP`.
        - name: keyword
          in: query
          required: false
          schema:
            type: string
          description: Search keyword to filter voice names.
        - name: page
          in: query
          required: false
          schema:
            type: integer
            format: int32
            minimum: 0
            example: 0
          description: Page index, starting from 0.
        - name: limit
          in: query
          required: false
          schema:
            type: integer
            format: int32
          description: Number of voices per page.
        - name: tts
          in: query
          required: false
          schema:
            type: boolean
          description: Filter for TTS-compatible voices only.
        - name: style
          in: query
          required: false
          schema:
            type: string
          description: Filter by voice style.
        - name: age
          in: query
          required: false
          schema:
            type: string
          description: Filter by age range.
        - name: sub_category
          in: query
          required: false
          schema:
            type: string
          description: Sub-category filter.
      responses:
        '200':
          description: Paginated list of voice models.
          content:
            application/json:
              schema:
                type: object
        '401':
          description: Unauthorized — invalid or missing API key.
components:
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
      description: 'Bearer token (API key). Format: `Bearer {your_api_key}`'

````