{
  "openapi": "3.0.1",
  "info": {
    "title": "AI Image Generator | Nano Banana Pro | 4K",
    "description": "Generate 4K AI images from text prompts using Nano Banana Pro. Text-to-image or image-to-image with a reference photo. Multiple aspect ratios. No API key needed. Bulk generation up to 50 per run.",
    "version": "2.0",
    "x-build-id": "MRZQ55cA9j3Qo7Ofy"
  },
  "servers": [
    {
      "url": "https://api.apify.com/v2"
    }
  ],
  "paths": {
    "/acts/apivault_labs~ai-image-generator/run-sync-get-dataset-items": {
      "post": {
        "operationId": "run-sync-get-dataset-items-apivault_labs-ai-image-generator",
        "x-openai-isConsequential": false,
        "summary": "Executes an Actor, waits for its completion, and returns Actor's dataset items in response.",
        "tags": [
          "Run Actor"
        ],
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/inputSchema"
              }
            }
          }
        },
        "parameters": [
          {
            "name": "token",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            },
            "description": "Enter your Apify token here"
          }
        ],
        "responses": {
          "200": {
            "description": "OK"
          }
        }
      }
    },
    "/acts/apivault_labs~ai-image-generator/runs": {
      "post": {
        "operationId": "runs-sync-apivault_labs-ai-image-generator",
        "x-openai-isConsequential": false,
        "summary": "Executes an Actor and returns information about the initiated run in response.",
        "tags": [
          "Run Actor"
        ],
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/inputSchema"
              }
            }
          }
        },
        "parameters": [
          {
            "name": "token",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            },
            "description": "Enter your Apify token here"
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/runsResponseSchema"
                }
              }
            }
          }
        }
      }
    },
    "/acts/apivault_labs~ai-image-generator/run-sync": {
      "post": {
        "operationId": "run-sync-apivault_labs-ai-image-generator",
        "x-openai-isConsequential": false,
        "summary": "Executes an Actor, waits for completion, and returns the OUTPUT from Key-value store in response.",
        "tags": [
          "Run Actor"
        ],
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/inputSchema"
              }
            }
          }
        },
        "parameters": [
          {
            "name": "token",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            },
            "description": "Enter your Apify token here"
          }
        ],
        "responses": {
          "200": {
            "description": "OK"
          }
        }
      }
    }
  },
  "components": {
    "schemas": {
      "inputSchema": {
        "type": "object",
        "required": [
          "prompts"
        ],
        "properties": {
          "prompts": {
            "title": "Prompts",
            "type": "array",
            "description": "Text prompts for image generation. Each prompt produces one or more images (see 'Variants per prompt'). Max 10 images total per run.",
            "items": {
              "type": "string"
            }
          },
          "negativePrompt": {
            "title": "Negative prompt (what to avoid)",
            "type": "string",
            "description": "Things you do NOT want in the image. Examples: 'blurry, watermark, text, extra fingers, low quality, distorted'."
          },
          "style": {
            "title": "Style preset",
            "enum": [
              "none",
              "photorealistic",
              "anime",
              "oil-painting",
              "3d-render",
              "watercolor",
              "cinematic",
              "flat-illustration",
              "pixel-art"
            ],
            "type": "string",
            "description": "Auto-applies a style to all prompts. Saves you from typing style keywords every time.",
            "default": "none"
          },
          "resolution": {
            "title": "Resolution",
            "enum": [
              "1K",
              "2K",
              "4K"
            ],
            "type": "string",
            "description": "Output image resolution. 2K is fast and cheap, 4K is maximum quality.",
            "default": "4K"
          },
          "aspectRatio": {
            "title": "Aspect Ratio",
            "enum": [
              "9:16",
              "16:9",
              "1:1",
              "4:3",
              "3:4",
              "3:2",
              "2:3"
            ],
            "type": "string",
            "description": "Output image shape.",
            "default": "9:16"
          },
          "numImages": {
            "title": "Number of images per prompt",
            "enum": [
              "1",
              "2",
              "4",
              "8"
            ],
            "type": "string",
            "description": "How many images to generate for each prompt. Useful for A/B testing or picking the best one from a batch.",
            "default": "1"
          },
          "seed": {
            "title": "Seed (optional, for reproducibility)",
            "type": "integer",
            "description": "Fix the random seed to get reproducible results. Same prompt + same seed = same image. Leave at -1 for random. When generating multiple variants, the seed auto-increments (+1 per variant).",
            "default": -1
          },
          "referenceImageUrl": {
            "title": "Reference image URL (image-to-image)",
            "type": "string",
            "description": "URL of a reference photo for image-to-image generation. The AI uses it as a visual guide while following your text prompt. Leave empty for pure text-to-image."
          },
          "saveToStore": {
            "title": "Save images permanently (Apify hosted URL)",
            "type": "boolean",
            "description": "Download each generated image and host it on a permanent Apify URL that never expires. On by default — your images are always accessible and the delivery link is yours.",
            "default": true
          },
          "compress": {
            "title": "Compress image (WebP)",
            "type": "boolean",
            "description": "Re-encode the saved image as WebP to shrink file size ~10x with near-identical quality (a 4K PNG of ~20 MB becomes ~1.5 MB). The delivery URL ends in .webp. Leave off to keep the original lossless PNG. Only applies when 'Save images permanently' is on.",
            "default": false
          },
          "maxConcurrency": {
            "title": "Max parallel generations",
            "minimum": 1,
            "maximum": 5,
            "type": "integer",
            "description": "How many images to generate in parallel. 3 is the sweet spot for speed vs reliability.",
            "default": 3
          }
        }
      },
      "runsResponseSchema": {
        "type": "object",
        "properties": {
          "data": {
            "type": "object",
            "properties": {
              "id": {
                "type": "string"
              },
              "actId": {
                "type": "string"
              },
              "userId": {
                "type": "string"
              },
              "startedAt": {
                "type": "string",
                "format": "date-time",
                "example": "2025-01-08T00:00:00.000Z"
              },
              "finishedAt": {
                "type": "string",
                "format": "date-time",
                "example": "2025-01-08T00:00:00.000Z"
              },
              "status": {
                "type": "string",
                "example": "READY"
              },
              "meta": {
                "type": "object",
                "properties": {
                  "origin": {
                    "type": "string",
                    "example": "API"
                  },
                  "userAgent": {
                    "type": "string"
                  }
                }
              },
              "stats": {
                "type": "object",
                "properties": {
                  "inputBodyLen": {
                    "type": "integer",
                    "example": 2000
                  },
                  "rebootCount": {
                    "type": "integer",
                    "example": 0
                  },
                  "restartCount": {
                    "type": "integer",
                    "example": 0
                  },
                  "resurrectCount": {
                    "type": "integer",
                    "example": 0
                  },
                  "computeUnits": {
                    "type": "integer",
                    "example": 0
                  }
                }
              },
              "options": {
                "type": "object",
                "properties": {
                  "build": {
                    "type": "string",
                    "example": "latest"
                  },
                  "timeoutSecs": {
                    "type": "integer",
                    "example": 300
                  },
                  "memoryMbytes": {
                    "type": "integer",
                    "example": 1024
                  },
                  "diskMbytes": {
                    "type": "integer",
                    "example": 2048
                  }
                }
              },
              "buildId": {
                "type": "string"
              },
              "defaultKeyValueStoreId": {
                "type": "string"
              },
              "defaultDatasetId": {
                "type": "string"
              },
              "defaultRequestQueueId": {
                "type": "string"
              },
              "buildNumber": {
                "type": "string",
                "example": "1.0.0"
              },
              "containerUrl": {
                "type": "string"
              },
              "usage": {
                "type": "object",
                "properties": {
                  "ACTOR_COMPUTE_UNITS": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATASET_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATASET_WRITES": {
                    "type": "integer",
                    "example": 0
                  },
                  "KEY_VALUE_STORE_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "KEY_VALUE_STORE_WRITES": {
                    "type": "integer",
                    "example": 1
                  },
                  "KEY_VALUE_STORE_LISTS": {
                    "type": "integer",
                    "example": 0
                  },
                  "REQUEST_QUEUE_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "REQUEST_QUEUE_WRITES": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATA_TRANSFER_INTERNAL_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATA_TRANSFER_EXTERNAL_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "PROXY_SERPS": {
                    "type": "integer",
                    "example": 0
                  }
                }
              },
              "usageTotalUsd": {
                "type": "number",
                "example": 0.00005
              },
              "usageUsd": {
                "type": "object",
                "properties": {
                  "ACTOR_COMPUTE_UNITS": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATASET_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATASET_WRITES": {
                    "type": "integer",
                    "example": 0
                  },
                  "KEY_VALUE_STORE_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "KEY_VALUE_STORE_WRITES": {
                    "type": "number",
                    "example": 0.00005
                  },
                  "KEY_VALUE_STORE_LISTS": {
                    "type": "integer",
                    "example": 0
                  },
                  "REQUEST_QUEUE_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "REQUEST_QUEUE_WRITES": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATA_TRANSFER_INTERNAL_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATA_TRANSFER_EXTERNAL_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "PROXY_SERPS": {
                    "type": "integer",
                    "example": 0
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}