## Basic tool info Model name: Wan-AI/Wan2.2-T2V-A14B Model description: Wan2.2-T2V-A14B model, which supports generating 5s videos at both 480P and 720P resolutions. Built with a Mixture-of-Experts (MoE) architecture, it delivers outstanding video generation quality. Model cover: https://cdn.wiro.ai/uploads/models/Wan-AI-Wan2.2-T2V-A14B-cover.mp4 Model categories: - text-to-video - quick-showcase - persistent - model - h100 - checkpoint-folder - wan2.2 Model tags: - video - text-to-video - realistic Run Task Endpoint (POST): https://api.wiro.ai/v1/Run/wan-ai/wan2-2-t2v-a14b Get Task Detail Endpoint (POST): https://api.wiro.ai/v1/Task/Detail ## Model Inputs: - name: prompt label: prompt help: The prompt to generate the image or video from. type: textarea default: Nighttime, high-contrast neon lighting, cinematic street scene. Rain falls softly onto a quiet city alley, reflecting pink and blue neon signs in puddles. A lone figure walks slowly under an umbrella, their silhouette passing through shafts of light. The camera remains still, focusing on the reflections and atmosphere. - name: negativePrompt label: negativeprompt help: Specify what to exclude from the output. type: textarea default: bad quality, unnatural rain, low detail in reflections - name: resolution label: resolution help: Resolution. type: select default: 480P options: - value: "480P" label: 480P - value: "580P" label: 580P - value: "720P" label: 720P - name: aspectRatio label: Aspect Ratio help: Aspect Ratio. type: select default: 16:9 options: - value: "16:9" label: 16:9 - value: "9:16" label: 9:16 - value: "1:1" label: 1:1 - name: numFrames label: Number of Frames help: How many frames to sample from a image or video. The number should be 4n+1 type: number default: 81 - name: scale label: guidancescale help: guidancescale-help type: float default: 4.0 - name: scale_2 label: Guidance Scale 2 help: guidancescale-help type: float default: 3.0 - name: steps label: inferencesteps help: The sampling steps. type: number default: 25 - name: fps label: fps help: Frames Per Second type: number default: 16 - name: seed label: seed help: seed-help type: text default: 42 ## Model Parameter Inspires: - prompt: Two anthropomorphic cats in comfy boxing gear and bright gloves fight intensely on a spotlighted stage. - prompt: a close-up of a young girl in a red hoodie captures her striking a match on a cold winter night. The sky is deep and dark, while fresh snow blankets the ground, with delicate flakes still drifting down. The tiny flame flickers, casting a warm, fleeting glow on her face as she watches it intently. - prompt: A cinematic, high-octane car race between a sleek red Ferrari and a powerful blue Bugatti on a winding mountain road at dusk. Dynamic lighting, intense motion blur, and a dramatic sunset sky highlight the speed and adrenaline of the race in ultra-realistic, hyper-detailed style. - prompt: Illustrated artwork of a dark green-toned koala playing on a tree branch surrounded by lush, vibrant rainforest foliage under dappled sunlight. - prompt: A lush alien jungle on an uncharted planet, illuminated by the bioluminescent glow of exotic plant life. Towering, spiral-shaped trees pulse with electric-blue veins, while rivers of shimmering liquid metal flow between the dense foliage. Strange but intelligent creatures move through the underbrush, their eyes reflecting the soft glow of floating orbs that hover like fireflies. In the sky, a ringed planet dominates the horizon, casting a surreal golden light over the landscape. A team of futuristic explorers, wearing advanced space suits, carefully navigate through the terrain, scanning for signs of ancient alien technology embedded in massive stone ruins covered in glowing glyphs. The environment is ultra-detailed, with cinematic textures, hyper-realistic water reflections, and dynamic weather effects creating an immersive, otherworldly experience - prompt: Nighttime, high-contrast neon lighting, cinematic street scene. Rain falls softly onto a quiet city alley, reflecting pink and blue neon signs in puddles. A lone figure walks slowly under an umbrella, their silhouette passing through shafts of light. The camera remains still, focusing on the reflections and atmosphere. - negativePrompt: bad quality, unnatural rain, low detail in reflections - prompt: Snowy twilight, cinematic close-up. A lantern rests on a wooden porch, its warm glow flickering against a backdrop of softly falling snow. The camera stays still as the snow builds on the lantern’s top, with faint warm light reflecting off the surrounding snow-covered railing. - negativePrompt: bad quality, unrealistic snow, low light detail ## Integration Header Prepare ```bash # Sign up Wiro dashboard and create project export YOUR_API_KEY="{{useSelectedProjectAPIKey}}"; export YOUR_API_SECRET="XXXXXXXXX"; # unix time or any random integer value export NONCE=$(date +%s); # hmac-SHA256 (YOUR_API_SECRET+Nonce) with YOUR_API_KEY export SIGNATURE="$(echo -n "${YOUR_API_SECRET}${NONCE}" | openssl dgst -sha256 -hmac "${YOUR_API_KEY}")"; ``` ## Run Command - Make HTTP Post Request ```bash curl -X POST "https://api.wiro.ai/v1/Run/wan-ai/wan2-2-t2v-a14b" -H "Content-Type: multipart/form-data" -H "x-api-key: ${YOUR_API_KEY}" -H "x-nonce: ${NONCE}" -H "x-signature: ${SIGNATURE}" -d '{ "prompt": "Nighttime, high-contrast neon lighting, cinematic street scene. Rain falls softly onto a quiet city alley, reflecting pink and blue neon signs in puddles. A lone figure walks slowly under an umbrella, their silhouette passing through shafts of light. The camera remains still, focusing on the reflections and atmosphere.", "negativePrompt": "bad quality, unnatural rain, low detail in reflections", "resolution": "480P", "aspectRatio": "16:9", "numFrames": 81, "scale": "4.0", "scale_2": "3.0", "steps": 25, "fps": 16, "seed": "42", "callbackUrl": "You can provide a callback URL; Wiro will send a POST request to it when the task is completed." }'; ``` ## Run Command - Response ```json { "errors": [], "taskid": "2221", "socketaccesstoken": "eDcCm5yyUfIvMFspTwww49OUfgXkQt", "result": true } ``` ## Get Task Detail - Make HTTP Post Request with Task ID ```bash curl -X POST "https://api.wiro.ai/v1/Task/Detail" -H "Content-Type: multipart/form-data" -H "x-api-key: ${YOUR_API_KEY}" -H "x-nonce: ${NONCE}" -H "x-signature: ${SIGNATURE}" -d '{ "taskid": "2221" }'; ``` ## Get Task Detail - Make HTTP Post Request with Socket Access Token ```bash curl -X POST "https://api.wiro.ai/v1/Task/Detail" -H "Content-Type: multipart/form-data" -H "x-api-key: ${YOUR_API_KEY}" -H "x-nonce: ${NONCE}" -H "x-signature: ${SIGNATURE}" -d '{ "tasktoken": "eDcCm5yyUfIvMFspTwww49OUfgXkQt" }'; ``` ## Get Task Detail - Response ```json { "total": "1", "errors": [], "tasklist": [ { "id": "2221", "uuid": "15bce51f-442f-4f44-a71d-13c6374a62bd", "socketaccesstoken": "eDcCm5yyUfIvMFspTwww49OUfgXkQt", "parameters": {}, "debugoutput": "", "debugerror": "", "starttime": "1734513809", "endtime": "1734513813", "elapsedseconds": "6.0000", "status": "task_postprocess_end", "createtime": "1734513807", "canceltime": "0", "assigntime": "1734513807", "accepttime": "1734513807", "preprocessstarttime": "1734513807", "preprocessendtime": "1734513807", "postprocessstarttime": "1734513813", "postprocessendtime": "1734513814", "outputs": [ { "id": "6bc392c93856dfce3a7d1b4261e15af3", "name": "0.png", "contenttype": "image/png", "parentid": "6c1833f39da71e6175bf292b18779baf", "uuid": "15bce51f-442f-4f44-a71d-13c6374a62bd", "size": "202472", "addedtime": "1734513812", "modifiedtime": "1734513812", "accesskey": "dFKlMApaSgMeHKsJyaDeKrefcHahUK", "url": "https://cdn1.wiro.ai/6a6af820-c5050aee-40bd7b83-a2e186c6-7f61f7da-3894e49c-fc0eeb66-9b500fe2/0.png" } ], "size": "202472" } ], "result": true } ``` ## Kill Task - Make HTTP Post Request with Task ID ```bash curl -X POST "https://api.wiro.ai/v1/Task/Kill" -H "Content-Type: multipart/form-data" -H "x-api-key: ${YOUR_API_KEY}" -H "x-nonce: ${NONCE}" -H "x-signature: ${SIGNATURE}" -d '{ "taskid": "534574" }'; ``` ## Kill Task - Make HTTP Post Request with Socket Access Token ```bash curl -X POST "https://api.wiro.ai/v1/Task/Kill" -H "Content-Type: multipart/form-data" -H "x-api-key: ${YOUR_API_KEY}" -H "x-nonce: ${NONCE}" -H "x-signature: ${SIGNATURE}" -d '{ "socketaccesstoken": "ZpYote30on42O4jjHXNiKmrWAZqbRE" }'; ``` ## Kill Task - Response ```json { "errors": [], "tasklist": [ { "id": "534574", "uuid": "15bce51f-442f-4f44-a71d-13c6374a62bd", "name": "", "socketaccesstoken": "ZpYote30on42O4jjHXNiKmrWAZqbRE", "parameters": { "inputImage": "https://api.wiro.ai/v1/File/mCmUXgZLG1FNjjjwmbtPFr2LVJA112/inputImage-6060136.png" }, "debugoutput": "", "debugerror": "", "starttime": "1734513809", "endtime": "1734513813", "elapsedseconds": "6.0000", "status": "task_cancel", "cps": "0.000585000000", "totalcost": "0.003510000000", "guestid": null, "projectid": "699", "modelid": "598", "description": "", "basemodelid": "0", "runtype": "model", "modelfolderid": "", "modelfileid": "", "callbackurl": "", "marketplaceid": null, "createtime": "1734513807", "canceltime": "0", "assigntime": "1734513807", "accepttime": "1734513807", "preprocessstarttime": "1734513807", "preprocessendtime": "1734513807", "postprocessstarttime": "1734513813", "postprocessendtime": "1734513814", "pexit": "0", "categories": "["tool","image-to-image","quick-showcase","compare-landscape"]", "outputs": [ { "id": "6bc392c93856dfce3a7d1b4261e15af3", "name": "0.png", "contenttype": "image/png", "parentid": "6c1833f39da71e6175bf292b18779baf", "uuid": "15bce51f-442f-4f44-a71d-13c6374a62bd", "size": "202472", "addedtime": "1734513812", "modifiedtime": "1734513812", "accesskey": "dFKlMApaSgMeHKsJyaDeKrefcHahUK", "foldercount": "0", "filecount": "0", "ispublic": 0, "expiretime": null, "url": "https://cdn1.wiro.ai/6a6af820-c5050aee-40bd7b83-a2e186c6-7f61f7da-3894e49c-fc0eeb66-9b500fe2/0.png" } ], "size": "202472" } ], "result": true } ``` ## Cancel Task - Make HTTP Post Request (For tasks on queue) ```bash curl -X POST "https://api.wiro.ai/v1/Task/Cancel" -H "Content-Type: multipart/form-data" -H "x-api-key: ${YOUR_API_KEY}" -H "x-nonce: ${NONCE}" -H "x-signature: ${SIGNATURE}" -d '{ "taskid": "634574" }'; ``` ## Cancel Task - Response ```json { "errors": [], "tasklist": [ { "id": "634574", "uuid": "15bce51f-442f-4f44-a71d-13c6374a62bd", "name": "", "socketaccesstoken": "ZpYote30on42O4jjHXNiKmrWAZqbRE", "parameters": { "inputImage": "https://api.wiro.ai/v1/File/mCmUXgZLG1FNjjjwmbtPFr2LVJA112/inputImage-6060136.png" }, "debugoutput": "", "debugerror": "", "starttime": "1734513809", "endtime": "1734513813", "elapsedseconds": "6.0000", "status": "task_cancel", "cps": "0.000585000000", "totalcost": "0.003510000000", "guestid": null, "projectid": "699", "modelid": "598", "description": "", "basemodelid": "0", "runtype": "model", "modelfolderid": "", "modelfileid": "", "callbackurl": "", "marketplaceid": null, "createtime": "1734513807", "canceltime": "0", "assigntime": "1734513807", "accepttime": "1734513807", "preprocessstarttime": "1734513807", "preprocessendtime": "1734513807", "postprocessstarttime": "1734513813", "postprocessendtime": "1734513814", "pexit": "0", "categories": "["tool","image-to-image","quick-showcase","compare-landscape"]", "outputs": [ { "id": "6bc392c93856dfce3a7d1b4261e15af3", "name": "0.png", "contenttype": "image/png", "parentid": "6c1833f39da71e6175bf292b18779baf", "uuid": "15bce51f-442f-4f44-a71d-13c6374a62bd", "size": "202472", "addedtime": "1734513812", "modifiedtime": "1734513812", "accesskey": "dFKlMApaSgMeHKsJyaDeKrefcHahUK", "foldercount": "0", "filecount": "0", "ispublic": 0, "expiretime": null, "url": "https://cdn1.wiro.ai/6a6af820-c5050aee-40bd7b83-a2e186c6-7f61f7da-3894e49c-fc0eeb66-9b500fe2/0.png" } ], "size": "202472" } ], "result": true } ``` ## Task Status Information This section defines the possible task status values returned by the API when polling for task completion. ### Completed Task Statuses (Polling can stop) These indicate that the task has reached a terminal state — either success or failure. Once any of these is received, polling should stop. - task_postprocess_end : Task completed successfully and post-processing is done. - task_cancel : Task was cancelled by the user or system. ### Running Task Statuses (Continue polling) These statuses indicate that the task is still in progress. Polling should continue if one of these is returned. - task_queue : Task is waiting in the queue. - task_accept : Task has been accepted for processing. - task_assign : Task is being assigned to a worker. - task_preprocess_start : Preprocessing is starting. - task_preprocess_end : Preprocessing is complete. - task_start : Task execution has started. - task_output : Output is being generated.