For asynchronous tasks (image generation/video generation), if you actively set the callback_url when creating the task, the server will actively notify you when the status of the task changes, with the following protocol{
"task_id": "string",
"task_status": "string",
"task_status_msg": "string",
"created_at": 1722769557708,
"updated_at": 1722769557708,
"task_result":{
"images":[
{
"index": int,
"url": "string"
}
],
"videos":[
{
"id": "string",
"url": "string",
"duration": "string"
}
]
}
}
Modified at 2025-03-06 03:51:26