🎉

🎉 Nano Banana 2가 출시되었습니다!

지금 시도하기

Query Tasks Result

Retrieve the results of a previously submitted task.

GET
https://nanobnana.com/api/status?task_id={task_id}

Retrieve the status of a previously submitted task.

Headers

Content-Type
application/json
Response

Successful response with the image URLs.

Response Schema

JSON
1
{
2
"code": 200,
3
"message": "success",
4
"data": {
5
"task_id": "nano333b71e549f645122eb8db5f75af2c11ban",
6
"request": {
7
"prompt": "A beautiful landscape with mountains and a river"
8
},
9
"response": [
10
"https://example.com/image.png"
11
],
12
"type": 1,
13
"status": 1,
14
"consumed_credit": 20,
15
"created_at": "2025-01-01 16:02:32",
16
"updated_at": "2025-01-01 16:02:46"
17
}
18
}