Skip to content
Home

Wan 2.5 Text-to-Image Preview (International)

wan25_t2i_preview_intl

Wan 2.5 Text-to-Image Preview (International) generates images with flexible resolutions under total-pixel constraints through the international (Singapore) node.

POST /v1/queue/wan25_t2i_preview_intl # Create task
GET /v1/queue/wan25_t2i_preview_intl/requests/{request_id}/status # Check status
GET /v1/queue/wan25_t2i_preview_intl/requests/{request_id}/response # Get result
PUT /v1/queue/wan25_t2i_preview_intl/requests/{request_id}/cancel # Cancel task
Terminal window
curl --location "https://cloud.seaart.ai/model/v1/queue/wan25_t2i_preview_intl" \
--header "Authorization: Bearer YOUR_API_KEY" \
--header "Content-Type: application/json" \
--data '{
"prompt": "A red apple on a white table, clean studio lighting, simple background."
}'
prompt string required

Positive prompt describing the expected image content, style, and composition.

Chinese and English are supported. Maximum length: 2000 characters. Extra content is automatically truncated.

negative_prompt string

Negative prompt describing content that should not appear in the image.

Chinese and English are supported. Maximum length: 500 characters. Extra content is automatically truncated.

size string

Output image resolution in width*height format.

Total pixels must be between 1280*1280 and 1440*1440, and the aspect ratio must be between 1:4 and 4:1.

Common recommended resolutions: 1280*1280, 1104*1472, 1472*1104, 960*1696, 1696*960

Default: 1280*1280

n int

Number of images to generate. This parameter directly affects cost; set it to 1 during testing.

Range: 1 - 4

Default: 4

seed int

Random seed. Using the same seed can make generated content relatively stable. If omitted, the algorithm automatically uses a random seed.

Range: 0 - 2147483647

prompt_extend bool

Whether to enable intelligent prompt rewriting. When enabled, a large model optimizes the positive prompt, which can noticeably improve short prompts but increases latency.

Options: true, false

Default: true

watermark bool

Whether to add a watermark in the lower-right corner of the image. The fixed watermark text is AI生成.

Options: false, true

Default: false

{
"request_id": "mmsu_01hxyz...",
"response_url": "https://cloud.seaart.ai/model/v1/queue/wan25_t2i_preview_intl/requests/mmsu_01hxyz.../response",
"status_url": "https://cloud.seaart.ai/model/v1/queue/wan25_t2i_preview_intl/requests/mmsu_01hxyz.../status",
"cancel_url": "https://cloud.seaart.ai/model/v1/queue/wan25_t2i_preview_intl/requests/mmsu_01hxyz.../cancel",
"queue_position": 0
}
FieldTypeDescription
request_idstringTask ID used for all follow-up operations.
response_urlstringURL to fetch the final result.
status_urlstringURL to query task status.
cancel_urlstringURL to cancel the task.
queue_positionintCurrent queue position.