跳转到内容
返回主页

模型调用示例

本页按模型 ID 列出多模态 queue 接口的完整调用信息。所有模型都使用 /v1/queue/{endpoint}

每个模型都是三步:创建任务、查看状态、获取结果。下面用 nano_banana_2 演示,实际调用时把 URL 里的模型 ID 和请求体字段替换成参数矩阵里的对应模型即可。

Terminal window
BASE_URL="https://cloud.seaart.ai/model"
API_KEY="YOUR_API_KEY"
curl -X POST "$BASE_URL/v1/queue/nano_banana_2" \
-H "Authorization: Bearer $API_KEY" \
-H "Content-Type: application/json" \
-d '{
"prompt": "A red apple on a white table, clean studio lighting, simple background.",
"image_urls": [
"https://image.cdn2.seaart.me/2026-06-01/d8ejq1de878c739e2lrg/995ff4fe1eeec10a06c3c7a172862733.webp"
]
}'

创建成功后会返回 request_idstatus_urlresponse_url。先用 status_url 查询状态,状态为 COMPLETED 且没有 error 时,再用 response_url 获取结果。

Terminal window
curl "$BASE_URL/v1/queue/nano_banana_2/requests/mmsu_xxx/status" \
-H "Authorization: Bearer $API_KEY"
curl "$BASE_URL/v1/queue/nano_banana_2/requests/mmsu_xxx/response" \
-H "Authorization: Bearer $API_KEY"

任务成功后,结果接口固定返回 request_idoutputsmetadata。多个结果 URL 会按顺序返回多条 outputs 记录。

{
"request_id": "mmsu_01hxyz...",
"outputs": [
{
"type": "image",
"url": "https://image.cdn2.seaart.me/2026-06-01/d8ejq1de878c739e2lrg/995ff4fe1eeec10a06c3c7a172862733.webp",
"content_type": "image/webp",
"file_name": "output.webp",
"width": 1024,
"height": 1024
}
],
"metadata": {
"prompt": "A red apple on a white table, clean studio lighting, simple background."
}
}

支持模型

Image,共 37 个

flux_2_maxflux_2_proflux_kontext_maxflux_kontext_proflux_pro_11gpt_image_1gpt_image_1_5gpt_image_1_5_editgpt_image_1_editgpt_image_2gpt_image_2_editmidjourney_diffusionmidjourney_editmidjourney_enhancemidjourney_inpaintmidjourney_outpaintmidjourney_panmidjourney_remixmidjourney_remove_backgroundmidjourney_retexturemidjourney_uploadpaintmidjourney_upscalemidjourney_variationnano_banananano_banana_2nano_banana_proqwen_image_edit_pluswan25_i2i_previewwan25_i2i_preview_intlwan25_t2i_previewwan25_t2i_preview_intlwan26_i2iwan26_imagewan26_image_intlwan26_t2iwan27_imagewan27_image_pro

Video,共 28 个

happyhorse_1.0_i2vhappyhorse_1.0_r2vhappyhorse_1.0_t2vhappyhorse_1.0_video_editmidjourney_extend_videomidjourney_video_diffusionmidjourney_video_upscaleminimax_hailuo_02_i2vminimax_hailuo_02_t2vminimax_hailuo_23_fast_i2vminimax_hailuo_23_i2vminimax_hailuo_23_t2vminimax_i2v_01minimax_i2v_01_directorminimax_i2v_01_liveminimax_t2v_01minimax_t2v_01_directorpixverse_v6_i2vpixverse_v6_t2vpixverse_v6_transitiontencent_mps_super_resolutionwan22_i2v_flashwan22_i2v_pluswan22_t2v_pluswan25_t2v_previewwan26_i2vwan26_r2vwan26_t2v

Audio,共 10 个

minimax_speech_01_hdminimax_speech_01_turbominimax_speech_02_hdminimax_speech_02_turbominimax_speech_26_hdminimax_speech_26_turbominimax_speech_28_hdminimax_speech_28_turbomureka_lyrics_generatormureka_song_generator

3D,共 3 个

tencent_hunyuan_3dtencent_hunyuan_3d_protencent_hunyuan_3d_rapid

模型参数矩阵

下表按模型 ID 维度列出请求链路、完整参数清单、可复制请求体示例和成功响应结构。带“必填”的字段必须传;未声明字段会被拒绝。

