- 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
Check Status of One Task
Global Server
Global Server
GET
/api/v1/userImage2Video/{_id}
Request
Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.Example:
Authorization: Bearer ********************
Path Params
_id
stringÂ
required
_id
from the data
field of the return of /api/v1/userImage2Video/start
Example:
67d29023dd27a536fdf6e809
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/userImage2Video/67d29023dd27a536fdf6e809'
Responses
🟢200OK
application/json
Body
code
integerÂ
required
data
objectÂ
required
_id
stringÂ
required
_id
from the data
field of the return of /api/v1/userImage2Video/start
name
stringÂ
required
image_url
stringÂ
required
current_status
stringÂ
required
sent
. After the AI process starts, it will becomepending
. A task usually finish within 10 minutes. After the completion of the task, the status will change to completed
coins
integerÂ
required
createdAt
stringÂ
required
failed_message
stringÂ
required
failed_code
stringÂ
required
result_url
stringÂ
required
current_status
changes to completed
)trace_id
stringÂ
required
Example
{
"code": 0,
"data": {
"_id": "67d29023dd27a536fdf6e809",
"name": "Test name",
"image_url": "https://example.com/524f2258-c5a0-4bb2-9003-5e4740a2d376.png",
"prompt": "the person is speaking. Looking at the camera. detailed eyes, clear teeth,static camera view point, still background",
"negative_prompt": "six fingers, bad hands, lowres, low quality, worst quality, moving camera view point, still image",
"current_status": "completed",
"coins": 100,
"createdAt": "2025-03-13T07:58:27.863Z",
"failed_message": "",
"failed_code": "",
"result_url": "https://example.com/adam2eve/beta/users/665da3d7bcf6ab778bad0f6a/f9362ad5-1186-4bf5-a1d8-7314ea9ba47f.mp4"
},
"trace_id": "f53cfb3c-1a42-4f07-b8e3-5020244b1e04"
}
Modified at 2025-03-17 21:24:42