- 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
List Ongoing Voice Clone Tasks
Global Server
Global Server
GET
/api/v1/userVoice/trainingRecord
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/userVoice/trainingRecord'
Responses
🟢200trainingRecord
application/json
Body
code
integerÂ
required
data
array [object {8}]Â
required
name
stringÂ
required
voice_urls
array[string]
required
current_status
stringÂ
required
sent
, processing
, completed
The result is ready usually within 1 minute, then you see "completed" response.
train_mode
stringÂ
required
_id
stringÂ
required
gender
stringÂ
required
createdAt
stringÂ
required
updatedAt
stringÂ
required
Example
{
"code": 0,
"data": [
{
"_id": "67bc2c2cc0f5208c812f9438",
"name": "your voice clone name",
"voice_urls": [
"https://dh24as48lv9ce.cloudfront.net/adam2eve/beta/user_voice_clone/2b3b0881-e9e9-4bc2-943f-c2127b4b4961/11月13日.MP3"
],
"train_mode": "best",
"gender": "female",
"lang": "en-US",
"current_status": "processing",
"createdAt": "2025-02-24T08:22:04.285Z",
"updatedAt": "2025-02-24T08:22:04.285Z"
}
]
}
Modified at 2025-03-02 20:07:27