Retrieve the status and results of your Nano Banana generation tasks.
Request
curl --request GET \
--url https://api.unifically.com/nano-banana/status/d4e5f6g7-h8i9-0123-defg-hi4567890123 \
--header 'Authorization: Bearer YOUR_API_KEY'
Replace d4e5f6g7-h8i9-0123-defg-hi4567890123 with your actual task_id.
Response
{
"code": 200,
"data": {
"output": {
"image_url": "https://files.storagecdn.online/images/d4e5f6g7.png"
},
"task_id": "d4e5f6g7-h8i9-0123-defg-hi4567890123"
},
"error": {}
}
Response Fields
HTTP status code (200 for success)
Task dataGeneration output (available when completed)URL to download the generated image
Unique identifier for the task
Error object (empty on success)
Use this endpoint to check if your image generation is complete and retrieve the image URL.