# tts_voices_list

## OpenAPI Specification

```yaml
openapi: 3.0.1
info:
  title: ''
  description: ''
  version: 1.0.0
paths:
  /api/tts/voices/:
    get:
      summary: tts_voices_list
      deprecated: false
      description: ''
      operationId: tts_voices_list
      tags:
        - tts
        - tts
      parameters:
        - name: language
          in: query
          description: ''
          required: false
          schema:
            type: string
        - name: limit
          in: query
          description: Number of results to return per page.
          required: false
          schema:
            type: integer
        - name: offset
          in: query
          description: The initial index from which to return the results.
          required: false
          schema:
            type: integer
        - name: ordering
          in: query
          description: Which field to use when ordering the results.
          required: false
          schema:
            type: string
        - name: Authorization
          in: header
          description: ''
          required: true
          example: Token <api-key>
          schema:
            type: string
            default: Token <api-key>
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PaginatedTTSVoiceList'
          headers: {}
          x-apifox-name: 成功
      security: []
      x-apifox-folder: tts
      x-apifox-status: released
      x-run-in-apifox: https://app.apifox.com/web/project/4243012/apis/api-160139850-run
components:
  schemas:
    PaginatedTTSVoiceList:
      type: object
      properties:
        count:
          type: integer
          examples:
            - 123
        next:
          type: string
          format: uri
          examples:
            - http://api.example.org/accounts/?offset=400&limit=100
          nullable: true
        previous:
          type: string
          format: uri
          examples:
            - http://api.example.org/accounts/?offset=200&limit=100
          nullable: true
        results:
          type: array
          items:
            $ref: '#/components/schemas/TTSVoice'
      x-apifox-orders:
        - count
        - next
        - previous
        - results
      x-apifox-ignore-properties: []
      x-apifox-folder: ''
    TTSVoice:
      type: object
      properties:
        id:
          type: integer
          readOnly: true
        name:
          type: string
          readOnly: true
        label:
          type: string
          readOnly: true
        provider:
          allOf:
            - $ref: '#/components/schemas/TTSProviderEnum'
          readOnly: true
        sex:
          allOf:
            - $ref: '#/components/schemas/SexEnum'
          readOnly: true
        language:
          type: string
          readOnly: true
        language_code:
          type: string
          readOnly: true
      required:
        - id
        - name
        - label
        - provider
        - sex
        - language
        - language_code
      x-apifox-orders:
        - id
        - name
        - label
        - provider
        - sex
        - language
        - language_code
      x-apifox-ignore-properties: []
      x-apifox-folder: ''
    SexEnum:
      enum:
        - male
        - female
      type: string
      x-apifox-folder: ''
    TTSProviderEnum:
      enum:
        - amazon
        - azure
        - descript
        - google
        - elevenlabs
      type: string
      x-apifox-folder: ''
  securitySchemes: {}
servers:
  - url: http://dev-cn.your-api-server.com
    description: 开发环境
  - url: http://test-cn.your-api-server.com
    description: 测试环境
  - url: https://api.spiritme.tech
    description: 正式环境
security: []

```
