- 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
Start Caption Removal
Global Server
Global Server
POST
/api/v1/userCaptionRemoval/start
Request
Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.Example:
Authorization: Bearer ********************
Body Params application/json
name
stringÂ
required
source_url
stringÂ
required
Example
{
"name": "musk",
"source_url": "http://XXXX/cache/videoplayback.mp4"
}
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 POST 'https://video.a2e.ai/api/v1/userCaptionRemoval/start' \
--header 'Content-Type: application/json' \
--data-raw '{
"name":"musk",
"source_url":"http://XXXX/cache/videoplayback.mp4"
}'
Responses
🟢200Start caption removal
application/json
Body
code
integerÂ
required
data
objectÂ
required
name
stringÂ
required
source_url
stringÂ
required
current_status
stringÂ
required
duration
integerÂ
required
result_url
stringÂ
required
failed_message
stringÂ
required
_id
stringÂ
required
user_id
stringÂ
required
createdAt
stringÂ
required
updatedAt
stringÂ
required
Example
{
"code": 0,
"data": {
"name": "test",
"source_url": "https://dh24as48lv9ce.cloudfront.net/adam2eve/beta/users/6459e09f63d8b6988396e8dd/video_result/66ceee65c466c8e487288d84/2024-08-28%2017%3A30%3A42.mp4",
"current_status": "sent",
"duration": 6,
"result_url": "",
"failed_message": "",
"deleted": false,
"_id": "66ed140b7a2c90d43ca818d8",
"user_id": "637498294abbb165572d5dbe",
"createdAt": "2024-09-20T06:19:55.643Z",
"updatedAt": "2024-09-20T06:19:55.643Z",
}
}
Modified at 2025-02-13 08:51:38