- 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
List Tasks of AI Outfit or Product Holding Tasks
Global Server
https://video.a2e.ai
Global Server
https://video.a2e.ai
GET
/api/v1/userImageEdit/allRecords
Request
Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.Example:
Authorization: Bearer ********************
Query Params
edit_type
enum<string>Â
required
Allowed values:
clothingproduct
Example:
product
pageNum
stringÂ
optional
Example:
1
pageSize
stringÂ
optional
Example:
10
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/userImageEdit/allRecords?edit_type=product&pageNum=1&pageSize=10'
Responses
🟢200Success
application/json
Body
code
integerÂ
required
data
objectÂ
required
rows
array [object {10}]Â
required
count
integerÂ
required
trace_id
stringÂ
required
Example
{
"code": 0,
"data": {
"rows": [
{
"_id": "685bcd6afb322d603026af8c",
"name": "My first AI Outfit or Product Holding",
"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": ""
}
],
"count": 1
},
"trace_id": "b63b05a1-1ca4-4833-a760-181a2c7a17c4"
}
Modified at 2025-07-07 08:42:05