Wan Text to Video
About
Endpoint for generating a video from text using the Wan Turbo model.
1. Calling the API#
Install the client#
The client provides a convenient way to interact with the model API.
npm install --save @fal-ai/clientMigrate to @fal-ai/client
The @fal-ai/serverless-client package has been deprecated in favor of @fal-ai/client. Please check the migration guide for more information.
Setup your API Key#
Set FAL_KEY as an environment variable in your runtime.
export FAL_KEY="YOUR_API_KEY"Submit a request#
The client API handles the API submit protocol. It will handle the request status updates and return the result when the request is completed.
import { fal } from "@fal-ai/client";
const result = await fal.subscribe("fal-ai/wan/v2.2-a14b/text-to-video/turbo", {
  input: {
    prompt: "A medium shot establishes a modern, minimalist office setting: clean lines, muted grey walls, and polished wood surfaces. The focus shifts to a close-up on a woman in sharp, navy blue business attire. Her crisp white blouse contrasts with the deep blue of her tailored suit jacket. The subtle texture of the fabric is visibleāa fine weave with a slight sheen. Her expression is serious, yet engaging, as she speaks to someone unseen just beyond the frame. Close-up on her eyes, showing the intensity of her gaze and the fine lines around them that hint at experience and focus. Her lips are slightly parted, as if mid-sentence. The light catches the subtle highlights in her auburn hair, meticulously styled. Note the slight catch of light on the silver band of her watch. High resolution 4k"
  },
  logs: true,
  onQueueUpdate: (update) => {
    if (update.status === "IN_PROGRESS") {
      update.logs.map((log) => log.message).forEach(console.log);
    }
  },
});
console.log(result.data);
console.log(result.requestId);2. Authentication#
The API uses an API Key for authentication. It is recommended you set the FAL_KEY environment variable in your runtime when possible.
API Key#
import { fal } from "@fal-ai/client";
fal.config({
  credentials: "YOUR_FAL_KEY"
});Protect your API Key
When running code on the client-side (e.g. in a browser, mobile app or GUI applications), make sure to not expose your FAL_KEY. Instead, use a server-side proxy to make requests to the API. For more information, check out our server-side integration guide.
3. Queue#
Submit a request#
The client API provides a convenient way to submit requests to the model.
import { fal } from "@fal-ai/client";
const { request_id } = await fal.queue.submit("fal-ai/wan/v2.2-a14b/text-to-video/turbo", {
  input: {
    prompt: "A medium shot establishes a modern, minimalist office setting: clean lines, muted grey walls, and polished wood surfaces. The focus shifts to a close-up on a woman in sharp, navy blue business attire. Her crisp white blouse contrasts with the deep blue of her tailored suit jacket. The subtle texture of the fabric is visibleāa fine weave with a slight sheen. Her expression is serious, yet engaging, as she speaks to someone unseen just beyond the frame. Close-up on her eyes, showing the intensity of her gaze and the fine lines around them that hint at experience and focus. Her lips are slightly parted, as if mid-sentence. The light catches the subtle highlights in her auburn hair, meticulously styled. Note the slight catch of light on the silver band of her watch. High resolution 4k"
  },
  webhookUrl: "https://optional.webhook.url/for/results",
});Fetch request status#
You can fetch the status of a request to check if it is completed or still in progress.
import { fal } from "@fal-ai/client";
const status = await fal.queue.status("fal-ai/wan/v2.2-a14b/text-to-video/turbo", {
  requestId: "764cabcf-b745-4b3e-ae38-1200304cf45b",
  logs: true,
});Get the result#
Once the request is completed, you can fetch the result. See the Output Schema for the expected result format.
import { fal } from "@fal-ai/client";
const result = await fal.queue.result("fal-ai/wan/v2.2-a14b/text-to-video/turbo", {
  requestId: "764cabcf-b745-4b3e-ae38-1200304cf45b"
});
console.log(result.data);
console.log(result.requestId);4. Files#
Some attributes in the API accept file URLs as input. Whenever that's the case you can pass your own URL or a Base64 data URI.
Data URI (base64)#
You can pass a Base64 data URI as a file input. The API will handle the file decoding for you. Keep in mind that for large files, this alternative although convenient can impact the request performance.
Hosted files (URL)#
You can also pass your own URLs as long as they are publicly accessible. Be aware that some hosts might block cross-site requests, rate-limit, or consider the request as a bot.
Uploading files#
We provide a convenient file storage that allows you to upload files and use them in your requests. You can upload files using the client API and use the returned URL in your requests.
import { fal } from "@fal-ai/client";
const file = new File(["Hello, World!"], "hello.txt", { type: "text/plain" });
const url = await fal.storage.upload(file);Auto uploads
The client will auto-upload the file for you if you pass a binary object (e.g. File, Data).
Read more about file handling in our file upload guide.
5. Schema#
Input#
promptĀ string* requiredThe text prompt to guide video generation.
seedĀ integerRandom seed for reproducibility. If None, a random seed is chosen.
resolutionĀ ResolutionEnumResolution of the generated video (480p, 580p, or 720p). Default value: "720p"
Possible enum values: 480p, 580p, 720p
aspect_ratioĀ AspectRatioEnumAspect ratio of the generated video (16:9 or 9:16). Default value: "16:9"
Possible enum values: 16:9, 9:16, 1:1
enable_safety_checkerĀ booleanIf set to true, input data will be checked for safety before processing.
enable_output_safety_checkerĀ booleanIf set to true, output video will be checked for safety after generation.
enable_prompt_expansionĀ booleanWhether to enable prompt expansion. This will use a large language model to expand the prompt with additional details while maintaining the original meaning.
accelerationĀ AccelerationEnumAcceleration level to use. The more acceleration, the faster the generation, but with lower quality. The recommended value is 'regular'. Default value: "regular"
Possible enum values: none, regular
video_qualityĀ VideoQualityEnumThe quality of the output video. Higher quality means better visual quality but larger file size. Default value: "high"
Possible enum values: low, medium, high, maximum
video_write_modeĀ VideoWriteModeEnumThe write mode of the output video. Faster write mode means faster results but larger file size, balanced write mode is a good compromise between speed and quality, and small write mode is the slowest but produces the smallest file size. Default value: "balanced"
Possible enum values: fast, balanced, small
{
  "prompt": "A medium shot establishes a modern, minimalist office setting: clean lines, muted grey walls, and polished wood surfaces. The focus shifts to a close-up on a woman in sharp, navy blue business attire. Her crisp white blouse contrasts with the deep blue of her tailored suit jacket. The subtle texture of the fabric is visibleāa fine weave with a slight sheen. Her expression is serious, yet engaging, as she speaks to someone unseen just beyond the frame. Close-up on her eyes, showing the intensity of her gaze and the fine lines around them that hint at experience and focus. Her lips are slightly parted, as if mid-sentence. The light catches the subtle highlights in her auburn hair, meticulously styled. Note the slight catch of light on the silver band of her watch. High resolution 4k",
  "resolution": "720p",
  "aspect_ratio": "16:9",
  "enable_safety_checker": true,
  "enable_output_safety_checker": false,
  "enable_prompt_expansion": false,
  "acceleration": "regular",
  "video_quality": "high",
  "video_write_mode": "balanced"
}Output#
The generated video file.
promptĀ stringThe text prompt used for video generation. Default value: ""
seedĀ integer* requiredThe seed used for generation.
{
  "video": {
    "url": "https://storage.googleapis.com/falserverless/gallery/wan-t2v-turbo.mp4"
  },
  "prompt": "A medium shot establishes a modern, minimalist office setting: clean lines, muted grey walls, and polished wood surfaces. The focus shifts to a close-up on a woman in sharp, navy blue business attire. Her crisp white blouse contrasts with the deep blue of her tailored suit jacket. The subtle texture of the fabric is visibleāa fine weave with a slight sheen. Her expression is serious, yet engaging, as she speaks to someone unseen just beyond the frame. Close-up on her eyes, showing the intensity of her gaze and the fine lines around them that hint at experience and focus. Her lips are slightly parted, as if mid-sentence. The light catches the subtle highlights in her auburn hair, meticulously styled. Note the slight catch of light on the silver band of her watch. High resolution 4k"
}Other types#
WanV2VResponse#
The generated video file.
promptĀ stringThe text prompt used for video generation. Default value: ""
seedĀ integer* requiredThe seed used for generation.
WanTurboI2VResponse#
The generated video file.
promptĀ stringThe text prompt used for video generation. Default value: ""
seedĀ integer* requiredThe seed used for generation.
WanSmallT2VRequest#
promptĀ string* requiredThe text prompt to guide video generation.
negative_promptĀ stringNegative prompt for video generation. Default value: ""
num_framesĀ integerNumber of frames to generate. Must be between 17 to 161 (inclusive). Default value: 81
frames_per_secondĀ integerFrames per second of the generated video. Must be between 4 to 60. When using interpolation and adjust_fps_for_interpolation is set to true (default true,) the final FPS will be multiplied by the number of interpolated frames plus one. For example, if the generated frames per second is 16 and the number of interpolated frames is 1, the final frames per second will be 32. If adjust_fps_for_interpolation is set to false, this value will be used as-is. Default value: 24
seedĀ integerRandom seed for reproducibility. If None, a random seed is chosen.
resolutionĀ ResolutionEnumResolution of the generated video (580p or 720p). Default value: "720p"
Possible enum values: 580p, 720p
aspect_ratioĀ AspectRatioEnumAspect ratio of the generated video (16:9 or 9:16). Default value: "16:9"
Possible enum values: 16:9, 9:16, 1:1
num_inference_stepsĀ integerNumber of inference steps for sampling. Higher values give better quality but take longer. Default value: 40
enable_safety_checkerĀ booleanIf set to true, input data will be checked for safety before processing.
enable_output_safety_checkerĀ booleanIf set to true, output video will be checked for safety after generation.
enable_prompt_expansionĀ booleanWhether to enable prompt expansion. This will use a large language model to expand the prompt with additional details while maintaining the original meaning.
guidance_scaleĀ floatClassifier-free guidance scale. Higher values give better adherence to the prompt but may decrease quality. Default value: 3.5
shiftĀ floatShift value for the video. Must be between 1.0 and 10.0. Default value: 5
interpolator_modelĀ InterpolatorModelEnumThe model to use for frame interpolation. If None, no interpolation is applied. Default value: "film"
Possible enum values: none, film, rife
num_interpolated_framesĀ integerNumber of frames to interpolate between each pair of generated frames. Must be between 0 and 4.
adjust_fps_for_interpolationĀ booleanIf true, the number of frames per second will be multiplied by the number of interpolated frames plus one. For example, if the generated frames per second is 16 and the number of interpolated frames is 1, the final frames per second will be 32. If false, the passed frames per second will be used as-is. Default value: true
video_qualityĀ VideoQualityEnumThe quality of the output video. Higher quality means better visual quality but larger file size. Default value: "high"
Possible enum values: low, medium, high, maximum
video_write_modeĀ VideoWriteModeEnumThe write mode of the output video. Faster write mode means faster results but larger file size, balanced write mode is a good compromise between speed and quality, and small write mode is the slowest but produces the smallest file size. Default value: "balanced"
Possible enum values: fast, balanced, small
WanI2VRequest#
image_urlĀ string* requiredURL of the input image. If the input image does not match the chosen aspect ratio, it is resized and center cropped.
promptĀ string* requiredThe text prompt to guide video generation.
num_framesĀ integerNumber of frames to generate. Must be between 17 to 161 (inclusive). Default value: 81
frames_per_secondĀ integerFrames per second of the generated video. Must be between 4 to 60. When using interpolation and adjust_fps_for_interpolation is set to true (default true,) the final FPS will be multiplied by the number of interpolated frames plus one. For example, if the generated frames per second is 16 and the number of interpolated frames is 1, the final frames per second will be 32. If adjust_fps_for_interpolation is set to false, this value will be used as-is. Default value: 16
negative_promptĀ stringNegative prompt for video generation. Default value: ""
seedĀ integerRandom seed for reproducibility. If None, a random seed is chosen.
resolutionĀ ResolutionEnumResolution of the generated video (480p, 580p, or 720p). Default value: "720p"
Possible enum values: 480p, 580p, 720p
aspect_ratioĀ AspectRatioEnumAspect ratio of the generated video. If 'auto', the aspect ratio will be determined automatically based on the input image. Default value: "auto"
Possible enum values: auto, 16:9, 9:16, 1:1
num_inference_stepsĀ integerNumber of inference steps for sampling. Higher values give better quality but take longer. Default value: 27
enable_safety_checkerĀ booleanIf set to true, input data will be checked for safety before processing.
enable_output_safety_checkerĀ booleanIf set to true, output video will be checked for safety after generation.
enable_prompt_expansionĀ booleanWhether to enable prompt expansion. This will use a large language model to expand the prompt with additional details while maintaining the original meaning.
accelerationĀ AccelerationEnumAcceleration level to use. The more acceleration, the faster the generation, but with lower quality. The recommended value is 'regular'. Default value: "regular"
Possible enum values: none, regular
guidance_scaleĀ floatClassifier-free guidance scale. Higher values give better adherence to the prompt but may decrease quality. Default value: 3.5
guidance_scale_2Ā floatGuidance scale for the second stage of the model. This is used to control the adherence to the prompt in the second stage of the model. Default value: 3.5
shiftĀ floatShift value for the video. Must be between 1.0 and 10.0. Default value: 5
interpolator_modelĀ InterpolatorModelEnumThe model to use for frame interpolation. If None, no interpolation is applied. Default value: "film"
Possible enum values: none, film, rife
num_interpolated_framesĀ integerNumber of frames to interpolate between each pair of generated frames. Must be between 0 and 4. Default value: 1
adjust_fps_for_interpolationĀ booleanIf true, the number of frames per second will be multiplied by the number of interpolated frames plus one. For example, if the generated frames per second is 16 and the number of interpolated frames is 1, the final frames per second will be 32. If false, the passed frames per second will be used as-is. Default value: true
video_qualityĀ VideoQualityEnumThe quality of the output video. Higher quality means better visual quality but larger file size. Default value: "high"
Possible enum values: low, medium, high, maximum
video_write_modeĀ VideoWriteModeEnumThe write mode of the output video. Faster write mode means faster results but larger file size, balanced write mode is a good compromise between speed and quality, and small write mode is the slowest but produces the smallest file size. Default value: "balanced"
Possible enum values: fast, balanced, small
end_image_urlĀ stringURL of the end image.
WanLoRAT2VRequest#
promptĀ string* requiredThe text prompt to guide video generation.
negative_promptĀ stringNegative prompt for video generation. Default value: ""
num_framesĀ integerNumber of frames to generate. Must be between 17 to 161 (inclusive). Default value: 81
frames_per_secondĀ integerFrames per second of the generated video. Must be between 4 to 60. When using interpolation and adjust_fps_for_interpolation is set to true (default true,) the final FPS will be multiplied by the number of interpolated frames plus one. For example, if the generated frames per second is 16 and the number of interpolated frames is 1, the final frames per second will be 32. If adjust_fps_for_interpolation is set to false, this value will be used as-is. Default value: 16
seedĀ integerRandom seed for reproducibility. If None, a random seed is chosen.
resolutionĀ ResolutionEnumResolution of the generated video (480p, 580p, or 720p). Default value: "720p"
Possible enum values: 480p, 580p, 720p
aspect_ratioĀ AspectRatioEnumAspect ratio of the generated video (16:9 or 9:16). Default value: "16:9"
Possible enum values: 16:9, 9:16, 1:1
num_inference_stepsĀ integerNumber of inference steps for sampling. Higher values give better quality but take longer. Default value: 27
enable_safety_checkerĀ booleanIf set to true, input data will be checked for safety before processing.
enable_output_safety_checkerĀ booleanIf set to true, output video will be checked for safety after generation.
enable_prompt_expansionĀ booleanWhether to enable prompt expansion. This will use a large language model to expand the prompt with additional details while maintaining the original meaning.
accelerationĀ AccelerationEnumAcceleration level to use. The more acceleration, the faster the generation, but with lower quality. The recommended value is 'regular'. Default value: "regular"
Possible enum values: none, regular
guidance_scaleĀ floatClassifier-free guidance scale. Higher values give better adherence to the prompt but may decrease quality. Default value: 3.5
guidance_scale_2Ā floatGuidance scale for the second stage of the model. This is used to control the adherence to the prompt in the second stage of the model. Default value: 4
shiftĀ floatShift value for the video. Must be between 1.0 and 10.0. Default value: 5
interpolator_modelĀ InterpolatorModelEnumThe model to use for frame interpolation. If None, no interpolation is applied. Default value: "film"
Possible enum values: none, film, rife
num_interpolated_framesĀ integerNumber of frames to interpolate between each pair of generated frames. Must be between 0 and 4. Default value: 1
adjust_fps_for_interpolationĀ booleanIf true, the number of frames per second will be multiplied by the number of interpolated frames plus one. For example, if the generated frames per second is 16 and the number of interpolated frames is 1, the final frames per second will be 32. If false, the passed frames per second will be used as-is. Default value: true
video_qualityĀ VideoQualityEnumThe quality of the output video. Higher quality means better visual quality but larger file size. Default value: "high"
Possible enum values: low, medium, high, maximum
video_write_modeĀ VideoWriteModeEnumThe write mode of the output video. Faster write mode means faster results but larger file size, balanced write mode is a good compromise between speed and quality, and small write mode is the slowest but produces the smallest file size. Default value: "balanced"
Possible enum values: fast, balanced, small
LoRA weights to be used in the inference.
reverse_videoĀ booleanIf true, the video will be reversed.
File#
urlĀ string* requiredThe URL where the file can be downloaded from.
content_typeĀ stringThe mime type of the file.
file_nameĀ stringThe name of the file. It will be auto-generated if not provided.
file_sizeĀ integerThe size of the file in bytes.
file_dataĀ stringFile data
WanDistillT2VRequest#
promptĀ string* requiredThe text prompt to guide video generation.
num_framesĀ integerNumber of frames to generate. Must be between 17 to 161 (inclusive). Default value: 81
frames_per_secondĀ integerFrames per second of the generated video. Must be between 4 to 60. When using interpolation and adjust_fps_for_interpolation is set to true (default true,) the final FPS will be multiplied by the number of interpolated frames plus one. For example, if the generated frames per second is 16 and the number of interpolated frames is 1, the final frames per second will be 32. If adjust_fps_for_interpolation is set to false, this value will be used as-is. Default value: 24
seedĀ integerRandom seed for reproducibility. If None, a random seed is chosen.
resolutionĀ ResolutionEnumResolution of the generated video (580p or 720p). Default value: "720p"
Possible enum values: 580p, 720p
aspect_ratioĀ AspectRatioEnumAspect ratio of the generated video (16:9 or 9:16). Default value: "16:9"
Possible enum values: 16:9, 9:16, 1:1
num_inference_stepsĀ integerNumber of inference steps for sampling. Higher values give better quality but take longer. Default value: 40
enable_safety_checkerĀ booleanIf set to true, input data will be checked for safety before processing.
enable_output_safety_checkerĀ booleanIf set to true, output video will be checked for safety after generation.
enable_prompt_expansionĀ booleanWhether to enable prompt expansion. This will use a large language model to expand the prompt with additional details while maintaining the original meaning.
guidance_scaleĀ floatClassifier-free guidance scale. Higher values give better adherence to the prompt but may decrease quality. Default value: 1
shiftĀ floatShift value for the video. Must be between 1.0 and 10.0. Default value: 5
interpolator_modelĀ InterpolatorModelEnumThe model to use for frame interpolation. If None, no interpolation is applied. Default value: "film"
Possible enum values: none, film, rife
num_interpolated_framesĀ integerNumber of frames to interpolate between each pair of generated frames. Must be between 0 and 4.
adjust_fps_for_interpolationĀ booleanIf true, the number of frames per second will be multiplied by the number of interpolated frames plus one. For example, if the generated frames per second is 16 and the number of interpolated frames is 1, the final frames per second will be 32. If false, the passed frames per second will be used as-is. Default value: true
video_qualityĀ VideoQualityEnumThe quality of the output video. Higher quality means better visual quality but larger file size. Default value: "high"
Possible enum values: low, medium, high, maximum
video_write_modeĀ VideoWriteModeEnumThe write mode of the output video. Faster write mode means faster results but larger file size, balanced write mode is a good compromise between speed and quality, and small write mode is the slowest but produces the smallest file size. Default value: "balanced"
Possible enum values: fast, balanced, small
WanSmallI2VResponse#
The generated video file.
promptĀ stringThe text prompt used for video generation. Default value: ""
seedĀ integer* requiredThe seed used for generation.
WanT2VResponse#
The generated video file.
promptĀ stringThe text prompt used for video generation. Default value: ""
seedĀ integer* requiredThe seed used for generation.
WanSmallI2VRequest#
image_urlĀ string* requiredURL of the input image. If the input image does not match the chosen aspect ratio, it is resized and center cropped.
promptĀ string* requiredThe text prompt to guide video generation.
num_framesĀ integerNumber of frames to generate. Must be between 17 to 161 (inclusive). Default value: 81
frames_per_secondĀ integerFrames per second of the generated video. Must be between 4 to 60. When using interpolation and adjust_fps_for_interpolation is set to true (default true,) the final FPS will be multiplied by the number of interpolated frames plus one. For example, if the generated frames per second is 16 and the number of interpolated frames is 1, the final frames per second will be 32. If adjust_fps_for_interpolation is set to false, this value will be used as-is. Default value: 24
negative_promptĀ stringNegative prompt for video generation. Default value: ""
seedĀ integerRandom seed for reproducibility. If None, a random seed is chosen.
resolutionĀ ResolutionEnumResolution of the generated video (580p or 720p). Default value: "720p"
Possible enum values: 580p, 720p
aspect_ratioĀ AspectRatioEnumAspect ratio of the generated video. If 'auto', the aspect ratio will be determined automatically based on the input image. Default value: "auto"
Possible enum values: auto, 16:9, 9:16, 1:1
num_inference_stepsĀ integerNumber of inference steps for sampling. Higher values give better quality but take longer. Default value: 40
enable_safety_checkerĀ booleanIf set to true, input data will be checked for safety before processing.
enable_output_safety_checkerĀ booleanIf set to true, output video will be checked for safety after generation.
enable_prompt_expansionĀ booleanWhether to enable prompt expansion. This will use a large language model to expand the prompt with additional details while maintaining the original meaning.
guidance_scaleĀ floatClassifier-free guidance scale. Higher values give better adherence to the prompt but may decrease quality. Default value: 3.5
shiftĀ floatShift value for the video. Must be between 1.0 and 10.0. Default value: 5
interpolator_modelĀ InterpolatorModelEnumThe model to use for frame interpolation. If None, no interpolation is applied. Default value: "film"
Possible enum values: none, film, rife
num_interpolated_framesĀ integerNumber of frames to interpolate between each pair of generated frames. Must be between 0 and 4.
adjust_fps_for_interpolationĀ booleanIf true, the number of frames per second will be multiplied by the number of interpolated frames plus one. For example, if the generated frames per second is 16 and the number of interpolated frames is 1, the final frames per second will be 32. If false, the passed frames per second will be used as-is. Default value: true
video_qualityĀ VideoQualityEnumThe quality of the output video. Higher quality means better visual quality but larger file size. Default value: "high"
Possible enum values: low, medium, high, maximum
video_write_modeĀ VideoWriteModeEnumThe write mode of the output video. Faster write mode means faster results but larger file size, balanced write mode is a good compromise between speed and quality, and small write mode is the slowest but produces the smallest file size. Default value: "balanced"
Possible enum values: fast, balanced, small
WanAnimateReplaceResponse#
The generated video file.
ZIP archive of generated frames (if requested).
promptĀ string* requiredThe prompt used for generation
seedĀ integer* requiredThe seed used for generation
WanSmallT2VResponse#
The generated video file.
promptĀ stringThe text prompt used for video generation. Default value: ""
seedĀ integer* requiredThe seed used for generation.
ImageSize#
widthĀ integerThe width of the generated image. Default value: 512
heightĀ integerThe height of the generated image. Default value: 512
WanI2IResponse#
The generated image file.
promptĀ stringThe text prompt used for image generation. Default value: ""
seedĀ integer* requiredThe seed used for generation.
WanSmallFastVideoT2VResponse#
The generated video file.
promptĀ stringThe text prompt used for video generation. Default value: ""
seedĀ integer* requiredThe seed used for generation.
WanT2VRequest#
promptĀ string* requiredThe text prompt to guide video generation.
negative_promptĀ stringNegative prompt for video generation. Default value: ""
num_framesĀ integerNumber of frames to generate. Must be between 17 to 161 (inclusive). Default value: 81
frames_per_secondĀ integerFrames per second of the generated video. Must be between 4 to 60. When using interpolation and adjust_fps_for_interpolation is set to true (default true,) the final FPS will be multiplied by the number of interpolated frames plus one. For example, if the generated frames per second is 16 and the number of interpolated frames is 1, the final frames per second will be 32. If adjust_fps_for_interpolation is set to false, this value will be used as-is. Default value: 16
seedĀ integerRandom seed for reproducibility. If None, a random seed is chosen.
resolutionĀ ResolutionEnumResolution of the generated video (480p, 580p, or 720p). Default value: "720p"
Possible enum values: 480p, 580p, 720p
aspect_ratioĀ AspectRatioEnumAspect ratio of the generated video (16:9 or 9:16). Default value: "16:9"
Possible enum values: 16:9, 9:16, 1:1
num_inference_stepsĀ integerNumber of inference steps for sampling. Higher values give better quality but take longer. Default value: 27
enable_safety_checkerĀ booleanIf set to true, input data will be checked for safety before processing.
enable_output_safety_checkerĀ booleanIf set to true, output video will be checked for safety after generation.
enable_prompt_expansionĀ booleanWhether to enable prompt expansion. This will use a large language model to expand the prompt with additional details while maintaining the original meaning.
accelerationĀ AccelerationEnumAcceleration level to use. The more acceleration, the faster the generation, but with lower quality. The recommended value is 'regular'. Default value: "regular"
Possible enum values: none, regular
guidance_scaleĀ floatClassifier-free guidance scale. Higher values give better adherence to the prompt but may decrease quality. Default value: 3.5
guidance_scale_2Ā floatGuidance scale for the second stage of the model. This is used to control the adherence to the prompt in the second stage of the model. Default value: 4
shiftĀ floatShift value for the video. Must be between 1.0 and 10.0. Default value: 5
interpolator_modelĀ InterpolatorModelEnumThe model to use for frame interpolation. If None, no interpolation is applied. Default value: "film"
Possible enum values: none, film, rife
num_interpolated_framesĀ integerNumber of frames to interpolate between each pair of generated frames. Must be between 0 and 4. Default value: 1
adjust_fps_for_interpolationĀ booleanIf true, the number of frames per second will be multiplied by the number of interpolated frames plus one. For example, if the generated frames per second is 16 and the number of interpolated frames is 1, the final frames per second will be 32. If false, the passed frames per second will be used as-is. Default value: true
video_qualityĀ VideoQualityEnumThe quality of the output video. Higher quality means better visual quality but larger file size. Default value: "high"
Possible enum values: low, medium, high, maximum
video_write_modeĀ VideoWriteModeEnumThe write mode of the output video. Faster write mode means faster results but larger file size, balanced write mode is a good compromise between speed and quality, and small write mode is the slowest but produces the smallest file size. Default value: "balanced"
Possible enum values: fast, balanced, small
WanI2IRequest#
image_urlĀ string* requiredURL of the input image.
promptĀ string* requiredThe text prompt to guide image generation.
strengthĀ floatDenoising strength. 1.0 = fully remake; 0.0 = preserve original. Default value: 0.5
negative_promptĀ stringNegative prompt for video generation. Default value: ""
seedĀ integerRandom seed for reproducibility. If None, a random seed is chosen.
aspect_ratioĀ AspectRatioEnumAspect ratio of the generated image. If 'auto', the aspect ratio will be determined automatically based on the input image. Default value: "auto"
Possible enum values: auto, 16:9, 9:16, 1:1
num_inference_stepsĀ integerNumber of inference steps for sampling. Higher values give better quality but take longer. Default value: 27
enable_safety_checkerĀ booleanIf set to true, input data will be checked for safety before processing.
enable_output_safety_checkerĀ booleanIf set to true, output video will be checked for safety after generation.
enable_prompt_expansionĀ booleanWhether to enable prompt expansion. This will use a large language model to expand the prompt with additional details while maintaining the original meaning.
accelerationĀ AccelerationEnumAcceleration level to use. The more acceleration, the faster the generation, but with lower quality. The recommended value is 'regular'. Default value: "regular"
Possible enum values: none, regular
guidance_scaleĀ floatClassifier-free guidance scale. Default value: 3.5
guidance_scale_2Ā floatGuidance scale for the second stage of the model. This is used to control the adherence to the prompt in the second stage of the model. Default value: 4
shiftĀ floatDefault value: 2
Possible enum values: square_hd, square, portrait_4_3, portrait_16_9, landscape_4_3, landscape_16_9
Note: For custom image sizes, you can pass the width and height as an object:
"image_size": {
  "width": 1280,
  "height": 720
}image_formatĀ ImageFormatEnumThe format of the output image. Default value: "jpeg"
Possible enum values: png, jpeg
WanT2IRequest#
promptĀ string* requiredThe text prompt to guide image generation.
negative_promptĀ stringNegative prompt for video generation. Default value: ""
seedĀ integerRandom seed for reproducibility. If None, a random seed is chosen.
num_inference_stepsĀ integerNumber of inference steps for sampling. Higher values give better quality but take longer. Default value: 27
enable_safety_checkerĀ booleanIf set to true, input data will be checked for safety before processing.
enable_output_safety_checkerĀ booleanIf set to true, output video will be checked for safety after generation.
enable_prompt_expansionĀ booleanWhether to enable prompt expansion. This will use a large language model to expand the prompt with additional details while maintaining the original meaning.
accelerationĀ AccelerationEnumAcceleration level to use. The more acceleration, the faster the generation, but with lower quality. The recommended value is 'regular'. Default value: "regular"
Possible enum values: none, regular
guidance_scaleĀ floatClassifier-free guidance scale. Higher values give better adherence to the prompt but may decrease quality. Default value: 3.5
guidance_scale_2Ā floatGuidance scale for the second stage of the model. This is used to control the adherence to the prompt in the second stage of the model. Default value: 4
shiftĀ floatShift value for the image. Must be between 1.0 and 10.0. Default value: 2
The size of the generated image. Default value: square_hd
Possible enum values: square_hd, square, portrait_4_3, portrait_16_9, landscape_4_3, landscape_16_9
Note: For custom image sizes, you can pass the width and height as an object:
"image_size": {
  "width": 1280,
  "height": 720
}WanLoRAI2VRequest#
image_urlĀ string* requiredURL of the input image. If the input image does not match the chosen aspect ratio, it is resized and center cropped.
promptĀ string* requiredThe text prompt to guide video generation.
num_framesĀ integerNumber of frames to generate. Must be between 17 to 161 (inclusive). Default value: 81
frames_per_secondĀ integerFrames per second of the generated video. Must be between 4 to 60. When using interpolation and adjust_fps_for_interpolation is set to true (default true,) the final FPS will be multiplied by the number of interpolated frames plus one. For example, if the generated frames per second is 16 and the number of interpolated frames is 1, the final frames per second will be 32. If adjust_fps_for_interpolation is set to false, this value will be used as-is. Default value: 16
negative_promptĀ stringNegative prompt for video generation. Default value: ""
seedĀ integerRandom seed for reproducibility. If None, a random seed is chosen.
resolutionĀ ResolutionEnumResolution of the generated video (480p, 580p, or 720p). Default value: "720p"
Possible enum values: 480p, 580p, 720p
aspect_ratioĀ AspectRatioEnumAspect ratio of the generated video. If 'auto', the aspect ratio will be determined automatically based on the input image. Default value: "auto"
Possible enum values: auto, 16:9, 9:16, 1:1
num_inference_stepsĀ integerNumber of inference steps for sampling. Higher values give better quality but take longer. Default value: 27
enable_safety_checkerĀ booleanIf set to true, input data will be checked for safety before processing.
enable_output_safety_checkerĀ booleanIf set to true, output video will be checked for safety after generation.
enable_prompt_expansionĀ booleanWhether to enable prompt expansion. This will use a large language model to expand the prompt with additional details while maintaining the original meaning.
accelerationĀ AccelerationEnumAcceleration level to use. The more acceleration, the faster the generation, but with lower quality. The recommended value is 'regular'. Default value: "regular"
Possible enum values: none, regular
guidance_scaleĀ floatClassifier-free guidance scale. Higher values give better adherence to the prompt but may decrease quality. Default value: 3.5
guidance_scale_2Ā floatGuidance scale for the second stage of the model. This is used to control the adherence to the prompt in the second stage of the model. Default value: 4
shiftĀ floatShift value for the video. Must be between 1.0 and 10.0. Default value: 5
interpolator_modelĀ InterpolatorModelEnumThe model to use for frame interpolation. If None, no interpolation is applied. Default value: "film"
Possible enum values: none, film, rife
num_interpolated_framesĀ integerNumber of frames to interpolate between each pair of generated frames. Must be between 0 and 4. Default value: 1
adjust_fps_for_interpolationĀ booleanIf true, the number of frames per second will be multiplied by the number of interpolated frames plus one. For example, if the generated frames per second is 16 and the number of interpolated frames is 1, the final frames per second will be 32. If false, the passed frames per second will be used as-is. Default value: true
video_qualityĀ VideoQualityEnumThe quality of the output video. Higher quality means better visual quality but larger file size. Default value: "high"
Possible enum values: low, medium, high, maximum
video_write_modeĀ VideoWriteModeEnumThe write mode of the output video. Faster write mode means faster results but larger file size, balanced write mode is a good compromise between speed and quality, and small write mode is the slowest but produces the smallest file size. Default value: "balanced"
Possible enum values: fast, balanced, small
LoRA weights to be used in the inference.
reverse_videoĀ booleanIf true, the video will be reversed.
WanAnimateMoveRequest#
video_urlĀ string* requiredURL of the input video.
image_urlĀ string* requiredURL of the input image. If the input image does not match the chosen aspect ratio, it is resized and center cropped.
resolutionĀ ResolutionEnumResolution of the generated video (480p, 580p, or 720p). Default value: "480p"
Possible enum values: 480p, 580p, 720p
seedĀ integerRandom seed for reproducibility. If None, a random seed is chosen.
num_inference_stepsĀ integerNumber of inference steps for sampling. Higher values give better quality but take longer. Default value: 20
enable_safety_checkerĀ booleanIf set to true, input data will be checked for safety before processing.
enable_output_safety_checkerĀ booleanIf set to true, output video will be checked for safety after generation.
shiftĀ floatShift value for the video. Must be between 1.0 and 10.0. Default value: 5
video_qualityĀ VideoQualityEnumThe quality of the output video. Higher quality means better visual quality but larger file size. Default value: "high"
Possible enum values: low, medium, high, maximum
video_write_modeĀ VideoWriteModeEnumThe write mode of the output video. Faster write mode means faster results but larger file size, balanced write mode is a good compromise between speed and quality, and small write mode is the slowest but produces the smallest file size. Default value: "balanced"
Possible enum values: fast, balanced, small
return_frames_zipĀ booleanIf true, also return a ZIP archive containing per-frame images generated on GPU (lossless).
WanLoRAT2IRequest#
promptĀ string* requiredThe text prompt to guide image generation.
negative_promptĀ stringNegative prompt for video generation. Default value: ""
seedĀ integerRandom seed for reproducibility. If None, a random seed is chosen.
num_inference_stepsĀ integerNumber of inference steps for sampling. Higher values give better quality but take longer. Default value: 27
enable_safety_checkerĀ booleanIf set to true, input data will be checked for safety before processing.
enable_output_safety_checkerĀ booleanIf set to true, output video will be checked for safety after generation.
enable_prompt_expansionĀ booleanWhether to enable prompt expansion. This will use a large language model to expand the prompt with additional details while maintaining the original meaning.
accelerationĀ AccelerationEnumAcceleration level to use. The more acceleration, the faster the generation, but with lower quality. The recommended value is 'regular'. Default value: "regular"
Possible enum values: none, regular
guidance_scaleĀ floatClassifier-free guidance scale. Higher values give better adherence to the prompt but may decrease quality. Default value: 3.5
guidance_scale_2Ā floatGuidance scale for the second stage of the model. This is used to control the adherence to the prompt in the second stage of the model. Default value: 4
shiftĀ floatShift value for the image. Must be between 1.0 and 10.0. Default value: 2
LoRA weights to be used in the inference.
reverse_videoĀ booleanIf true, the video will be reversed.
The size of the generated image. Default value: square_hd
Possible enum values: square_hd, square, portrait_4_3, portrait_16_9, landscape_4_3, landscape_16_9
Note: For custom image sizes, you can pass the width and height as an object:
"image_size": {
  "width": 1280,
  "height": 720
}image_formatĀ ImageFormatEnumThe format of the output image. Default value: "jpeg"
Possible enum values: png, jpeg
WanSmallT2IRequest#
promptĀ string* requiredThe text prompt to guide image generation.
negative_promptĀ stringNegative prompt for video generation. Default value: ""
seedĀ integerRandom seed for reproducibility. If None, a random seed is chosen.
num_inference_stepsĀ integerNumber of inference steps for sampling. Higher values give better quality but take longer. Default value: 40
enable_safety_checkerĀ booleanIf set to true, input data will be checked for safety before processing.
enable_output_safety_checkerĀ booleanIf set to true, output video will be checked for safety after generation.
enable_prompt_expansionĀ booleanWhether to enable prompt expansion. This will use a large language model to expand the prompt with additional details while maintaining the original meaning.
guidance_scaleĀ floatClassifier-free guidance scale. Higher values give better adherence to the prompt but may decrease quality. Default value: 3.5
shiftĀ floatShift value for the image. Must be between 1.0 and 10.0. Default value: 2
The size of the generated image. Default value: square_hd
Possible enum values: square_hd, square, portrait_4_3, portrait_16_9, landscape_4_3, landscape_16_9
Note: For custom image sizes, you can pass the width and height as an object:
"image_size": {
  "width": 1280,
  "height": 720
}image_formatĀ ImageFormatEnumThe format of the output image. Default value: "jpeg"
Possible enum values: png, jpeg
WanI2VResponse#
The generated video file.
promptĀ stringThe text prompt used for video generation. Default value: ""
seedĀ integer* requiredThe seed used for generation.
LoRAWeight#
pathĀ string* requiredURL or the path to the LoRA weights.
weight_nameĀ stringName of the LoRA weight. Used only if path is a Hugging Face repository, and required only if you have more than 1 safetensors file in the repo.
scaleĀ floatThe scale of the LoRA weight. This is used to scale the LoRA weight
before merging it with the base model. Default value: 1
transformerĀ TransformerEnumSpecifies the transformer to load the lora weight into. 'high' loads into the high-noise transformer, 'low' loads it into the low-noise transformer, while 'both' loads the LoRA into both transformers. Default value: "high"
Possible enum values: high, low, both
WanV2VRequest#
video_urlĀ string* requiredURL of the input video.
promptĀ string* requiredThe text prompt to guide video generation.
strengthĀ floatStrength of the video transformation. A value of 1.0 means the output will be completely based on the prompt, while a value of 0.0 means the output will be identical to the input video. Default value: 0.9
num_framesĀ integerNumber of frames to generate. Must be between 17 to 161 (inclusive). Default value: 81
frames_per_secondĀ integerFrames per second of the generated video. Must be between 4 to 60. When using interpolation and adjust_fps_for_interpolation is set to true (default true,) the final FPS will be multiplied by the number of interpolated frames plus one. For example, if the generated frames per second is 16 and the number of interpolated frames is 1, the final frames per second will be 32. If adjust_fps_for_interpolation is set to false, this value will be used as-is. Default value: 16
negative_promptĀ stringNegative prompt for video generation. Default value: ""
seedĀ integerRandom seed for reproducibility. If None, a random seed is chosen.
resolutionĀ ResolutionEnumResolution of the generated video (480p, 580p, or 720p). Default value: "720p"
Possible enum values: 480p, 580p, 720p
aspect_ratioĀ AspectRatioEnumAspect ratio of the generated video. If 'auto', the aspect ratio will be determined automatically based on the input video. Default value: "auto"
Possible enum values: auto, 16:9, 9:16, 1:1
num_inference_stepsĀ integerNumber of inference steps for sampling. Higher values give better quality but take longer. Default value: 27
enable_safety_checkerĀ booleanIf set to true, input data will be checked for safety before processing.
enable_output_safety_checkerĀ booleanIf set to true, output video will be checked for safety after generation.
enable_prompt_expansionĀ booleanWhether to enable prompt expansion. This will use a large language model to expand the prompt with additional details while maintaining the original meaning.
accelerationĀ AccelerationEnumAcceleration level to use. The more acceleration, the faster the generation, but with lower quality. The recommended value is 'regular'. Default value: "regular"
Possible enum values: none, regular
guidance_scaleĀ floatClassifier-free guidance scale. Higher values give better adherence to the prompt but may decrease quality. Default value: 3.5
guidance_scale_2Ā floatGuidance scale for the second stage of the model. This is used to control the adherence to the prompt in the second stage of the model. Default value: 4
shiftĀ floatShift value for the video. Must be between 1.0 and 10.0. Default value: 5
interpolator_modelĀ InterpolatorModelEnumThe model to use for frame interpolation. If None, no interpolation is applied. Default value: "film"
Possible enum values: none, film, rife
num_interpolated_framesĀ integerNumber of frames to interpolate between each pair of generated frames. Must be between 0 and 4. Default value: 1
adjust_fps_for_interpolationĀ booleanIf true, the number of frames per second will be multiplied by the number of interpolated frames plus one. For example, if the generated frames per second is 16 and the number of interpolated frames is 1, the final frames per second will be 32. If false, the passed frames per second will be used as-is. Default value: true
video_qualityĀ VideoQualityEnumThe quality of the output video. Higher quality means better visual quality but larger file size. Default value: "high"
Possible enum values: low, medium, high, maximum
video_write_modeĀ VideoWriteModeEnumThe write mode of the output video. Faster write mode means faster results but larger file size, balanced write mode is a good compromise between speed and quality, and small write mode is the slowest but produces the smallest file size. Default value: "balanced"
Possible enum values: fast, balanced, small
resample_fpsĀ booleanIf true, the video will be resampled to the passed frames per second. If false, the video will not be resampled.
WanAnimateMoveResponse#
The generated video file.
ZIP archive of generated frames (if requested).
promptĀ string* requiredThe prompt used for generation
seedĀ integer* requiredThe seed used for generation
WanTurboI2VRequest#
image_urlĀ string* requiredURL of the input image. If the input image does not match the chosen aspect ratio, it is resized and center cropped.
promptĀ string* requiredThe text prompt to guide video generation.
seedĀ integerRandom seed for reproducibility. If None, a random seed is chosen.
resolutionĀ ResolutionEnumResolution of the generated video (480p, 580p, or 720p). Default value: "720p"
Possible enum values: 480p, 580p, 720p
aspect_ratioĀ AspectRatioEnumAspect ratio of the generated video. If 'auto', the aspect ratio will be determined automatically based on the input image. Default value: "auto"
Possible enum values: auto, 16:9, 9:16, 1:1
enable_safety_checkerĀ booleanIf set to true, input data will be checked for safety before processing.
enable_output_safety_checkerĀ booleanIf set to true, output video will be checked for safety after generation.
enable_prompt_expansionĀ booleanWhether to enable prompt expansion. This will use a large language model to expand the prompt with additional details while maintaining the original meaning.
accelerationĀ AccelerationEnumAcceleration level to use. The more acceleration, the faster the generation, but with lower quality. The recommended value is 'regular'. Default value: "regular"
Possible enum values: none, regular
video_qualityĀ VideoQualityEnumThe quality of the output video. Higher quality means better visual quality but larger file size. Default value: "high"
Possible enum values: low, medium, high, maximum
video_write_modeĀ VideoWriteModeEnumThe write mode of the output video. Faster write mode means faster results but larger file size, balanced write mode is a good compromise between speed and quality, and small write mode is the slowest but produces the smallest file size. Default value: "balanced"
Possible enum values: fast, balanced, small
end_image_urlĀ stringURL of the end image.
WanSmallFastVideoT2VRequest#
promptĀ string* requiredThe text prompt to guide video generation.
negative_promptĀ stringNegative prompt for video generation. Default value: ""
num_framesĀ integerNumber of frames to generate. Must be between 17 to 161 (inclusive). Default value: 81
frames_per_secondĀ integerFrames per second of the generated video. Must be between 4 to 60. When using interpolation and adjust_fps_for_interpolation is set to true (default true,) the final FPS will be multiplied by the number of interpolated frames plus one. For example, if the generated frames per second is 16 and the number of interpolated frames is 1, the final frames per second will be 32. If adjust_fps_for_interpolation is set to false, this value will be used as-is. Default value: 24
seedĀ integerRandom seed for reproducibility. If None, a random seed is chosen.
resolutionĀ ResolutionEnumResolution of the generated video (580p or 720p). Default value: "720p"
Possible enum values: 480p, 580p, 720p
aspect_ratioĀ AspectRatioEnumAspect ratio of the generated video (16:9 or 9:16). Default value: "16:9"
Possible enum values: 16:9, 9:16, 1:1
enable_safety_checkerĀ booleanIf set to true, input data will be checked for safety before processing.
enable_output_safety_checkerĀ booleanIf set to true, output video will be checked for safety after generation.
enable_prompt_expansionĀ booleanWhether to enable prompt expansion. This will use a large language model to expand the prompt with additional details while maintaining the original meaning.
guidance_scaleĀ floatClassifier-free guidance scale. Higher values give better adherence to the prompt but may decrease quality. Default value: 3.5
interpolator_modelĀ InterpolatorModelEnumThe model to use for frame interpolation. If None, no interpolation is applied. Default value: "film"
Possible enum values: none, film, rife
num_interpolated_framesĀ integerNumber of frames to interpolate between each pair of generated frames. Must be between 0 and 4.
adjust_fps_for_interpolationĀ booleanIf true, the number of frames per second will be multiplied by the number of interpolated frames plus one. For example, if the generated frames per second is 16 and the number of interpolated frames is 1, the final frames per second will be 32. If false, the passed frames per second will be used as-is. Default value: true
video_qualityĀ VideoQualityEnumThe quality of the output video. Higher quality means better visual quality but larger file size. Default value: "high"
Possible enum values: low, medium, high, maximum
video_write_modeĀ VideoWriteModeEnumThe write mode of the output video. Faster write mode means faster results but larger file size, balanced write mode is a good compromise between speed and quality, and small write mode is the slowest but produces the smallest file size. Default value: "balanced"
Possible enum values: fast, balanced, small
WanS2VRequest#
promptĀ string* requiredThe text prompt used for video generation.
negative_promptĀ stringNegative prompt for video generation. Default value: ""
num_framesĀ integerNumber of frames to generate. Must be between 40 to 120, (must be multiple of 4). Default value: 80
frames_per_secondĀ integerFrames per second of the generated video. Must be between 4 to 60. When using interpolation and adjust_fps_for_interpolation is set to true (default true,) the final FPS will be multiplied by the number of interpolated frames plus one. For example, if the generated frames per second is 16 and the number of interpolated frames is 1, the final frames per second will be 32. If adjust_fps_for_interpolation is set to false, this value will be used as-is. Default value: 16
seedĀ integerRandom seed for reproducibility. If None, a random seed is chosen.
resolutionĀ ResolutionEnumResolution of the generated video (480p, 580p, or 720p). Default value: "480p"
Possible enum values: 480p, 580p, 720p
num_inference_stepsĀ integerNumber of inference steps for sampling. Higher values give better quality but take longer. Default value: 27
enable_safety_checkerĀ booleanIf set to true, input data will be checked for safety before processing.
enable_output_safety_checkerĀ booleanIf set to true, output video will be checked for safety after generation.
guidance_scaleĀ floatClassifier-free guidance scale. Higher values give better adherence to the prompt but may decrease quality. Default value: 3.5
shiftĀ floatShift value for the video. Must be between 1.0 and 10.0. Default value: 5
video_qualityĀ VideoQualityEnumThe quality of the output video. Higher quality means better visual quality but larger file size. Default value: "high"
Possible enum values: low, medium, high, maximum
video_write_modeĀ VideoWriteModeEnumThe write mode of the output video. Faster write mode means faster results but larger file size, balanced write mode is a good compromise between speed and quality, and small write mode is the slowest but produces the smallest file size. Default value: "balanced"
Possible enum values: fast, balanced, small
image_urlĀ string* requiredURL of the input image. If the input image does not match the chosen aspect ratio, it is resized and center cropped.
audio_urlĀ string* requiredThe URL of the audio file.