# Hailuo I2v Live

> Hailuo Live | Image to Video. Generate videos from images using Hailuo Live | Image to Video. Triggers: hailuo, image to video, live portrait, video generation

- Skill: `awesome-genmedia/hailuo-i2v-live` (Agent Skill)
- Install (CLI): `npx skillmds@latest add awesome-genmedia/hailuo-i2v-live`
- Raw SKILL.md: https://api.skillmd.com/api/skills/awesome-genmedia/hailuo-i2v-live/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/hailuo-i2v-live

---


# Hailuo Live | Image to Video

Generate videos from images using Hailuo Live | Image to Video. Supports optional prompt optimization.

## 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": "hailuo-i2v-live",
    "version": "0.0.1",
    "input": {
      "image_url": "https://example.com/portrait.jpg"
    }
  }'
```

## Parameters

| Parameter | Type | Default | Description |
|-----------|------|---------|-------------|
| `first_frame_image` | string |  | First frame image for video generation. The output video will have the same aspe |
| `prompt` | string |  | Enter your prompt to generate video |
| `prompt_optimizer` | boolean | True | The model will automatically optimize prompts to improve generation quality. To |

## Examples

**Animate an image:**
```bash
curl -X POST https://api.eachlabs.ai/v1/prediction \
  -H "Content-Type: application/json" \
  -H "X-API-Key: $EACHLABS_API_KEY" \
  -d '{
    "model": "hailuo-i2v-live",
    "version": "0.0.1",
    "input": {
      "image_url": "https://example.com/portrait.jpg"
    }
  }'
```

**Dynamic animation with controls:**
```bash
curl -X POST https://api.eachlabs.ai/v1/prediction \
  -H "Content-Type: application/json" \
  -H "X-API-Key: $EACHLABS_API_KEY" \
  -d '{
    "model": "hailuo-i2v-live",
    "version": "0.0.1",
    "input": {
      "image_url": "https://example.com/portrait.jpg",
      "prompt": "Expressive facial movements with a warm smile"
    }
  }'
```

## Documentation

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

