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.
Endpoints
Section titled “Endpoints”POST /v1/queue/wan25_t2i_preview_intl # Create taskGET /v1/queue/wan25_t2i_preview_intl/requests/{request_id}/status # Check statusGET /v1/queue/wan25_t2i_preview_intl/requests/{request_id}/response # Get resultPUT /v1/queue/wan25_t2i_preview_intl/requests/{request_id}/cancel # Cancel taskRequest parameters
Section titled “Request parameters”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." }'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 describing content that should not appear in the image.
Chinese and English are supported. Maximum length: 500 characters. Extra content is automatically truncated.
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
Number of images to generate. This parameter directly affects cost; set it to 1 during testing.
Range: 1 - 4
Default: 4
Random seed. Using the same seed can make generated content relatively stable. If omitted, the algorithm automatically uses a random seed.
Range: 0 - 2147483647
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
Whether to add a watermark in the lower-right corner of the image. The fixed watermark text is AI生成.
Options: false, true
Default: false
Response parameters
Section titled “Response parameters”{ "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}| Field | Type | Description |
|---|---|---|
request_id | string | Task ID used for all follow-up operations. |
response_url | string | URL to fetch the final result. |
status_url | string | URL to query task status. |
cancel_url | string | URL to cancel the task. |
queue_position | int | Current queue position. |