- AI Avatar API
- Get Tokens
- TTS and Voice Clone
- Generate Avatar Videos
- Generate AI Avatar VideosPOST
- List of Result VideosPOST
- List of Result VideosGET
- List One or All AvatarsPOST
- List One or All AvatarsGET
- Obtain the Status of One Avatar Video TaskPOST
- Obtain the List of Personalized Lip-Sync ModelsGET
- Delete or Cancel a VideoDELETE
- Auto Language DetectPOST
- Auto Swith to Public Computing PoolPOST
- Create Avatars and Train Lip-sync Models
- Background Matting and Replacement
- Face Swap
- AI Dubbing
- Image to Video
- Caption Removal
- Streaming Avatar
- Miscellaneous
- Text to Image
- AI Outfit and Product Holding
- AI Image singing
Start AI Outfit or Product Holding
Global Server
https://video.a2e.ai
Global Server
https://video.a2e.ai
POST
/api/v1/userImageEdit/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
edit_type
enum<string>Â
required
Allowed values:
clothingproduct
image_urls
array[string]
required
Example
{
"name":"test",
"edit_type":"product",
"image_urls": [
"https://example.com/AI_product/p_perfume.png",
"https://example.com/AI_product/model2.jpg"
]
}
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/userImageEdit/start' \
--header 'Content-Type: application/json' \
--data-raw '{
"name":"test",
"edit_type":"product",
"image_urls": [
"https://example.com/AI_product/p_perfume.png",
"https://example.com/AI_product/model2.jpg"
]
}'
Responses
🟢200Success
application/json
Body
code
integerÂ
required
data
objectÂ
required
_id
stringÂ
required
current_status
stringÂ
required
initialized
: initializationsent
: sent to algorithmpending
: in algorithm queueprocessing
: being processedcompleted
: completedfailed
: algorithm failedname
stringÂ
required
edit_type
stringÂ
required
image_urls
array[string]
required
result_image_url
stringÂ
required
coins
integerÂ
required
createdAt
stringÂ
required
failed_message
stringÂ
required
failed_code
stringÂ
required
trace_id
stringÂ
required
Example
{
"code": 0,
"data": {
"_id": "685bcd6afb322d603026af8c",
"name": "test",
"edit_type": "product",
"image_urls": [
"https://example.com/AI_product/p_perfume.png",
"https://example.com/AI_product/model2.jpg"
],
"result_image_url": "https://example.com/d90194d0-f2e0-4aa7-a3a7-775dc30c8908.jpeg",
"current_status": "completed",
"coins": 30,
"createdAt": "2025-06-25T10:20:26.997Z",
"failed_message": "",
"failed_code": ""
},
"trace_id": "7c7d53cf-bd47-478d-9b82-36a17813a886"
}
Modified at 2025-07-07 08:42:00