> ## Documentation Index
> Fetch the complete documentation index at: https://docs.gmicloud.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Wan 2.5 T2V Preview

> State-of-the-art text-to-video generation model with advanced prompt extension and audio support, capable of creating high-quality videos up to 1080P resolution.

**Model ID**

```bash theme={null}
wan2.5-t2v-preview
```

Wan2.5 T2V Preview is a comprehensive and open video foundation model that pushes the boundaries of text-to-video generation. This model supports advanced features including prompt extension, audio input, watermark control, and various resolution and duration options. It excels at generating cinematic videos with detailed motion and visual effects.

## API Usage

Submit a generation task via the GMI request queue. Polling and full parameter docs are in the [API reference](/inference-engine/api-reference/video-api-reference).

### Submit request

```bash theme={null}
curl -X POST "https://console.gmicloud.ai/api/v1/ie/requestqueue/apikey/requests" \
  -H "Authorization: Bearer $GMI_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "wan2.5-t2v-preview",
    "payload": {
      "prompt": "your prompt here"
    }
  }'
```

The response includes a `request_id`. Poll the status endpoint until the video is ready, then download from the returned URL.

```bash theme={null}
curl "https://console.gmicloud.ai/api/v1/ie/requestqueue/apikey/requests/<request_id>" \
  -H "Authorization: Bearer $GMI_API_KEY"
```