模型 ID 请求链路 请求体参数 请求体示例 成功响应结构
flux_2_max
Image
POST /v1/queue/flux_2_max
GET  /v1/queue/flux_2_max/requests/{request_id}/status
GET  /v1/queue/flux_2_max/requests/{request_id}/response
prompt string, 必填 image_urls string[], 可选 seed int, 可选 width int, 可选 height int, 可选 safety_tolerance int, 可选 output_format string, 可选
{
  "prompt": "A red apple on a white table, clean studio lighting, simple background.",
  "image_urls": [
    "https://image.cdn2.seaart.me/2026-06-01/d8ejq1de878c739e2lrg/995ff4fe1eeec10a06c3c7a172862733.webp"
  ]
}
{request_id, outputs:[{type:"image", url, content_type, file_name, width, height, metadata?}], metadata}
flux_2_pro
Image
POST /v1/queue/flux_2_pro
GET  /v1/queue/flux_2_pro/requests/{request_id}/status
GET  /v1/queue/flux_2_pro/requests/{request_id}/response
prompt string, 必填 input_image string, 可选 image_urls string[], 可选 seed int, 可选 width int, 可选 height int, 可选 safety_tolerance int, 可选 output_format string, 可选 guidance_scale number, 可选 num_inference_steps int, 可选
{
  "prompt": "A red apple on a white table, clean studio lighting, simple background.",
  "image_urls": [
    "https://image.cdn2.seaart.me/2026-06-01/d8ejq1de878c739e2lrg/995ff4fe1eeec10a06c3c7a172862733.webp"
  ],
  "input_image": "https://image.cdn2.seaart.me/2026-06-01/d8ejq1de878c739e2lrg/995ff4fe1eeec10a06c3c7a172862733.webp"
}
{request_id, outputs:[{type:"image", url, content_type, file_name, width, height, metadata?}], metadata}
flux_kontext_max
Image
POST /v1/queue/flux_kontext_max
GET  /v1/queue/flux_kontext_max/requests/{request_id}/status
GET  /v1/queue/flux_kontext_max/requests/{request_id}/response
prompt string, 必填 input_image string, 可选 input_image_2 string, 可选 input_image_3 string, 可选 input_image_4 string, 可选 image any, 可选 seed int, 可选 aspect_ratio string, 可选 steps int, 可选 guidance_scale number, 可选 negative_prompt string, 可选 output_format string, 可选 prompt_upsampling bool, 可选 safety_tolerance int, 可选 n int, 可选 quality string, 可选 size string, 可选
{
  "prompt": "A red apple on a white table, clean studio lighting, simple background.",
  "input_image": "https://image.cdn2.seaart.me/2026-06-01/d8ejq1de878c739e2lrg/995ff4fe1eeec10a06c3c7a172862733.webp",
  "image": "https://image.cdn2.seaart.me/2026-06-01/d8ejq1de878c739e2lrg/995ff4fe1eeec10a06c3c7a172862733.webp",
  "output_format": "png"
}
{request_id, outputs:[{type:"image", url, content_type, file_name, width, height, metadata?}], metadata}
flux_kontext_pro
Image
POST /v1/queue/flux_kontext_pro
GET  /v1/queue/flux_kontext_pro/requests/{request_id}/status
GET  /v1/queue/flux_kontext_pro/requests/{request_id}/response
prompt string, 必填 input_image string, 可选 input_image_2 string, 可选 input_image_3 string, 可选 input_image_4 string, 可选 seed int, 可选 aspect_ratio string, 可选 output_format string, 可选 prompt_upsampling bool, 可选 safety_tolerance any, 可选
{
  "prompt": "A red apple on a white table, clean studio lighting, simple background.",
  "input_image": "https://image.cdn2.seaart.me/2026-06-01/d8ejq1de878c739e2lrg/995ff4fe1eeec10a06c3c7a172862733.webp"
}
{request_id, outputs:[{type:"image", url, content_type, file_name, width, height, metadata?}], metadata}
flux_pro_11
Image
POST /v1/queue/flux_pro_11
GET  /v1/queue/flux_pro_11/requests/{request_id}/status
GET  /v1/queue/flux_pro_11/requests/{request_id}/response
prompt string, 必填 image_prompt string, 可选 width int, 可选 height int, 可选 prompt_upsampling bool, 可选 seed int, 可选 safety_tolerance int, 可选 output_format string, 可选
{
  "prompt": "A red apple on a white table, clean studio lighting, simple background.",
  "width": 1024,
  "height": 1024,
  "output_format": "png"
}
{request_id, outputs:[{type:"image", url, content_type, file_name, width, height, metadata?}], metadata}
gpt_image_1
Image
POST /v1/queue/gpt_image_1
GET  /v1/queue/gpt_image_1/requests/{request_id}/status
GET  /v1/queue/gpt_image_1/requests/{request_id}/response
prompt string, 必填 n int, 可选 size string, 可选 quality string, 可选 background string, 可选 output_format string, 可选 output_compression int, 可选 moderation string, 可选 user string, 可选
{
  "prompt": "A red apple on a white table, clean studio lighting, simple background."
}
{request_id, outputs:[{type:"image", url, content_type, file_name, width, height, metadata?}], metadata}
gpt_image_1_5
Image
POST /v1/queue/gpt_image_1_5
GET  /v1/queue/gpt_image_1_5/requests/{request_id}/status
GET  /v1/queue/gpt_image_1_5/requests/{request_id}/response
prompt string, 必填 n int, 可选 size string, 可选 quality string, 可选 output_format string, 可选 output_compression int, 可选 user string, 可选
{
  "prompt": "A red apple on a white table, clean studio lighting, simple background."
}
{request_id, outputs:[{type:"image", url, content_type, file_name, width, height, metadata?}], metadata}
gpt_image_1_5_edit
Image
POST /v1/queue/gpt_image_1_5_edit
GET  /v1/queue/gpt_image_1_5_edit/requests/{request_id}/status
GET  /v1/queue/gpt_image_1_5_edit/requests/{request_id}/response
prompt string, 必填 image any, 必填 mask any, 可选 background string, 可选 input_fidelity string, 可选 n int, 可选 output_compression int, 可选 output_format string, 可选 partial_images int, 可选 quality string, 可选 size string, 可选 stream bool, 可选 user string, 可选
{
  "prompt": "A red apple on a white table, clean studio lighting, simple background.",
  "image": [
    "https://image.cdn2.seaart.me/2026-06-01/d8ejq1de878c739e2lrg/995ff4fe1eeec10a06c3c7a172862733.webp"
  ]
}
{request_id, outputs:[{type:"image", url, content_type, file_name, width, height, metadata?}], metadata}
gpt_image_1_edit
Image
POST /v1/queue/gpt_image_1_edit
GET  /v1/queue/gpt_image_1_edit/requests/{request_id}/status
GET  /v1/queue/gpt_image_1_edit/requests/{request_id}/response
prompt string, 必填 image any, 必填 mask any, 可选 n int, 可选 size string, 可选 quality string, 可选 background string, 可选 output_format string, 可选 output_compression int, 可选 response_format string, 可选 user string, 可选
{
  "prompt": "A red apple on a white table, clean studio lighting, simple background.",
  "image": [
    "https://image.cdn2.seaart.me/2026-06-01/d8ejq1de878c739e2lrg/995ff4fe1eeec10a06c3c7a172862733.webp"
  ]
}
{request_id, outputs:[{type:"image", url, content_type, file_name, width, height, metadata?}], metadata}
gpt_image_2
Image
POST /v1/queue/gpt_image_2
GET  /v1/queue/gpt_image_2/requests/{request_id}/status
GET  /v1/queue/gpt_image_2/requests/{request_id}/response
prompt string, 必填 n int, 可选 size string, 可选 quality string, 可选 background string, 可选 output_format string, 可选 output_compression int, 可选 moderation string, 可选 user string, 可选
{
  "prompt": "A red apple on a white table, clean studio lighting, simple background."
}
{request_id, outputs:[{type:"image", url, content_type, file_name, width, height, metadata?}], metadata}
gpt_image_2_edit
Image
POST /v1/queue/gpt_image_2_edit
GET  /v1/queue/gpt_image_2_edit/requests/{request_id}/status
GET  /v1/queue/gpt_image_2_edit/requests/{request_id}/response
prompt string, 必填 image any, 必填 mask any, 可选 n int, 可选 size string, 可选 quality string, 可选 background string, 可选 output_format string, 可选 output_compression int, 可选 response_format string, 可选 user string, 可选 watermark bool, 可选
{
  "prompt": "A red apple on a white table, clean studio lighting, simple background.",
  "image": [
    "https://image.cdn2.seaart.me/2026-06-01/d8ejq1de878c739e2lrg/995ff4fe1eeec10a06c3c7a172862733.webp"
  ]
}
{request_id, outputs:[{type:"image", url, content_type, file_name, width, height, metadata?}], metadata}
midjourney_diffusion
Image
POST /v1/queue/midjourney_diffusion
GET  /v1/queue/midjourney_diffusion/requests/{request_id}/status
GET  /v1/queue/midjourney_diffusion/requests/{request_id}/response
text string, 必填
{
  "text": "A red apple on a white table, clean studio lighting, simple background."
}
{request_id, outputs:[{type:"image", url, content_type, file_name, width, height, metadata?}], metadata}
midjourney_edit
Image
POST /v1/queue/midjourney_edit
GET  /v1/queue/midjourney_edit/requests/{request_id}/status
GET  /v1/queue/midjourney_edit/requests/{request_id}/response
jobId string, 必填 imageNo int, 必填 remixPrompt string, 必填 canvas object, 必填 imgPos object, 必填 mask object, 可选
{
  "jobId": "midjourney_provider_job_id",
  "imageNo": 0,
  "remixPrompt": "Keep the red apple and make the background brighter, clean studio style.",
  "canvas": {
    "width": 1024,
    "height": 1024
  },
  "imgPos": {
    "width": 768,
    "height": 768
  },
  "mask": {
    "url": "https://image.cdn2.seaart.me/2026-06-01/d8ejq1de878c739e2lrg/995ff4fe1eeec10a06c3c7a172862733.webp"
  }
}
{request_id, outputs:[{type:"image", url, content_type, file_name, width, height, metadata?}], metadata}
midjourney_enhance
Image
POST /v1/queue/midjourney_enhance
GET  /v1/queue/midjourney_enhance/requests/{request_id}/status
GET  /v1/queue/midjourney_enhance/requests/{request_id}/response
jobId string, 必填 imageNo int, 必填
{
  "jobId": "midjourney_draft_mode_job_id",
  "imageNo": 0
}
{request_id, outputs:[{type:"image", url, content_type, file_name, width, height, metadata?}], metadata}
midjourney_inpaint
Image
POST /v1/queue/midjourney_inpaint
GET  /v1/queue/midjourney_inpaint/requests/{request_id}/status
GET  /v1/queue/midjourney_inpaint/requests/{request_id}/response
jobId string, 必填 imageNo int, 必填 remixPrompt string, 可选 area object, 可选 mask object, 必填
{
  "jobId": "midjourney_provider_job_id",
  "imageNo": 0,
  "mask": {
    "url": "https://image.cdn2.seaart.me/2026-06-01/d8ejq1de878c739e2lrg/995ff4fe1eeec10a06c3c7a172862733.webp"
  },
  "remixPrompt": "Keep the red apple and make the background brighter, clean studio style."
}
{request_id, outputs:[{type:"image", url, content_type, file_name, width, height, metadata?}], metadata}
midjourney_outpaint
Image
POST /v1/queue/midjourney_outpaint
GET  /v1/queue/midjourney_outpaint/requests/{request_id}/status
GET  /v1/queue/midjourney_outpaint/requests/{request_id}/response
jobId string, 必填 imageNo int, 必填 scale number, 必填 remixPrompt string, 可选
{
  "jobId": "midjourney_provider_job_id",
  "imageNo": 0,
  "scale": 1.5
}
{request_id, outputs:[{type:"image", url, content_type, file_name, width, height, metadata?}], metadata}
midjourney_pan
Image
POST /v1/queue/midjourney_pan
GET  /v1/queue/midjourney_pan/requests/{request_id}/status
GET  /v1/queue/midjourney_pan/requests/{request_id}/response
jobId string, 必填 imageNo int, 必填 direction int, 必填 scale number, 必填 remixPrompt string, 可选
{
  "jobId": "midjourney_provider_job_id",
  "imageNo": 0,
  "direction": 1,
  "scale": 1.5
}
{request_id, outputs:[{type:"image", url, content_type, file_name, width, height, metadata?}], metadata}
midjourney_remix
Image
POST /v1/queue/midjourney_remix
GET  /v1/queue/midjourney_remix/requests/{request_id}/status
GET  /v1/queue/midjourney_remix/requests/{request_id}/response
jobId string, 必填 imageNo int, 必填 remixPrompt string, 必填 mode int, 可选
{
  "jobId": "midjourney_provider_job_id",
  "imageNo": 0,
  "remixPrompt": "Keep the red apple and make the background brighter, clean studio style."
}
{request_id, outputs:[{type:"image", url, content_type, file_name, width, height, metadata?}], metadata}
midjourney_remove_background
Image
POST /v1/queue/midjourney_remove_background
GET  /v1/queue/midjourney_remove_background/requests/{request_id}/status
GET  /v1/queue/midjourney_remove_background/requests/{request_id}/response
imgUrl string, 必填
{
  "imgUrl": "https://image.cdn2.seaart.me/2026-06-01/d8ejq1de878c739e2lrg/995ff4fe1eeec10a06c3c7a172862733.webp"
}
{request_id, outputs:[{type:"image", url, content_type, file_name, width, height, metadata?}], metadata}
midjourney_retexture
Image
POST /v1/queue/midjourney_retexture
GET  /v1/queue/midjourney_retexture/requests/{request_id}/status
GET  /v1/queue/midjourney_retexture/requests/{request_id}/response
imgUrl string, 必填 remixPrompt string, 必填
{
  "imgUrl": "https://image.cdn2.seaart.me/2026-06-01/d8ejq1de878c739e2lrg/995ff4fe1eeec10a06c3c7a172862733.webp",
  "remixPrompt": "Keep the red apple and make the background brighter, clean studio style."
}
{request_id, outputs:[{type:"image", url, content_type, file_name, width, height, metadata?}], metadata}
midjourney_uploadpaint
Image
POST /v1/queue/midjourney_uploadpaint
GET  /v1/queue/midjourney_uploadpaint/requests/{request_id}/status
GET  /v1/queue/midjourney_uploadpaint/requests/{request_id}/response
imgUrl string, 必填 canvas object, 必填 imgPos object, 必填 mask object, 必填 remixPrompt string, 必填
{
  "imgUrl": "https://image.cdn2.seaart.me/2026-06-01/d8ejq1de878c739e2lrg/995ff4fe1eeec10a06c3c7a172862733.webp",
  "canvas": {
    "width": 1024,
    "height": 1024
  },
  "imgPos": {
    "width": 768,
    "height": 768
  },
  "mask": {
    "url": "https://image.cdn2.seaart.me/2026-06-01/d8ejq1de878c739e2lrg/995ff4fe1eeec10a06c3c7a172862733.webp"
  },
  "remixPrompt": "Keep the red apple and make the background brighter, clean studio style."
}
{request_id, outputs:[{type:"image", url, content_type, file_name, width, height, metadata?}], metadata}
midjourney_upscale
Image
POST /v1/queue/midjourney_upscale
GET  /v1/queue/midjourney_upscale/requests/{request_id}/status
GET  /v1/queue/midjourney_upscale/requests/{request_id}/response
jobId string, 必填 imageNo int, 必填 type int, 必填
{
  "jobId": "midjourney_provider_job_id",
  "imageNo": 0,
  "type": 1
}
{request_id, outputs:[{type:"image", url, content_type, file_name, width, height, metadata?}], metadata}
midjourney_variation
Image
POST /v1/queue/midjourney_variation
GET  /v1/queue/midjourney_variation/requests/{request_id}/status
GET  /v1/queue/midjourney_variation/requests/{request_id}/response
jobId string, 必填 imageNo int, 必填 type int, 必填 remixPrompt string, 可选
{
  "jobId": "midjourney_provider_job_id",
  "imageNo": 0,
  "type": 1
}
{request_id, outputs:[{type:"image", url, content_type, file_name, width, height, metadata?}], metadata}
nano_banana
Image
POST /v1/queue/nano_banana
GET  /v1/queue/nano_banana/requests/{request_id}/status
GET  /v1/queue/nano_banana/requests/{request_id}/response
prompt string, 必填 image_urls string[], 可选 aspect_ratio string, 可选 image_size string, 可选 resolution string, 可选 response_modalities string[], 可选 watermark bool, 可选 moderation bool, 可选 n int, 可选
{
  "prompt": "A red apple on a white table, clean studio lighting, simple background.",
  "image_urls": [
    "https://image.cdn2.seaart.me/2026-06-01/d8ejq1de878c739e2lrg/995ff4fe1eeec10a06c3c7a172862733.webp"
  ]
}
{request_id, outputs:[{type:"image", url, content_type, file_name, width, height, metadata?}], metadata}
nano_banana_2
Image
POST /v1/queue/nano_banana_2
GET  /v1/queue/nano_banana_2/requests/{request_id}/status
GET  /v1/queue/nano_banana_2/requests/{request_id}/response
prompt string, 必填 image_urls string[], 可选 aspect_ratio string, 可选 image_size string, 可选 resolution string, 可选 response_modalities string[], 可选 watermark bool, 可选 reference_image_urls string[], 可选 reference_items array, 可选 quality string, 可选 n int, 可选
{
  "prompt": "A red apple on a white table, clean studio lighting, simple background.",
  "image_urls": [
    "https://image.cdn2.seaart.me/2026-06-01/d8ejq1de878c739e2lrg/995ff4fe1eeec10a06c3c7a172862733.webp"
  ],
  "reference_image_urls": [
    "https://image.cdn2.seaart.me/2026-06-01/d8ejq1de878c739e2lrg/995ff4fe1eeec10a06c3c7a172862733.webp"
  ]
}
{request_id, outputs:[{type:"image", url, content_type, file_name, width, height, metadata?}], metadata}
nano_banana_pro
Image
POST /v1/queue/nano_banana_pro
GET  /v1/queue/nano_banana_pro/requests/{request_id}/status
GET  /v1/queue/nano_banana_pro/requests/{request_id}/response
prompt string, 必填 image_urls string[], 可选 aspect_ratio string, 可选 image_size string, 可选 resolution string, 可选 response_modalities string[], 可选 watermark bool, 可选 moderation bool, 可选 quality string, 可选 n int, 可选
{
  "prompt": "A red apple on a white table, clean studio lighting, simple background.",
  "image_urls": [
    "https://image.cdn2.seaart.me/2026-06-01/d8ejq1de878c739e2lrg/995ff4fe1eeec10a06c3c7a172862733.webp"
  ]
}
{request_id, outputs:[{type:"image", url, content_type, file_name, width, height, metadata?}], metadata}
qwen_image_edit_plus
Image
POST /v1/queue/qwen_image_edit_plus
GET  /v1/queue/qwen_image_edit_plus/requests/{request_id}/status
GET  /v1/queue/qwen_image_edit_plus/requests/{request_id}/response
prompt string, 必填 images string[], 必填 negative_prompt string, 可选 size string, 可选 enable_interleave bool, 可选 n int, 可选 max_images int, 可选 prompt_extend bool, 可选 watermark bool, 可选 seed int, 可选
{
  "prompt": "A red apple on a white table, clean studio lighting, simple background.",
  "images": [
    "https://image.cdn2.seaart.me/2026-06-01/d8ejq1de878c739e2lrg/995ff4fe1eeec10a06c3c7a172862733.webp"
  ]
}
{request_id, outputs:[{type:"image", url, content_type, file_name, width, height, metadata?}], metadata}
wan25_i2i_preview
Image
POST /v1/queue/wan25_i2i_preview
GET  /v1/queue/wan25_i2i_preview/requests/{request_id}/status
GET  /v1/queue/wan25_i2i_preview/requests/{request_id}/response
prompt string, 必填 images string[], 必填 negative_prompt string, 可选 n int, 可选 watermark bool, 可选 seed int, 可选
{
  "prompt": "A red apple on a white table, clean studio lighting, simple background.",
  "images": [
    "https://image.cdn2.seaart.me/2026-06-01/d8ejq1de878c739e2lrg/995ff4fe1eeec10a06c3c7a172862733.webp"
  ]
}
{request_id, outputs:[{type:"image", url, content_type, file_name, width, height, metadata?}], metadata}
wan25_i2i_preview_intl
Image
POST /v1/queue/wan25_i2i_preview_intl
GET  /v1/queue/wan25_i2i_preview_intl/requests/{request_id}/status
GET  /v1/queue/wan25_i2i_preview_intl/requests/{request_id}/response
prompt string, 必填 images string[], 必填 negative_prompt string, 可选 n int, 可选 watermark bool, 可选 seed int, 可选
{
  "prompt": "A red apple on a white table, clean studio lighting, simple background.",
  "images": [
    "https://image.cdn2.seaart.me/2026-06-01/d8ejq1de878c739e2lrg/995ff4fe1eeec10a06c3c7a172862733.webp"
  ]
}
{request_id, outputs:[{type:"image", url, content_type, file_name, width, height, metadata?}], metadata}
wan25_t2i_preview
Image
POST /v1/queue/wan25_t2i_preview
GET  /v1/queue/wan25_t2i_preview/requests/{request_id}/status
GET  /v1/queue/wan25_t2i_preview/requests/{request_id}/response
prompt string, 必填 negative_prompt string, 可选 size string, 可选 n int, 可选 seed int, 可选 prompt_extend bool, 可选 watermark bool, 可选
{
  "prompt": "A red apple on a white table, clean studio lighting, simple background."
}
{request_id, outputs:[{type:"image", url, content_type, file_name, width, height, metadata?}], metadata}
wan25_t2i_preview_intl
Image
POST /v1/queue/wan25_t2i_preview_intl
GET  /v1/queue/wan25_t2i_preview_intl/requests/{request_id}/status
GET  /v1/queue/wan25_t2i_preview_intl/requests/{request_id}/response
prompt string, 必填 negative_prompt string, 可选 size string, 可选 n int, 可选 seed int, 可选 prompt_extend bool, 可选 watermark bool, 可选
{
  "prompt": "A red apple on a white table, clean studio lighting, simple background."
}
{request_id, outputs:[{type:"image", url, content_type, file_name, width, height, metadata?}], metadata}
wan26_i2i
Image
POST /v1/queue/wan26_i2i
GET  /v1/queue/wan26_i2i/requests/{request_id}/status
GET  /v1/queue/wan26_i2i/requests/{request_id}/response
prompt string, 必填 images string[], 必填 negative_prompt string, 可选 size string, 可选 enable_interleave bool, 可选 n int, 可选 max_images int, 可选 prompt_extend bool, 可选 watermark bool, 可选 seed int, 可选
{
  "prompt": "A red apple on a white table, clean studio lighting, simple background.",
  "images": [
    "https://image.cdn2.seaart.me/2026-06-01/d8ejq1de878c739e2lrg/995ff4fe1eeec10a06c3c7a172862733.webp"
  ]
}
{request_id, outputs:[{type:"image", url, content_type, file_name, width, height, metadata?}], metadata}
wan26_image
Image
POST /v1/queue/wan26_image
GET  /v1/queue/wan26_image/requests/{request_id}/status
GET  /v1/queue/wan26_image/requests/{request_id}/response
role string, 可选 , 默认 user prompt string, 必填 image string, 可选 image_url string, 可选 image_2 string, 可选 image_3 string, 可选 image_4 string, 可选 enable_interleave bool, 可选 , 默认 true negative_prompt string, 可选 size string, 可选 n int, 可选 prompt_extend bool, 可选 watermark bool, 可选 seed int, 可选
{
  "prompt": "A red apple on a white table, clean studio lighting, simple background.",
  "image_url": "https://image.cdn2.seaart.me/2026-06-01/d8ejq1de878c739e2lrg/995ff4fe1eeec10a06c3c7a172862733.webp"
}
{request_id, outputs:[{type:"image", url, content_type, file_name, width, height, metadata?}], metadata}
wan26_image_intl
Image
POST /v1/queue/wan26_image_intl
GET  /v1/queue/wan26_image_intl/requests/{request_id}/status
GET  /v1/queue/wan26_image_intl/requests/{request_id}/response
role string, 可选 , 默认 user prompt string, 必填 image string, 可选 image_url string, 可选 image_2 string, 可选 image_3 string, 可选 image_4 string, 可选 enable_interleave bool, 可选 , 默认 true negative_prompt string, 可选 size string, 可选 n int, 可选 prompt_extend bool, 可选 watermark bool, 可选 seed int, 可选
{
  "prompt": "A red apple on a white table, clean studio lighting, simple background.",
  "image_url": "https://image.cdn2.seaart.me/2026-06-01/d8ejq1de878c739e2lrg/995ff4fe1eeec10a06c3c7a172862733.webp"
}
{request_id, outputs:[{type:"image", url, content_type, file_name, width, height, metadata?}], metadata}
wan26_t2i
Image
POST /v1/queue/wan26_t2i
GET  /v1/queue/wan26_t2i/requests/{request_id}/status
GET  /v1/queue/wan26_t2i/requests/{request_id}/response
role string, 可选 , 默认 user prompt string, 必填 negative_prompt string, 可选 size string, 可选 n int, 可选 seed int, 可选 prompt_extend bool, 可选 watermark bool, 可选
{
  "prompt": "A red apple on a white table, clean studio lighting, simple background."
}
{request_id, outputs:[{type:"image", url, content_type, file_name, width, height, metadata?}], metadata}
wan27_image
Image
POST /v1/queue/wan27_image
GET  /v1/queue/wan27_image/requests/{request_id}/status
GET  /v1/queue/wan27_image/requests/{request_id}/response
role string, 可选 , 默认 user prompt string, 必填 negative_prompt string, 可选 size string, 可选 n int, 可选 prompt_extend bool, 可选 watermark bool, 可选 seed int, 可选
{
  "prompt": "A red apple on a white table, clean studio lighting, simple background."
}
{request_id, outputs:[{type:"image", url, content_type, file_name, width, height, metadata?}], metadata}
wan27_image_pro
Image
POST /v1/queue/wan27_image_pro
GET  /v1/queue/wan27_image_pro/requests/{request_id}/status
GET  /v1/queue/wan27_image_pro/requests/{request_id}/response
role string, 可选 , 默认 user prompt string, 必填 negative_prompt string, 可选 size string, 可选 n int, 可选 prompt_extend bool, 可选 watermark bool, 可选 seed int, 可选
{
  "prompt": "A red apple on a white table, clean studio lighting, simple background."
}
{request_id, outputs:[{type:"image", url, content_type, file_name, width, height, metadata?}], metadata}
happyhorse_1.0_i2v
Video
POST /v1/queue/happyhorse_1.0_i2v
GET  /v1/queue/happyhorse_1.0_i2v/requests/{request_id}/status
GET  /v1/queue/happyhorse_1.0_i2v/requests/{request_id}/response
prompt string, 必填 media any, 必填 duration int, 可选 resolution string, 可选 prompt_extend bool, 可选 seed int, 可选 watermark bool, 可选
{
  "prompt": "A red apple slowly rotating on a white table, clean studio lighting, static camera.",
  "media": [
    {
      "type": "first_frame",
      "url": "https://image.cdn2.seaart.me/2026-06-01/d8ejq1de878c739e2lrg/995ff4fe1eeec10a06c3c7a172862733.webp"
    }
  ],
  "duration": 5,
  "resolution": "720P"
}
{request_id, outputs:[{type:"video", url, content_type, file_name, file_size, duration, metadata?}], metadata}
happyhorse_1.0_r2v
Video
POST /v1/queue/happyhorse_1.0_r2v
GET  /v1/queue/happyhorse_1.0_r2v/requests/{request_id}/status
GET  /v1/queue/happyhorse_1.0_r2v/requests/{request_id}/response
prompt string, 必填 media any, 必填 duration int, 可选 resolution string, 可选 prompt_extend bool, 可选 seed int, 可选 watermark bool, 可选
{
  "prompt": "A red apple slowly rotating on a white table, clean studio lighting, static camera.",
  "media": [
    {
      "type": "reference_image",
      "url": "https://image.cdn2.seaart.me/2026-06-01/d8ejq1de878c739e2lrg/995ff4fe1eeec10a06c3c7a172862733.webp"
    }
  ],
  "duration": 5,
  "resolution": "720P"
}
{request_id, outputs:[{type:"video", url, content_type, file_name, file_size, duration, metadata?}], metadata}
happyhorse_1.0_t2v
Video
POST /v1/queue/happyhorse_1.0_t2v
GET  /v1/queue/happyhorse_1.0_t2v/requests/{request_id}/status
GET  /v1/queue/happyhorse_1.0_t2v/requests/{request_id}/response
prompt string, 必填 media any, 可选 duration int, 可选 resolution string, 可选 prompt_extend bool, 可选 seed int, 可选 watermark bool, 可选
{
  "prompt": "A red apple slowly rotating on a white table, clean studio lighting, static camera.",
  "duration": 5,
  "resolution": "720P"
}
{request_id, outputs:[{type:"video", url, content_type, file_name, file_size, duration, metadata?}], metadata}
happyhorse_1.0_video_edit
Video
POST /v1/queue/happyhorse_1.0_video_edit
GET  /v1/queue/happyhorse_1.0_video_edit/requests/{request_id}/status
GET  /v1/queue/happyhorse_1.0_video_edit/requests/{request_id}/response
prompt string, 必填 media any, 必填 duration int, 可选 resolution string, 可选 prompt_extend bool, 可选 seed int, 可选 watermark bool, 可选
{
  "prompt": "A red apple slowly rotating on a white table, clean studio lighting, static camera.",
  "media": [
    {
      "type": "video",
      "url": "https://static.cdn2.haiyiapi.com/2026-06-01/d8elghle878b7lpvk0o0/053e1094464d3a0e557f6e3437acafd5.mp4"
    }
  ],
  "duration": 5,
  "resolution": "720P"
}
{request_id, outputs:[{type:"video", url, content_type, file_name, file_size, duration, metadata?}], metadata}
midjourney_extend_video
Video
POST /v1/queue/midjourney_extend_video
GET  /v1/queue/midjourney_extend_video/requests/{request_id}/status
GET  /v1/queue/midjourney_extend_video/requests/{request_id}/response
jobId string, 必填 videoNo int, 必填 text string, 可选 prompt string, 可选
{
  "jobId": "midjourney_video_job_id",
  "videoNo": 1,
  "prompt": "A red apple slowly rotating on a white table, clean studio lighting, static camera."
}
{request_id, outputs:[{type:"video", url, content_type, file_name, file_size, duration, metadata?}], metadata}
midjourney_video_diffusion
Video
POST /v1/queue/midjourney_video_diffusion
GET  /v1/queue/midjourney_video_diffusion/requests/{request_id}/status
GET  /v1/queue/midjourney_video_diffusion/requests/{request_id}/response
prompt string, 可选 jobId string, 可选 imageNo int, 可选 videoType int, 可选
{
  "prompt": "https://image.cdn2.seaart.me/2026-06-01/d8ejq1de878c739e2lrg/995ff4fe1eeec10a06c3c7a172862733.webp A red apple slowly rotating on a white table, clean studio lighting, static camera."
}
{request_id, outputs:[{type:"video", url, content_type, file_name, file_size, duration, metadata?}], metadata}
midjourney_video_upscale
Video
POST /v1/queue/midjourney_video_upscale
GET  /v1/queue/midjourney_video_upscale/requests/{request_id}/status
GET  /v1/queue/midjourney_video_upscale/requests/{request_id}/response
jobId string, 必填 videoNo int, 必填 type int, 可选
{
  "jobId": "midjourney_video_job_id",
  "videoNo": 1
}
{request_id, outputs:[{type:"video", url, content_type, file_name, file_size, duration, metadata?}], metadata}
minimax_hailuo_02_i2v
Video
POST /v1/queue/minimax_hailuo_02_i2v
GET  /v1/queue/minimax_hailuo_02_i2v/requests/{request_id}/status
GET  /v1/queue/minimax_hailuo_02_i2v/requests/{request_id}/response
first_frame_image string, 必填 prompt string, 可选 duration int, 可选 resolution string, 可选 prompt_optimizer bool, 可选 fast_pretreatment bool, 可选
{
  "first_frame_image": "https://image.cdn2.seaart.me/2026-06-01/d8ejq1de878c739e2lrg/995ff4fe1eeec10a06c3c7a172862733.webp",
  "prompt": "A red apple slowly rotating on a white table, clean studio lighting, static camera.",
  "duration": 6,
  "resolution": "768P"
}
{request_id, outputs:[{type:"video", url, content_type, file_name, file_size, duration, metadata?}], metadata}
minimax_hailuo_02_t2v
Video
POST /v1/queue/minimax_hailuo_02_t2v
GET  /v1/queue/minimax_hailuo_02_t2v/requests/{request_id}/status
GET  /v1/queue/minimax_hailuo_02_t2v/requests/{request_id}/response
prompt string, 必填 duration int, 可选 resolution string, 可选 prompt_optimizer bool, 可选 fast_pretreatment bool, 可选
{
  "prompt": "A red apple slowly rotating on a white table, clean studio lighting, static camera.",
  "duration": 6,
  "resolution": "768P"
}
{request_id, outputs:[{type:"video", url, content_type, file_name, file_size, duration, metadata?}], metadata}
minimax_hailuo_23_fast_i2v
Video
POST /v1/queue/minimax_hailuo_23_fast_i2v
GET  /v1/queue/minimax_hailuo_23_fast_i2v/requests/{request_id}/status
GET  /v1/queue/minimax_hailuo_23_fast_i2v/requests/{request_id}/response
first_frame_image string, 必填 prompt string, 可选 duration int, 可选 resolution string, 可选 prompt_optimizer bool, 可选 fast_pretreatment bool, 可选
{
  "first_frame_image": "https://image.cdn2.seaart.me/2026-06-01/d8ejq1de878c739e2lrg/995ff4fe1eeec10a06c3c7a172862733.webp",
  "prompt": "A red apple slowly rotating on a white table, clean studio lighting, static camera.",
  "duration": 6,
  "resolution": "768P"
}
{request_id, outputs:[{type:"video", url, content_type, file_name, file_size, duration, metadata?}], metadata}
minimax_hailuo_23_i2v
Video
POST /v1/queue/minimax_hailuo_23_i2v
GET  /v1/queue/minimax_hailuo_23_i2v/requests/{request_id}/status
GET  /v1/queue/minimax_hailuo_23_i2v/requests/{request_id}/response
first_frame_image string, 必填 prompt string, 可选 duration int, 可选 resolution string, 可选 prompt_optimizer bool, 可选 fast_pretreatment bool, 可选
{
  "first_frame_image": "https://image.cdn2.seaart.me/2026-06-01/d8ejq1de878c739e2lrg/995ff4fe1eeec10a06c3c7a172862733.webp",
  "prompt": "A red apple slowly rotating on a white table, clean studio lighting, static camera.",
  "duration": 6,
  "resolution": "768P"
}
{request_id, outputs:[{type:"video", url, content_type, file_name, file_size, duration, metadata?}], metadata}
minimax_hailuo_23_t2v
Video
POST /v1/queue/minimax_hailuo_23_t2v
GET  /v1/queue/minimax_hailuo_23_t2v/requests/{request_id}/status
GET  /v1/queue/minimax_hailuo_23_t2v/requests/{request_id}/response
prompt string, 必填 duration int, 可选 resolution string, 可选 prompt_optimizer bool, 可选 fast_pretreatment bool, 可选
{
  "prompt": "A red apple slowly rotating on a white table, clean studio lighting, static camera.",
  "duration": 6,
  "resolution": "768P"
}
{request_id, outputs:[{type:"video", url, content_type, file_name, file_size, duration, metadata?}], metadata}
minimax_i2v_01
Video
POST /v1/queue/minimax_i2v_01
GET  /v1/queue/minimax_i2v_01/requests/{request_id}/status
GET  /v1/queue/minimax_i2v_01/requests/{request_id}/response
first_frame_image string, 必填 prompt string, 可选 duration int, 可选 resolution string, 可选 prompt_optimizer bool, 可选
{
  "first_frame_image": "https://image.cdn2.seaart.me/2026-06-01/d8ejq1de878c739e2lrg/995ff4fe1eeec10a06c3c7a172862733.webp",
  "prompt": "A red apple slowly rotating on a white table, clean studio lighting, static camera.",
  "duration": 5,
  "resolution": "720P"
}
{request_id, outputs:[{type:"video", url, content_type, file_name, file_size, duration, metadata?}], metadata}
minimax_i2v_01_director
Video
POST /v1/queue/minimax_i2v_01_director
GET  /v1/queue/minimax_i2v_01_director/requests/{request_id}/status
GET  /v1/queue/minimax_i2v_01_director/requests/{request_id}/response
first_frame_image string, 必填 prompt string, 可选 prompt_optimizer bool, 可选
{
  "first_frame_image": "https://image.cdn2.seaart.me/2026-06-01/d8ejq1de878c739e2lrg/995ff4fe1eeec10a06c3c7a172862733.webp",
  "prompt": "A red apple slowly rotating on a white table, clean studio lighting, static camera."
}
{request_id, outputs:[{type:"video", url, content_type, file_name, file_size, duration, metadata?}], metadata}
minimax_i2v_01_live
Video
POST /v1/queue/minimax_i2v_01_live
GET  /v1/queue/minimax_i2v_01_live/requests/{request_id}/status
GET  /v1/queue/minimax_i2v_01_live/requests/{request_id}/response
first_frame_image string, 必填 prompt string, 可选 duration int, 可选 resolution string, 可选 prompt_optimizer bool, 可选
{
  "first_frame_image": "https://image.cdn2.seaart.me/2026-06-01/d8ejq1de878c739e2lrg/995ff4fe1eeec10a06c3c7a172862733.webp",
  "prompt": "A red apple slowly rotating on a white table, clean studio lighting, static camera.",
  "duration": 5,
  "resolution": "720P"
}
{request_id, outputs:[{type:"video", url, content_type, file_name, file_size, duration, metadata?}], metadata}
minimax_t2v_01
Video
POST /v1/queue/minimax_t2v_01
GET  /v1/queue/minimax_t2v_01/requests/{request_id}/status
GET  /v1/queue/minimax_t2v_01/requests/{request_id}/response
prompt string, 必填 duration int, 可选 resolution string, 可选 prompt_optimizer bool, 可选
{
  "prompt": "A red apple slowly rotating on a white table, clean studio lighting, static camera.",
  "duration": 5,
  "resolution": "720P"
}
{request_id, outputs:[{type:"video", url, content_type, file_name, file_size, duration, metadata?}], metadata}
minimax_t2v_01_director
Video
POST /v1/queue/minimax_t2v_01_director
GET  /v1/queue/minimax_t2v_01_director/requests/{request_id}/status
GET  /v1/queue/minimax_t2v_01_director/requests/{request_id}/response
prompt string, 必填 duration int, 可选 resolution string, 可选 prompt_optimizer bool, 可选
{
  "prompt": "A red apple slowly rotating on a white table, clean studio lighting, static camera.",
  "duration": 5,
  "resolution": "720P"
}
{request_id, outputs:[{type:"video", url, content_type, file_name, file_size, duration, metadata?}], metadata}
pixverse_v6_i2v
Video
POST /v1/queue/pixverse_v6_i2v
GET  /v1/queue/pixverse_v6_i2v/requests/{request_id}/status
GET  /v1/queue/pixverse_v6_i2v/requests/{request_id}/response
image string, 必填 img_id string, 可选 prompt string, 可选 negative_prompt string, 可选 duration number, 可选 quality string, 可选 seed int, 可选 style string, 可选 template_id int, 可选 sound_effect_switch bool, 可选 sound_effect_content string, 可选 lip_sync_switch bool, 可选 lip_sync_tts_content string, 可选 lip_sync_tts_speaker_id string, 可选 generate_audio_switch bool, 可选 generate_multi_clip_switch bool, 可选 thinking_type string, 可选
{
  "image": "https://image.cdn2.seaart.me/2026-06-01/d8ejq1de878c739e2lrg/995ff4fe1eeec10a06c3c7a172862733.webp",
  "prompt": "A red apple slowly rotating on a white table, clean studio lighting, static camera.",
  "duration": 5,
  "quality": "540p"
}
{request_id, outputs:[{type:"video", url, content_type, file_name, file_size, duration, metadata?}], metadata}
pixverse_v6_t2v
Video
POST /v1/queue/pixverse_v6_t2v
GET  /v1/queue/pixverse_v6_t2v/requests/{request_id}/status
GET  /v1/queue/pixverse_v6_t2v/requests/{request_id}/response
prompt string, 必填 aspect_ratio string, 必填 duration int, 必填 quality string, 必填 seed int, 可选 generate_audio_switch bool, 可选 generate_multi_clip_switch bool, 可选
{
  "prompt": "A red apple slowly rotating on a white table, clean studio lighting, static camera.",
  "aspect_ratio": "1:1",
  "duration": 5,
  "quality": "540p"
}
{request_id, outputs:[{type:"video", url, content_type, file_name, file_size, duration, metadata?}], metadata}
pixverse_v6_transition
Video
POST /v1/queue/pixverse_v6_transition
GET  /v1/queue/pixverse_v6_transition/requests/{request_id}/status
GET  /v1/queue/pixverse_v6_transition/requests/{request_id}/response
first_frame_image string, 必填 last_frame_image string, 必填 prompt string, 可选 negative_prompt string, 可选 duration number, 可选 quality string, 可选 seed int, 可选 style string, 可选 sound_effect_switch bool, 可选 sound_effect_content string, 可选 generate_audio_switch bool, 可选 thinking_type string, 可选
{
  "first_frame_image": "https://image.cdn2.seaart.me/2026-06-01/d8ejq1de878c739e2lrg/995ff4fe1eeec10a06c3c7a172862733.webp",
  "last_frame_image": "https://static.cdn2.haiyiapi.com/2026-06-01/d8ek0qde878c73clitng/87a3f4bb17473f449ca7c6736a3b369b.webp",
  "prompt": "A red apple slowly rotating on a white table, clean studio lighting, static camera.",
  "duration": 5,
  "quality": "540p"
}
{request_id, outputs:[{type:"video", url, content_type, file_name, file_size, duration, metadata?}], metadata}
tencent_mps_super_resolution
Video
POST /v1/queue/tencent_mps_super_resolution
GET  /v1/queue/tencent_mps_super_resolution/requests/{request_id}/status
GET  /v1/queue/tencent_mps_super_resolution/requests/{request_id}/response
input_url string, 必填 input_type string, 可选 , 默认 URL output_bucket string, 可选 , 默认 top-rank-cos-1350346443 output_region string, 可选 , 默认 na-siliconvalley output_storage_type string, 可选 , 默认 COS output_dir string, 可选 , 默认 /super_resolution definition any, 可选 , 默认 1682687 short int, 可选 session_id string, 可选 session_context string, 可选 task_notify_config object, 可选 task_priority int, 可选
{
  "input_url": "https://static.cdn2.haiyiapi.com/2026-06-01/d8elghle878b7lpvk0o0/053e1094464d3a0e557f6e3437acafd5.mp4"
}
{request_id, outputs:[{type:"video", url, content_type, file_name, file_size, duration, metadata?}], metadata}
wan22_i2v_flash
Video
POST /v1/queue/wan22_i2v_flash
GET  /v1/queue/wan22_i2v_flash/requests/{request_id}/status
GET  /v1/queue/wan22_i2v_flash/requests/{request_id}/response
prompt string, 必填 img_url string, 必填 duration int, 可选 resolution string, 可选 prompt_extend bool, 可选 seed int, 可选 watermark bool, 可选
{
  "prompt": "A red apple slowly rotating on a white table, clean studio lighting, static camera.",
  "img_url": "https://image.cdn2.seaart.me/2026-06-01/d8ejq1de878c739e2lrg/995ff4fe1eeec10a06c3c7a172862733.webp",
  "duration": 5,
  "resolution": "720P"
}
{request_id, outputs:[{type:"video", url, content_type, file_name, file_size, duration, metadata?}], metadata}
wan22_i2v_plus
Video
POST /v1/queue/wan22_i2v_plus
GET  /v1/queue/wan22_i2v_plus/requests/{request_id}/status
GET  /v1/queue/wan22_i2v_plus/requests/{request_id}/response
prompt string, 必填 img_url string, 必填 duration int, 可选 resolution string, 可选 prompt_extend bool, 可选 seed int, 可选 watermark bool, 可选
{
  "prompt": "A red apple slowly rotating on a white table, clean studio lighting, static camera.",
  "img_url": "https://image.cdn2.seaart.me/2026-06-01/d8ejq1de878c739e2lrg/995ff4fe1eeec10a06c3c7a172862733.webp",
  "duration": 5,
  "resolution": "480P"
}
{request_id, outputs:[{type:"video", url, content_type, file_name, file_size, duration, metadata?}], metadata}
wan22_t2v_plus
Video
POST /v1/queue/wan22_t2v_plus
GET  /v1/queue/wan22_t2v_plus/requests/{request_id}/status
GET  /v1/queue/wan22_t2v_plus/requests/{request_id}/response
prompt string, 必填 duration int, 可选 resolution string, 可选 prompt_extend bool, 可选 seed int, 可选 watermark bool, 可选
{
  "prompt": "A red apple slowly rotating on a white table, clean studio lighting, static camera.",
  "duration": 5,
  "resolution": "720P"
}
{request_id, outputs:[{type:"video", url, content_type, file_name, file_size, duration, metadata?}], metadata}
wan25_t2v_preview
Video
POST /v1/queue/wan25_t2v_preview
GET  /v1/queue/wan25_t2v_preview/requests/{request_id}/status
GET  /v1/queue/wan25_t2v_preview/requests/{request_id}/response
prompt string, 必填 duration int, 可选 resolution string, 可选 prompt_extend bool, 可选 seed int, 可选 watermark bool, 可选
{
  "prompt": "A red apple slowly rotating on a white table, clean studio lighting, static camera.",
  "duration": 5,
  "resolution": "720P"
}
{request_id, outputs:[{type:"video", url, content_type, file_name, file_size, duration, metadata?}], metadata}
wan26_i2v
Video
POST /v1/queue/wan26_i2v
GET  /v1/queue/wan26_i2v/requests/{request_id}/status
GET  /v1/queue/wan26_i2v/requests/{request_id}/response
prompt string, 必填 img_url string, 必填 duration int, 可选 resolution string, 可选 prompt_extend bool, 可选 seed int, 可选 watermark bool, 可选
{
  "prompt": "A red apple slowly rotating on a white table, clean studio lighting, static camera.",
  "img_url": "https://image.cdn2.seaart.me/2026-06-01/d8ejq1de878c739e2lrg/995ff4fe1eeec10a06c3c7a172862733.webp",
  "duration": 5,
  "resolution": "720P"
}
{request_id, outputs:[{type:"video", url, content_type, file_name, file_size, duration, metadata?}], metadata}
wan26_r2v
Video
POST /v1/queue/wan26_r2v
GET  /v1/queue/wan26_r2v/requests/{request_id}/status
GET  /v1/queue/wan26_r2v/requests/{request_id}/response
prompt string, 必填 negative_prompt string, 可选 reference_urls string[], 可选 reference_video_urls string[], 可选 duration int, 可选 size string, 可选 shot_type string, 可选 resolution string, 可选 seed int, 可选 watermark bool, 可选
{
  "prompt": "A red apple slowly rotating on a white table, clean studio lighting, static camera.",
  "reference_urls": [
    "https://image.cdn2.seaart.me/2026-06-01/d8ejq1de878c739e2lrg/995ff4fe1eeec10a06c3c7a172862733.webp"
  ],
  "duration": 5
}
{request_id, outputs:[{type:"video", url, content_type, file_name, file_size, duration, metadata?}], metadata}
wan26_t2v
Video
POST /v1/queue/wan26_t2v
GET  /v1/queue/wan26_t2v/requests/{request_id}/status
GET  /v1/queue/wan26_t2v/requests/{request_id}/response
prompt string, 必填 duration int, 可选 resolution string, 可选 prompt_extend bool, 可选 seed int, 可选 watermark bool, 可选
{
  "prompt": "A red apple slowly rotating on a white table, clean studio lighting, static camera.",
  "duration": 5,
  "resolution": "720P"
}
{request_id, outputs:[{type:"video", url, content_type, file_name, file_size, duration, metadata?}], metadata}
minimax_speech_01_hd
Audio
POST /v1/queue/minimax_speech_01_hd
GET  /v1/queue/minimax_speech_01_hd/requests/{request_id}/status
GET  /v1/queue/minimax_speech_01_hd/requests/{request_id}/response
text string, 必填 stream bool, 可选 output_format string, 可选 voice_setting object, 可选 audio_setting object, 可选 language_boost string, 可选 pronunciation_dict object, 可选 voice_modify object, 可选 subtitle_enable bool, 可选 stream_options object, 可选 aigc_watermark bool, 可选
{
  "text": "你好,欢迎使用 SeaCloud 多模态模型 API。",
  "stream": false,
  "output_format": "url",
  "voice_setting": {
    "voice_id": "female-shaonv",
    "speed": 1.08,
    "vol": 1,
    "pitch": 0
  },
  "audio_setting": {
    "sample_rate": 32000,
    "bitrate": 128000,
    "channel": 1,
    "format": "mp3"
  },
  "language_boost": "Chinese",
  "aigc_watermark": false
}
{request_id, outputs:[{type:"audio", url, content_type, file_name, file_size, duration, metadata?}], metadata}
minimax_speech_01_turbo
Audio
POST /v1/queue/minimax_speech_01_turbo
GET  /v1/queue/minimax_speech_01_turbo/requests/{request_id}/status
GET  /v1/queue/minimax_speech_01_turbo/requests/{request_id}/response
text string, 必填 stream bool, 可选 output_format string, 可选 voice_setting object, 可选 audio_setting object, 可选 language_boost string, 可选 pronunciation_dict object, 可选 voice_modify object, 可选 subtitle_enable bool, 可选 stream_options object, 可选 aigc_watermark bool, 可选
{
  "text": "你好,欢迎使用 SeaCloud 多模态模型 API。",
  "stream": false,
  "output_format": "url",
  "voice_setting": {
    "voice_id": "female-shaonv",
    "speed": 1.08,
    "vol": 1,
    "pitch": 0
  },
  "audio_setting": {
    "sample_rate": 32000,
    "bitrate": 128000,
    "channel": 1,
    "format": "mp3"
  },
  "language_boost": "Chinese",
  "aigc_watermark": false
}
{request_id, outputs:[{type:"audio", url, content_type, file_name, file_size, duration, metadata?}], metadata}
minimax_speech_02_hd
Audio
POST /v1/queue/minimax_speech_02_hd
GET  /v1/queue/minimax_speech_02_hd/requests/{request_id}/status
GET  /v1/queue/minimax_speech_02_hd/requests/{request_id}/response
text string, 必填 stream bool, 可选 output_format string, 可选 voice_setting object, 可选 audio_setting object, 可选 language_boost string, 可选 pronunciation_dict object, 可选 voice_modify object, 可选 subtitle_enable bool, 可选 stream_options object, 可选 aigc_watermark bool, 可选
{
  "text": "你好,欢迎使用 SeaCloud 多模态模型 API。",
  "stream": false,
  "output_format": "url",
  "voice_setting": {
    "voice_id": "female-shaonv",
    "speed": 1.08,
    "vol": 1,
    "pitch": 0
  },
  "audio_setting": {
    "sample_rate": 32000,
    "bitrate": 128000,
    "channel": 1,
    "format": "mp3"
  },
  "language_boost": "Chinese",
  "aigc_watermark": false
}
{request_id, outputs:[{type:"audio", url, content_type, file_name, file_size, duration, metadata?}], metadata}
minimax_speech_02_turbo
Audio
POST /v1/queue/minimax_speech_02_turbo
GET  /v1/queue/minimax_speech_02_turbo/requests/{request_id}/status
GET  /v1/queue/minimax_speech_02_turbo/requests/{request_id}/response
text string, 必填 stream bool, 可选 output_format string, 可选 voice_setting object, 可选 audio_setting object, 可选 language_boost string, 可选 pronunciation_dict object, 可选 voice_modify object, 可选 subtitle_enable bool, 可选 stream_options object, 可选 aigc_watermark bool, 可选
{
  "text": "你好,欢迎使用 SeaCloud 多模态模型 API。",
  "stream": false,
  "output_format": "url",
  "voice_setting": {
    "voice_id": "female-shaonv",
    "speed": 1.08,
    "vol": 1,
    "pitch": 0
  },
  "audio_setting": {
    "sample_rate": 32000,
    "bitrate": 128000,
    "channel": 1,
    "format": "mp3"
  },
  "language_boost": "Chinese",
  "aigc_watermark": false
}
{request_id, outputs:[{type:"audio", url, content_type, file_name, file_size, duration, metadata?}], metadata}
minimax_speech_26_hd
Audio
POST /v1/queue/minimax_speech_26_hd
GET  /v1/queue/minimax_speech_26_hd/requests/{request_id}/status
GET  /v1/queue/minimax_speech_26_hd/requests/{request_id}/response
text string, 必填 stream bool, 可选 output_format string, 可选 voice_setting object, 可选 audio_setting object, 可选 language_boost string, 可选 pronunciation_dict object, 可选 voice_modify object, 可选 subtitle_enable bool, 可选 stream_options object, 可选 aigc_watermark bool, 可选
{
  "text": "你好,欢迎使用 SeaCloud 多模态模型 API。",
  "stream": false,
  "output_format": "url",
  "voice_setting": {
    "voice_id": "female-shaonv",
    "speed": 1.08,
    "vol": 1,
    "pitch": 0
  },
  "audio_setting": {
    "sample_rate": 32000,
    "bitrate": 128000,
    "channel": 1,
    "format": "mp3"
  },
  "language_boost": "Chinese",
  "aigc_watermark": false
}
{request_id, outputs:[{type:"audio", url, content_type, file_name, file_size, duration, metadata?}], metadata}
minimax_speech_26_turbo
Audio
POST /v1/queue/minimax_speech_26_turbo
GET  /v1/queue/minimax_speech_26_turbo/requests/{request_id}/status
GET  /v1/queue/minimax_speech_26_turbo/requests/{request_id}/response
text string, 必填 stream bool, 可选 output_format string, 可选 voice_setting object, 可选 audio_setting object, 可选 language_boost string, 可选 pronunciation_dict object, 可选 voice_modify object, 可选 subtitle_enable bool, 可选 stream_options object, 可选 aigc_watermark bool, 可选
{
  "text": "你好,欢迎使用 SeaCloud 多模态模型 API。",
  "stream": false,
  "output_format": "url",
  "voice_setting": {
    "voice_id": "female-shaonv",
    "speed": 1.08,
    "vol": 1,
    "pitch": 0
  },
  "audio_setting": {
    "sample_rate": 32000,
    "bitrate": 128000,
    "channel": 1,
    "format": "mp3"
  },
  "language_boost": "Chinese",
  "aigc_watermark": false
}
{request_id, outputs:[{type:"audio", url, content_type, file_name, file_size, duration, metadata?}], metadata}
minimax_speech_28_hd
Audio
POST /v1/queue/minimax_speech_28_hd
GET  /v1/queue/minimax_speech_28_hd/requests/{request_id}/status
GET  /v1/queue/minimax_speech_28_hd/requests/{request_id}/response
text string, 必填 stream bool, 可选 output_format string, 可选 voice_setting object, 可选 audio_setting object, 可选 language_boost string, 可选 pronunciation_dict object, 可选 voice_modify object, 可选 subtitle_enable bool, 可选 stream_options object, 可选 aigc_watermark bool, 可选
{
  "text": "你好,欢迎使用 SeaCloud 多模态模型 API。",
  "stream": false,
  "output_format": "url",
  "voice_setting": {
    "voice_id": "female-shaonv",
    "speed": 1.08,
    "vol": 1,
    "pitch": 0
  },
  "audio_setting": {
    "sample_rate": 32000,
    "bitrate": 128000,
    "channel": 1,
    "format": "mp3"
  },
  "language_boost": "Chinese",
  "aigc_watermark": false
}
{request_id, outputs:[{type:"audio", url, content_type, file_name, file_size, duration, metadata?}], metadata}
minimax_speech_28_turbo
Audio
POST /v1/queue/minimax_speech_28_turbo
GET  /v1/queue/minimax_speech_28_turbo/requests/{request_id}/status
GET  /v1/queue/minimax_speech_28_turbo/requests/{request_id}/response
text string, 必填 stream bool, 可选 output_format string, 可选 voice_setting object, 可选 audio_setting object, 可选 language_boost string, 可选 pronunciation_dict object, 可选 voice_modify object, 可选 subtitle_enable bool, 可选 stream_options object, 可选 aigc_watermark bool, 可选
{
  "text": "你好,欢迎使用 SeaCloud 多模态模型 API。",
  "stream": false,
  "output_format": "url",
  "voice_setting": {
    "voice_id": "female-shaonv",
    "speed": 1.08,
    "vol": 1,
    "pitch": 0
  },
  "audio_setting": {
    "sample_rate": 32000,
    "bitrate": 128000,
    "channel": 1,
    "format": "mp3"
  },
  "language_boost": "Chinese",
  "aigc_watermark": false
}
{request_id, outputs:[{type:"audio", url, content_type, file_name, file_size, duration, metadata?}], metadata}
mureka_lyrics_generator
Audio
POST /v1/queue/mureka_lyrics_generator
GET  /v1/queue/mureka_lyrics_generator/requests/{request_id}/status
GET  /v1/queue/mureka_lyrics_generator/requests/{request_id}/response
prompt string, 必填
{
  "prompt": "写一首关于夏夜海边和朋友重逢的中文流行歌词"
}
{request_id, outputs:[{type:"text", text}], metadata}
mureka_song_generator
Audio
POST /v1/queue/mureka_song_generator
GET  /v1/queue/mureka_song_generator/requests/{request_id}/status
GET  /v1/queue/mureka_song_generator/requests/{request_id}/response
lyrics string, 必填 n int, 可选 prompt string, 可选 reference_id string, 可选 vocal_id string, 可选 melody_id string, 可选 stream bool, 可选
{
  "lyrics": "[Verse]\n晚风吹过海岸线\n我们把故事唱一遍",
  "prompt": "warm pop ballad, clean vocal, emotional chorus",
  "n": 1
}
{request_id, outputs:[{type:"audio", url, content_type, file_name, file_size, duration, metadata?}], metadata}
tencent_hunyuan_3d
3D
POST /v1/queue/tencent_hunyuan_3d
GET  /v1/queue/tencent_hunyuan_3d/requests/{request_id}/status
GET  /v1/queue/tencent_hunyuan_3d/requests/{request_id}/response
prompt string, 可选 image_base64 string, 可选 image_url string, 可选 result_format string, 可选 enable_pbr bool, 可选 multi_view_images array, 可选
{
  "image_url": "https://image.cdn2.seaart.me/2026-06-01/d8ejq1de878c739e2lrg/995ff4fe1eeec10a06c3c7a172862733.webp",
  "result_format": "GLB",
  "enable_pbr": false
}
{request_id, outputs:[{type:"model3d", url, content_type, file_name, file_size, metadata?}], metadata}
tencent_hunyuan_3d_pro
3D
POST /v1/queue/tencent_hunyuan_3d_pro
GET  /v1/queue/tencent_hunyuan_3d_pro/requests/{request_id}/status
GET  /v1/queue/tencent_hunyuan_3d_pro/requests/{request_id}/response
prompt string, 可选 image_base64 string, 可选 image_url string, 可选 face_count int, 可选 generate_type string, 可选 polygon_type string, 可选 enable_pbr bool, 可选 multi_view_images array, 可选
{
  "image_url": "https://image.cdn2.seaart.me/2026-06-01/d8ejq1de878c739e2lrg/995ff4fe1eeec10a06c3c7a172862733.webp",
  "face_count": 3000,
  "enable_pbr": false
}
{request_id, outputs:[{type:"model3d", url, content_type, file_name, file_size, metadata?}], metadata}
tencent_hunyuan_3d_rapid
3D
POST /v1/queue/tencent_hunyuan_3d_rapid
GET  /v1/queue/tencent_hunyuan_3d_rapid/requests/{request_id}/status
GET  /v1/queue/tencent_hunyuan_3d_rapid/requests/{request_id}/response
prompt string, 可选 image_base64 string, 可选 image_url string, 可选 result_format string, 可选 enable_pbr bool, 可选 multi_view_images array, 可选
{
  "image_url": "https://image.cdn2.seaart.me/2026-06-01/d8ejq1de878c739e2lrg/995ff4fe1eeec10a06c3c7a172862733.webp",
  "result_format": "GLB",
  "enable_pbr": false
}
{request_id, outputs:[{type:"model3d", url, content_type, file_name, file_size, metadata?}], metadata}