---
title: Wan2.5-Preview Image | Runware Docs
url: https://runware.ai/docs/models/alibaba-wan2-5-preview-image
description: High fidelity Wan2.5 image generation for rich single frames
---
# Wan2.5-Preview Image

Wan2.5-Preview Image is a single frame generator built from the Wan2.5 video stack. It focuses on detailed depth structure, strong prompt following, multilingual text rendering, and video grade visual quality for production ready stills in creative or product workflows.

- **ID**: `runware:201@10`
- **Status**: live
- **Creator**: Alibaba
- **Release Date**: September 24, 2025
- **Capabilities**: Text to Image, Image to Image, Image Editing

## Pricing

$0.027 per image

- **Cost per image**: `$0.0270`

## Compatibility & Validation

`width` and `height` must be used together.

## Request Parameters

**API Options**

Platform-level options for task execution and delivery.

### [taskType](https://runware.ai/docs/models/alibaba-wan2-5-preview-image#request-tasktype)

- **Type**: `string`
- **Required**: true
- **Value**: `imageInference`

Identifier for the type of task being performed

### [taskUUID](https://runware.ai/docs/models/alibaba-wan2-5-preview-image#request-taskuuid)

- **Type**: `string`
- **Required**: true
- **Format**: `UUID v4`

UUID v4 identifier for tracking tasks and matching async responses. Must be unique per task.

### [outputType](https://runware.ai/docs/models/alibaba-wan2-5-preview-image#request-outputtype)

- **Type**: `string`
- **Default**: `URL`

Image output type.

**Allowed values**: `URL` `base64Data` `dataURI`

### [outputFormat](https://runware.ai/docs/models/alibaba-wan2-5-preview-image#request-outputformat)

- **Type**: `string`
- **Default**: `JPG`

Specifies the file format of the generated output. The available values depend on the task type and the specific model's capabilities.

- \`JPG\`: Best for photorealistic images with smaller file sizes (no transparency).
- \`PNG\`: Lossless compression, supports high quality and transparency (alpha channel).
- \`WEBP\`: Modern format providing superior compression and transparency support.

> [!NOTE]
> \*\*Transparency\*\*: If you are using features like background removal or LayerDiffuse that require transparency, you must select a format that supports an alpha channel (e.g., \`PNG\`, \`WEBP\`, \`TIFF\`). \`JPG\` does not support transparency.

**Allowed values**: `JPG` `PNG` `WEBP`

### [outputQuality](https://runware.ai/docs/models/alibaba-wan2-5-preview-image#request-outputquality)

- **Type**: `integer`
- **Min**: `20`
- **Max**: `99`
- **Default**: `95`

Compression quality of the output. Higher values preserve quality but increase file size.

### [webhookURL](https://runware.ai/docs/models/alibaba-wan2-5-preview-image#request-webhookurl)

- **Type**: `string`
- **Format**: `URI`

Specifies a webhook URL where JSON responses will be sent via HTTP POST when generation tasks complete. For batch requests with multiple results, each completed item triggers a separate webhook call as it becomes available.

**Learn more** (1 resource):

- [Webhooks](https://runware.ai/docs/platform/webhooks) (platform)

### [deliveryMethod](https://runware.ai/docs/models/alibaba-wan2-5-preview-image#request-deliverymethod)

- **Type**: `string`
- **Default**: `sync`

Determines how the API delivers task results.

**Allowed values**:

- `sync` Returns complete results directly in the API response.
- `async` Returns an immediate acknowledgment with the task UUID. Poll for results using getResponse.

**Learn more** (1 resource):

- [Task Polling](https://runware.ai/docs/platform/task-polling) (platform)

### [uploadEndpoint](https://runware.ai/docs/models/alibaba-wan2-5-preview-image#request-uploadendpoint)

- **Type**: `string`
- **Format**: `URI`

Specifies a URL where the generated content will be automatically uploaded using the HTTP PUT method. The raw binary data of the media file is sent directly as the request body. For secure uploads to cloud storage, use presigned URLs that include temporary authentication credentials.

**Common use cases:**

- **Cloud storage**: Upload directly to S3 buckets, Google Cloud Storage, or Azure Blob Storage using presigned URLs.
- **CDN integration**: Upload to content delivery networks for immediate distribution.

```text
// S3 presigned URL for secure upload
https://your-bucket.s3.amazonaws.com/generated/content.mp4?X-Amz-Signature=abc123&X-Amz-Expires=3600

