---
title: "Hailuo hailuo-2.3-image-to-video-standard API — Pricing, code samples | RunAPI"
url: "https://runapi.ai/models/hailuo/2.3-image-to-video-standard.md"
canonical: "https://runapi.ai/models/hailuo/2.3-image-to-video-standard.md"
locale: "en"
model: "Hailuo"
provider: "MiniMax"
variant_id: "hailuo-2.3-image-to-video-standard"
sdk_model_id: "hailuo-2.3-image-to-video-standard"
modality: "video"
price_from_cents: 50
billing_unit: "call"
status: "active"
---

# Hailuo hailuo-2.3-image-to-video-standard API

Same API, same SDK — switch variants by changing one parameter.

## Pricing

**$0.500** per call

Failed generations are not charged

## Spec sheet

| Field | Value |
|---|---|
| Model ID | `hailuo-2.3-image-to-video-standard` |
| Provider | MiniMax |
| Modality | video |
| Task type | asynchronous |
| Billing unit | call |
| API endpoint | `/api/v1/hailuo/image_to_video` |
| Status | active |

## Install

```sh
npm install @runapi.ai/hailuo
```

## Quickstart

```sh
curl -X POST https://api.runapi.ai/api/v1/hailuo/image_to_video \
  -H "Authorization: Bearer $RUNAPI_KEY" \
  -H "Content-Type: application/json" \
  -d '{ "model": "hailuo-2.3-image-to-video-standard", "prompt": "..." }'
```

```js
import RunAPI from "@runapi.ai/hailuo";

const client = new RunAPI(process.env.RUNAPI_KEY);
const task = await client.create({
  model: "hailuo-2.3-image-to-video-standard",
  prompt: "...",
});
```

## FAQ

### Is the model ID stable across versions?

RunAPI keeps the model ID stable and handles compatible version refreshes without changing your request shape.

### What&#39;s the rate limit on this variant?

Per-key rate limits scale with usage tier. See pricing page for current limits.

### Can I switch variants later?

Yes — variant is a flag. Switch by changing the model parameter.

### Does it stream?

Where streaming is available, RunAPI streams end-to-end.

### Where do I report quality issues?

Open an issue on the public GitHub repo or email support.


## Related

Other Hailuo variants:

- [hailuo-02-image-to-video-pro](https://runapi.ai/models/hailuo/02-image-to-video-pro.md) — `02-image-to-video-pro` · $0.570
- [hailuo-02-image-to-video-standard](https://runapi.ai/models/hailuo/02-image-to-video-standard.md) — `02-image-to-video-standard` · $0.300
- [hailuo-02-text-to-video-pro](https://runapi.ai/models/hailuo/02-text-to-video-pro.md) — `02-text-to-video-pro` · $0.570
- [hailuo-02-text-to-video-standard](https://runapi.ai/models/hailuo/02-text-to-video-standard.md) — `02-text-to-video-standard` · $0.500
- [hailuo-2.3-image-to-video-pro](https://runapi.ai/models/hailuo/2.3-image-to-video-pro.md) — `2.3-image-to-video-pro` · $0.900
