# Custom Image Generation V2

> Custom Image Generation v2. Generate images from text prompts using Custom Image Generation v2. Triggers: image generation

- Skill: `awesome-genmedia/custom-image-generation-v2` (Agent Skill)
- Install (CLI): `npx skillmds@latest add awesome-genmedia/custom-image-generation-v2`
- Raw SKILL.md: https://api.skillmd.com/api/skills/awesome-genmedia/custom-image-generation-v2/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- Author: awesome-genmedia (https://skillmd.com/u/awesome-genmedia)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/awesome-genmedia/custom-image-generation-v2

---


# Custom Image Generation v2

Generate images from text prompts using Custom Image Generation v2. Supports multiple aspect ratios (1:1, 2:3, 3:2).

## Quick Start

> Requires an each::labs API key. Get one at [eachlabs.ai](https://eachlabs.ai).

```bash
curl -X POST https://api.eachlabs.ai/v1/prediction \
  -H "Content-Type: application/json" \
  -H "X-API-Key: $EACHLABS_API_KEY" \
  -d '{
    "model": "custom-image-generation-v2",
    "version": "0.0.1",
    "input": {
      "prompt": "A majestic snow-capped mountain reflected in a crystal clear lake at sunrise",
      "image_url_1": "https://example.com/your-image.jpg"
    }
  }'
```

## Parameters

| Parameter | Type | Default | Description |
|-----------|------|---------|-------------|
| `aspect_ratio` | string |  | Options: `1:1`, `2:3`, `3:2` |
| `image_url_1` | string |  |  |
| `image_url_10` | string |  |  |
| `image_url_2` | string |  |  |
| `image_url_3` | string |  |  |
| `image_url_4` | string |  |  |
| `image_url_5` | string |  |  |
| `image_url_6` | string |  |  |
| `image_url_7` | string |  |  |
| `image_url_8` | string |  |  |
| `image_url_9` | string |  |  |
| `prompt` | string |  | Text prompt for image generation |
| `style_slug` | string | ghibli-anime | Options: `ghibli-anime`, `vintage-cartoon`, `simpsons`, `disney-animation`, `chibi-art`, `pixar-3d`, `funko-pop`, `yearbook-portrait`, `ukiyo-e`, `... |

## Examples

**Generate a landscape:**
```bash
curl -X POST https://api.eachlabs.ai/v1/prediction \
  -H "Content-Type: application/json" \
  -H "X-API-Key: $EACHLABS_API_KEY" \
  -d '{
    "model": "custom-image-generation-v2",
    "version": "0.0.1",
    "input": {
      "prompt": "A majestic snow-capped mountain reflected in a crystal clear lake at sunrise",
      "image_url_1": "https://example.com/your-image.jpg"
    }
  }'
```

**Detailed scene with style:**
```bash
curl -X POST https://api.eachlabs.ai/v1/prediction \
  -H "Content-Type: application/json" \
  -H "X-API-Key: $EACHLABS_API_KEY" \
  -d '{
    "model": "custom-image-generation-v2",
    "version": "0.0.1",
    "input": {
      "prompt": "A cyberpunk street market at night with holographic signs and rain-slicked roads, ultra detailed",
      "image_url_1": "https://example.com/your-image.jpg",
      "aspect_ratio": "9:16"
    }
  }'
```

## Documentation

- [each::labs Docs](https://docs.eachlabs.ai)
- [API Reference](https://docs.eachlabs.ai/api/overview)