// Google Cloud Storage presigned URL
https://storage.googleapis.com/your-bucket/content.jpg?X-Goog-Signature=xyz789

// Custom storage endpoint
https://storage.example.com/uploads/generated-image.jpg
```

The content data will be sent as the request body to the specified URL when generation is complete.

### [safety](https://runware.ai/docs/models/alibaba-wan2-5-preview-image#request-safety)

- **Path**: `safety.checkContent`
- **Type**: `object (2 properties)`

Content safety checking configuration for image generation.

#### [checkContent](https://runware.ai/docs/models/alibaba-wan2-5-preview-image#request-safety-checkcontent)

- **Path**: `safety.checkContent`
- **Type**: `boolean`
- **Default**: `false`

Enable or disable content safety checking. When enabled, defaults to `fast` mode.

#### [mode](https://runware.ai/docs/models/alibaba-wan2-5-preview-image#request-safety-mode)

- **Path**: `safety.mode`
- **Type**: `string`
- **Default**: `none`

Safety checking mode for image generation.

**Allowed values**:

- `none` Disables checking.
- `fast` Performs a single check.

### [ttl](https://runware.ai/docs/models/alibaba-wan2-5-preview-image#request-ttl)

- **Type**: `integer`
- **Min**: `60`

Time-to-live (TTL) in seconds for generated content. Only applies when `outputType` is `URL`.

### [includeCost](https://runware.ai/docs/models/alibaba-wan2-5-preview-image#request-includecost)

- **Type**: `boolean`
- **Default**: `false`

Include task cost in the response.

### [numberResults](https://runware.ai/docs/models/alibaba-wan2-5-preview-image#request-numberresults)

- **Type**: `integer`
- **Min**: `1`
- **Max**: `20`
- **Default**: `1`

Number of results to generate. Each result uses a different seed, producing variations of the same parameters.

**Generation Parameters**

Core parameters for controlling the generated content.

### [model](https://runware.ai/docs/models/alibaba-wan2-5-preview-image#request-model)

- **Type**: `string`
- **Required**: true
- **Value**: `runware:201@10`

Identifier of the model to use for generation.

**Learn more** (3 resources):

- [Text To Image: Model Selection The Foundation Of Generation](https://runware.ai/docs/guides/text-to-image#model-selection-the-foundation-of-generation) (guide)
- [Image Inpainting: Model Specialized Inpainting Models](https://runware.ai/docs/guides/image-inpainting#model-specialized-inpainting-models) (guide)
- [Image Outpainting: Other Critical Parameters](https://runware.ai/docs/guides/image-outpainting#other-critical-parameters) (guide)

### [positivePrompt](https://runware.ai/docs/models/alibaba-wan2-5-preview-image#request-positiveprompt)

- **Type**: `string`
- **Required**: true
- **Min**: `1`
- **Max**: `2000`

Text prompt describing elements to include in the generated output.

**Learn more** (2 resources):

- [Text To Image: Prompts Guiding The Generation](https://runware.ai/docs/guides/text-to-image#prompts-guiding-the-generation) (guide)
- [Image Outpainting: Other Critical Parameters](https://runware.ai/docs/guides/image-outpainting#other-critical-parameters) (guide)

### [width](https://runware.ai/docs/models/alibaba-wan2-5-preview-image#request-width)

- **Type**: `integer`

Width of the generated media in pixels.

**Learn more** (2 resources):

- [Image To Image: Dimensions Changing Aspect Ratio](https://runware.ai/docs/guides/image-to-image#dimensions-changing-aspect-ratio) (guide)
- [Image Outpainting: Dimensions Critical For Outpainting](https://runware.ai/docs/guides/image-outpainting#dimensions-critical-for-outpainting) (guide)

### [height](https://runware.ai/docs/models/alibaba-wan2-5-preview-image#request-height)

- **Type**: `integer`

Height of the generated media in pixels.

**Learn more** (2 resources):

- [Image To Image: Dimensions Changing Aspect Ratio](https://runware.ai/docs/guides/image-to-image#dimensions-changing-aspect-ratio) (guide)
- [Image Outpainting: Dimensions Critical For Outpainting](https://runware.ai/docs/guides/image-outpainting#dimensions-critical-for-outpainting) (guide)

**Provider Settings**

Parameters specific to this model provider. These must be nested inside the \`providerSettings.alibaba\` object.

### [promptExtend](https://runware.ai/docs/models/alibaba-wan2-5-preview-image#request-providersettings-alibaba-promptextend)

- **Path**: `providerSettings.alibaba.promptExtend`
- **Type**: `boolean`
- **Default**: `true`

Enable LLM-based prompt rewriting to expand and clarify inputs. Affects reproducibility.

## Response Parameters

### [taskType](https://runware.ai/docs/models/alibaba-wan2-5-preview-image#response-tasktype)

- **Type**: `string`
- **Required**: true
- **Value**: `imageInference`

Type of the task.

### [taskUUID](https://runware.ai/docs/models/alibaba-wan2-5-preview-image#response-taskuuid)

- **Type**: `string`
- **Required**: true
- **Format**: `UUID v4`

UUID of the task.

### [imageUUID](https://runware.ai/docs/models/alibaba-wan2-5-preview-image#response-imageuuid)

- **Type**: `string`
- **Required**: true
- **Format**: `UUID v4`

UUID of the output image.

### [imageURL](https://runware.ai/docs/models/alibaba-wan2-5-preview-image#response-imageurl)

- **Type**: `string`
- **Format**: `URI`

URL of the output image.

### [imageBase64Data](https://runware.ai/docs/models/alibaba-wan2-5-preview-image#response-imagebase64data)

- **Type**: `string`

Base64-encoded image data.

### [imageDataURI](https://runware.ai/docs/models/alibaba-wan2-5-preview-image#response-imagedatauri)

- **Type**: `string`
- **Format**: `URI`

Data URI of the output image.

### [seed](https://runware.ai/docs/models/alibaba-wan2-5-preview-image#response-seed)

- **Type**: `integer`

The seed used for generation. If none was provided, shows the randomly generated seed.

### [NSFWContent](https://runware.ai/docs/models/alibaba-wan2-5-preview-image#response-nsfwcontent)

- **Type**: `boolean`

Flag indicating if NSFW content was detected.

### [cost](https://runware.ai/docs/models/alibaba-wan2-5-preview-image#response-cost)

- **Type**: `float`

Task cost in USD. Present when `includeCost` is set to `true` in the request.

## Examples

### Deserted Funfair Ticket Booth (Text to Image)

![Deserted Funfair Ticket Booth](https://assets.runware.ai/examples/alibaba-wan2-5-preview-image/071efacd-f241-499d-a3d2-26598f69933e.jpg)

**Request**:

```json
{
  "taskType": "imageInference",
  "taskUUID": "feba9ed6-37ec-4fb8-8abb-3a6b9c15e05d",
  "model": "runware:201@10",
  "positivePrompt": "An abandoned traveling funfair entrance at blue hour, centered on a weathered ticket booth with peeling paint, faded stripes, hand-lettered signs reading \"LAST TOKENS\" and \"ADMIT ONE\", strings of dim carnival bulbs, empty turnstiles, scattered paper tickets on dusty ground, a toppled prize wheel nearby, distant ferris wheel silhouettes and striped tents out of focus, shallow mist hugging the ground, strong foreground-to-background depth, ultra-detailed textures, cinematic composition, realistic lighting, rich color separation, production-ready still frame, highly coherent scene geometry",
  "width": 1024,
  "height": 768
}
```

**Response**:

```json
{
  "taskType": "imageInference",
  "taskUUID": "feba9ed6-37ec-4fb8-8abb-3a6b9c15e05d",
  "imageUUID": "dc91462e-e895-494f-8f78-1626009dfa18",
  "imageURL": "https://im.runware.ai/image/os/a24d12/ws/3/ii/dc91462e-e895-494f-8f78-1626009dfa18.jpg",
  "seed": 1423531996,
  "cost": 0.03
}
```

---

### Salt-Flat Mirage Runway (Text to Image)

![Salt-Flat Mirage Runway](https://assets.runware.ai/examples/alibaba-wan2-5-preview-image/3da75b72-4eee-4e5b-858e-dc2df3c7131d.jpg)

**Request**:

```json
{
  "taskType": "imageInference",
  "taskUUID": "082cc301-6211-46e6-ab44-e49d8a07692a",
  "model": "runware:201@10",
  "positivePrompt": "A cinematic wide shot of a temporary couture runway staged across a vast white salt flat at sunrise, heat shimmer on the horizon, mirrored puddles left from evaporation, a lone model in an architectural copper-and-ivory garment with sharp folded shapes and wind-caught fabric, minimalist chrome seating arranged in long lines, sparse crew equipment in the distance, giant freestanding wayfinding panels with crisp readable text saying 'SECTION A' and 'EAST ENTRY', dramatic leading lines vanishing toward mountains, low-angle sunlight, long shadows, ultra-detailed textures, production-ready still, elegant color contrast, realistic atmosphere, strong depth structure, subtle lens compression, premium fashion campaign aesthetic",
  "width": 1024,
  "height": 576
}
```

**Response**:

```json
{
  "taskType": "imageInference",
  "taskUUID": "082cc301-6211-46e6-ab44-e49d8a07692a",
  "imageUUID": "c34b8f2e-bb5b-432f-8769-d04a2e9529a9",
  "imageURL": "https://im.runware.ai/image/os/a22d05/ws/3/ii/c34b8f2e-bb5b-432f-8769-d04a2e9529a9.jpg",
  "seed": 167195498,
  "cost": 0.03
}
```

---

### Deserted Arctic Research Canteen (Text to Image)

![Deserted Arctic Research Canteen](https://assets.runware.ai/examples/alibaba-wan2-5-preview-image/6c371b29-fc25-4312-9f06-e0dfbcf819ed.jpg)

**Request**:

```json
{
  "taskType": "imageInference",
  "taskUUID": "e14be1d9-11bf-47d3-9fb7-ea28d81a836c",
  "model": "runware:201@10",
  "positivePrompt": "A wide cinematic view inside an abandoned Arctic research station canteen during blue-hour twilight, frost creeping along metal window frames, long cafeteria tables with scattered enamel trays, hanging utility lights casting warm pools across the room, a heavy orange parka draped over a chair, a half-packed supply crate near the doorway, steam rising from a forgotten bowl of soup, distant snow vehicles visible outside through fogged windows, intricate depth from foreground utensils to background corridor, realistic textures, filmic contrast, production-ready still, highly detailed environmental storytelling. Include legible wall signage in three languages reading: 'MESS HALL', '食堂', and 'قاعة الطعام'.",
  "width": 1024,
  "height": 576
}
```

**Response**:

```json
{
  "taskType": "imageInference",
  "taskUUID": "e14be1d9-11bf-47d3-9fb7-ea28d81a836c",
  "imageUUID": "f2a30cd7-985f-448d-a75f-4411139d5361",
  "imageURL": "https://im.runware.ai/image/os/a07d11/ws/3/ii/f2a30cd7-985f-448d-a75f-4411139d5361.jpg",
  "seed": 666649705,
  "cost": 0.03
}
```

---

### Orbital Botanical Transit Lounge (Text to Image)

![Orbital Botanical Transit Lounge](https://assets.runware.ai/examples/alibaba-wan2-5-preview-image/c1a77d40-48b3-45d4-a8d2-372027ea8286.jpg)

**Request**:

```json
{
  "taskType": "imageInference",
  "taskUUID": "ddb2a419-5d74-4e89-a56f-2ca0386ca3d5",
  "model": "runware:201@10",
  "positivePrompt": "A sprawling orbital transit lounge wrapped around the inside curve of a space station, terraced indoor gardens with dwarf citrus trees and ferns, passengers in elegant travel wear waiting beside sleek modular seating, a panoramic window revealing a striped gas giant and tiny docking craft outside, polished composite floors reflecting soft amber guidance lights, multilingual wayfinding signs reading GATE C12, ARRIVALS, and ORBITAL FERRY in crisp legible lettering, a suspended kinetic sculpture made of thin metallic ribbons, food kiosks with neatly arranged pastries and fruit, subtle haze for depth, layered foreground-midground-background composition, ultra-detailed textures, believable scale, production-ready cinematic still, rich color separation, clean focus, immersive atmosphere",
  "width": 1024,
  "height": 576
}
```

**Response**:

```json
{
  "taskType": "imageInference",
  "taskUUID": "ddb2a419-5d74-4e89-a56f-2ca0386ca3d5",
  "imageUUID": "b99c6e63-69e1-458f-9d24-544f5b61ecf7",
  "imageURL": "https://im.runware.ai/image/os/a11d13/ws/3/ii/b99c6e63-69e1-458f-9d24-544f5b61ecf7.jpg",
  "seed": 324323239,
  "cost": 0.03
}
```