Nano Banana 2 Lite
Use nano-banana-2-lite to create image output. This page contains the complete request needed for this model.
Model facts
| Property | Value |
|---|---|
| Model ID | nano-banana-2-lite |
| Endpoint | POST /api/v1/generation/create |
| Output | Image |
| Modes | text-to-image, image-to-image |
| Pricing | View current pricing |
Minimal request
curl -X POST https://api.api-stock.com/api/v1/generation/create \
-H "Authorization: Bearer $API_STOCK_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "nano-banana-2-lite",
"input": {
"prompt": "A cinematic scene with soft natural light"
}
}'The create response contains a task ID:
{
"code": 200,
"data": {
"taskId": "019ca881-9503-7270-a560-f00fc2b15785",
"status": "not_started",
"createdAt": "2026-08-22T12:00:00.000Z"
}
}Parameters
Parameters belong inside the top-level input object. Unknown fields are rejected.
| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
prompt | string | Yes | — | User’s prompt |
urls | string[] | No | — | Reference image URLs for image generation or editing |
size | “1:1” | “2:3” | “3:2” | “3:4” | “4:3” | “4:5” | “5:4” | “9:16” | “16:9” | “21:9” | “1:4” | “1:8” | “4:1” | “8:1” | No | "16:9" | Output image size ratio |
resolution | “512px” | “1K” | “2K” | “4K” | No | "1K" | Output image resolution |
Modes
Minimal generation
{
"model": "nano-banana-2-lite",
"input": {
"prompt": "A cinematic scene with soft natural light"
}
}With urls
{
"model": "nano-banana-2-lite",
"input": {
"prompt": "A cinematic scene with soft natural light",
"urls": [
"https://example.com/input.jpg"
]
}
}Constraints
size: allowed:1:1,2:3,3:2,3:4,4:3,4:5,5:4,9:16,16:9,21:9,1:4,1:8,4:1,8:1.resolution: allowed:512px,1K,2K,4K.
Invalid types, unsupported enum values, out-of-range numbers, and missing required fields return HTTP 400 with error.code: "invalid_input". Correct the request rather than retrying it unchanged.
Result
Poll the task or provide a top-level webhook URL in the create request:
curl https://api.api-stock.com/api/v1/task/status/$TASK_ID \
-H "Authorization: Bearer $API_STOCK_KEY"A successful media task returns one or more files:
{
"code": 200,
"data": {
"taskId": "019ca881-9503-7270-a560-f00fc2b15785",
"status": "finished",
"files": [
{
"fileUrl": "https://storage.api-stock.com/result.png",
"fileType": "image"
}
],
"createdTime": "2026-08-22T12:00:00.000Z"
}
}See Tasks and webhooks for terminal statuses, retries and webhook delivery.