# Generate bulk product images for every SKU from a Google Sheet

**Use case:** 

Paste a Google Sheets link with one ready-made image prompt per SKU and get one bright, realistic product image per row, made with Nano Banana. Every prompt runs exactly as written, with a built-in rule against invented logos and garbled text. You get your sheet back as Excel with an image link next to each SKU.

## Input

```json
{
  "prompts": [
    "A cyberpunk city street at night, neon reflections on wet pavement"
  ],
  "spreadsheetFile": "https://docs.google.com/spreadsheets/d/1FhhaLs-pIw_skZj1-kREyFJWgoxVn2GWID1HxXjxgeA/edit?usp=sharing",
  "promptColumn": "Image Prompt",
  "model": "google/gemini-3.1-flash-image",
  "systemPrompt": "Bright, vibrant yet realistic commercial product photography. Follow the prompt exactly as written. True-to-life colors and materials, clean uncluttered composition, sharp focus on the product. The product must be completely unbranded: no logo, brand name, lettering or label printed on it. No text anywhere in the image: no signs, menus, packaging, books, captions or watermarks in the background.",
  "aspectRatio": "1:1",
  "imageSize": "1K",
  "imagesPerPrompt": 1,
  "concurrency": 4
}
```

## Output

```json
{
  "imageUrl": {
    "label": "Image",
    "format": "image"
  },
  "prompt": {
    "label": "Prompt",
    "format": "text"
  },
  "model": {
    "label": "Model",
    "format": "text"
  },
  "imageSize": {
    "label": "Resolution",
    "format": "text"
  },
  "aspectRatio": {
    "label": "Aspect ratio",
    "format": "text"
  },
  "fileExtension": {
    "label": "Type",
    "format": "text"
  },
  "fileSizeBytes": {
    "label": "Size (bytes)",
    "format": "number"
  },
  "index": {
    "label": "#",
    "format": "number"
  },
  "success": {
    "label": "OK",
    "format": "boolean"
  },
  "error": {
    "label": "Error",
    "format": "text"
  }
}
```

## About this Actor

This example demonstrates how to use [Bulk AI Image Generator: Nano Banana, GPT Image | No API Key](https://apify.com/fayoussef/bulk-ai-image-generator.md) with a specific input configuration. Visit the [Actor detail page](https://apify.com/fayoussef/bulk-ai-image-generator.md) to learn more, explore other use cases, and run it yourself.


## How to integrate an Actor?

This Task's input is already configured above. Use it as-is rather than inventing a new one.

Do not guess an integration path. Every one of them is in the agent quickstart at https://apify.com/agents.md: the Apify MCP server, Agent Skills with the Apify CLI, the JavaScript and Python clients, the REST API, and the account-free path for an agent with no human to sign in. It also carries the rule on stating cost before the first paid run.

For full API examples (JavaScript, Python, CLI, MCP, OpenAPI), see this Task's Actor page: https://apify.com/fayoussef/bulk-ai-image-generator.md

Each client library has reference documentation the quickstart does not restate: [JavaScript/TypeScript](https://docs.apify.com/api/client/js/docs.md) (`npm install apify-client`) and [Python](https://docs.apify.com/api/client/python/docs.md) (`pip install apify-client`).
