API
  • Welcome
  • Getting Started
    • Quickstart
      • Authentication
      • Rate limits
  • API Documentation
    • AI Avatar API
      • Get a list of avatar
      • Get a list of voice
      • Generate avatar video task
    • Get task info
Powered by GitBook
On this page
  1. API Documentation
  2. AI Avatar API

Get a list of voice

Get voice information for video generation

PreviousGet a list of avatarNextGenerate avatar video task

Last updated 8 months ago

Get a list of voice

post
Header parameters
timestampanyRequired

Millisecond timestamp

Content-TypeanyRequired

application/json

AuthorizationanyRequired

Authorization

RESPONSE-WRAPanyRequired

Whether to encapsulate response data

x-auth-keyanyRequired

Your api key

Body
genderstringRequired

Voice gender(male,female)

Responses
200
OK
*/*
201
Created
401
Unauthorized
403
Forbidden
404
Not Found
post
POST /v1.0/voice/list HTTP/1.1
Host: openapi
timestamp: null
Content-Type: application/json
Authorization: null
RESPONSE-WRAP: null
x-auth-key: null
Accept: */*
Content-Length: 17

{
  "gender": "text"
}
[
  {
    "accent": "text",
    "age": "text",
    "audio_text": "text",
    "audio_url": "text",
    "category": "text",
    "description": "text",
    "gender": "text",
    "name": "text",
    "preview_url": "text",
    "type": 1,
    "use_case": "text",
    "voice_id": "text"
  }
]