Query Image Info by TaskID
curl --request POST \
--url https://test.tensorai.tensorslab.com/v1/images/infobytaskid \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data '
{
"taskid": "<string>"
}
'
{
"code": 1000,
"msg": "OK",
"data": {
"taskid": "abcd_1234567890abcdef",
"starttime": "2026-01-30 12:00:00",
"url": [
"https://example.com/image.jpg"
],
"image_status": 3,
"width": 2048,
"height": 2048
}
}