# Generate AI Images in Bulk

**Use case:** 

Generate multiple AI images in bulk from prompt lists and export image URLs, dimensions, categories, prompt text, and excluded elements.

## Input

```json
{
  "prompts": [
    "A minimalist app icon for a finance dashboard",
    "A blog hero image about AI automation",
    "A fantasy game background with mountains",
    "A social media banner for a product launch"
  ],
  "excludeList": "text, watermark, logo, blurry",
  "generationType": "auto",
  "imageSize": "auto",
  "concurrentRequests": 10,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  }
}
```

## Output

```json
{
  "image_url": {
    "label": "Image",
    "format": "image"
  },
  "prompt": {
    "label": "Prompt",
    "format": "text"
  },
  "exclude_list": {
    "label": "Excluded Elements",
    "format": "text"
  },
  "image_id": {
    "label": "Image ID",
    "format": "text"
  },
  "width": {
    "label": "Width",
    "format": "number"
  },
  "height": {
    "label": "Height",
    "format": "number"
  },
  "category": {
    "label": "Category",
    "format": "text"
  }
}
```

## About this Actor

This example demonstrates how to use [Craiyon AI Image Creator (DALL·E mini)](https://apify.com/muhammetakkurtt/craiyon-ai-image-creator) with a specific input configuration. Visit the [Actor detail page](https://apify.com/muhammetakkurtt/craiyon-ai-image-creator) to learn more, explore other use cases, and run it yourself.