GET
/
nano-banana
/
status
/
{task_id}
Check Status
curl --request GET \
  --url https://api.unifically.com/nano-banana/status/{task_id} \
  --header 'Authorization: Bearer <token>'
{
  "code": 200,
  "data": {
    "output": {
      "image_url": "https://files.storagecdn.online/images/d4e5f6g7.png"
    },
    "task_id": "d4e5f6g7-h8i9-0123-defg-hi4567890123"
  },
  "error": {}
}
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

code
integer
default:"200"
HTTP status code (200 for success)
data
object
Task data
output
object
Generation output (available when completed)
image_url
string
URL to download the generated image
task_id
string
Unique identifier for the task
error
object
Error object (empty on success)
Use this endpoint to check if your image generation is complete and retrieve the image URL.