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:

// processing
{
    "success": true,
    "data": {
        "status": "processing"
    }
}

// completed
{
    "success": true,
    "data": {
        "task_id": "02f862a24bcea0f3d3382cfac5072a93",
        "status": "completed",
        "video_url": "https://files.storagecdn.online/videos/file_1754474641.mp4",
        "seed": 64108,
        "audio": true, // indicates if audio was generated with video, or removed by google
        "prompt": "A grandmother sits in a Lamborghini and Drives down the road at high speed."
    }
}

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