- AI Avatar API
- Get Tokens
- TTS and Voice Clone
- Generate Avatar Videos
- Create Avatars and Train Lip-sync Models
- Background Matting and Replacement
- Face Swap
- AI Dubbing
- Image to Video
- Caption Removal
- Streaming Avatar
- Miscellaneous
Obtain the List of Personalized Lip-Sync Models
Deprecated
Global Server
Global Server
GET
/api/v1/video/wl_list
Request
Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.Example:
Authorization: Bearer ********************
Request samples
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://video.a2e.ai/api/v1/video/wl_list'
Responses
🟢200wl_list
application/json
Body
code
integer
required
data
array [object {10}]
required
name
string
required
wl_model
string
required
description
string
required
description_en
string
required
visible
boolean
required
deleted
boolean
required
_id
string
required
__v
integer
required
createdAt
string
required
updatedAt
string
required
Example
{
"code": 0,
"data": [
{
"name": "V1(default)",
"wl_model": "lrs2_pbs",
"description": "清晰度一般, 速度最快, 最稳定",
"description_en": "medium quality, fastest, most stable ",
"visible": true,
"deleted": false,
"_id": "6540c475ef087817eee93e69",
"__v": 0,
"createdAt": "2023-10-31T09:10:13.311Z",
"updatedAt": "2023-10-31T09:10:13.311Z"
},
{
"name": "V2(experimental)",
"wl_model": "WLGPNormal",
"description": "清晰度最高, 速度最慢, 部分面部变形",
"description_en": "highest quality, slowest, some corner cases",
"visible": true,
"deleted": false,
"_id": "6540c475ef087817eee93e6a",
"__v": 0,
"createdAt": "2023-10-31T09:10:13.312Z",
"updatedAt": "2023-10-31T09:10:13.312Z"
},
{
"name": "V3",
"wl_model": "V3",
"description": "清晰度高, 速度慢, 少数面部变形",
"description_en": "high quality, slow, rare corner casees",
"visible": true,
"deleted": false,
"_id": "6540c475ef087817eee93e6b",
"__v": 0,
"createdAt": "2023-10-31T09:10:13.312Z",
"updatedAt": "2023-10-31T09:10:13.312Z"
}
]
}
Modified at 2024-12-04 04:11:06