Get Task
curl --location 'https://api.unifically.com/veo-3/status/0974b191-26e2-49f9-9563-3f230617d109' \
--header 'Authorization: Bearer YOUR_ACCESS_TOKEN' \
--header 'Content-Type: application/json'
Replace YOUR_ACCESS_TOKEN
with your actual access token.
Response examples it may return:
//status fetch endpoint
{
"code": 400,
"data": {
"status": "processing",
"output": {},
"error": {},
"task_id": "a2e0a3a4ced4346b629ae6bdce352d2"
}
}
{
"code": 400,
"data": {
"status": "failed",
"output": {},
"error": {
"message": "Only English prompts are supported at this time.",
"code": "veo3_error"
},
"task_id": "a2e0a3a4ced4346b629ae6bdce352d2"
}
}
The API may return different status codes, such as processing
, completed
, or failed
. These indicate the current state of the request being processed.
Last updated