# Amazon white-background main images from a product CSV

**Use case:** 

Upload a CSV or Google Sheet with one image prompt per ASIN or SKU and get a clean Amazon-style main image for every row: pure white background, product filling the frame, no props, no text, 2K resolution. Made with Nano Banana 2. You get your sheet back as Excel with an image link next to each product.

## Input

```json
{
  "prompts": [],
  "spreadsheetFile": "https://api.apify.com/v2/key-value-stores/I40EWpLzQaVq08gCm/records/amazon-main-image-prompts-sample.csv",
  "promptColumn": "Image Prompt",
  "model": "google/gemini-3.1-flash-image",
  "systemPrompt": "Amazon main product image. Show only the product described, on a pure white background (RGB 255,255,255), with no props, no people, no scenery and no shadows other than a soft natural contact shadow. The product fills about 85 percent of the frame, fully in view and not cropped, in sharp focus with even studio lighting and true-to-life colors. No text, logos, badges, watermarks or borders anywhere in the image.",
  "aspectRatio": "1:1",
  "imageSize": "2K",
  "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`).
