More modelsWavespeed aiWan flf2v

Generate video with wavespeed-ai/wan-flf2v

Generates a video using the wavespeed-ai/wan-flf2v model.

POST
/api/v1/model/generateVideo
AuthorizationBearer <token>

API key is required to authorize requests. Obtain a key from your AtlasCloud dashboard.

In: header

modelstring

model name

seed?integer

The random seed to use for the generation. -1 means a random seed will be used.

Default-1
size?string

The size of the generated media in pixels (width*height).

Value in"832*480" | "480*832" | "1280*720" | "720*1280"
prompt?string
duration?integer

The duration of the generated media in seconds.

Default5
Range5 <= value <= 10
last_imagestring

URL of the ending image.

first_imagestring

URL of the starting image.

guidance_scale?number

The guidance scale to use for the generation.

Default5
Range0 <= value <= 20
negative_prompt?string

The negative prompt for generating the output.

num_inference_steps?integer

The number of inference steps to perform.

Default30
Range1 <= value <= 40
enable_safety_checker?boolean

If set to true, the safety checker will be enabled.

Defaulttrue

Response Body

curl -X POST "https://api.atlascloud.ai/api/v1/model/generateVideo" \  -H "Content-Type: application/json" \  -d '{    "model": "wavespeed-ai/wan-flf2v",    "last_image": "https://raw.githubusercontent.com/Comfy-Org/example_workflows/refs/heads/main/wan2.1_flf2v/input/end_image.png",    "first_image": "https://raw.githubusercontent.com/Comfy-Org/example_workflows/refs/heads/main/wan2.1_flf2v/input/start_image.png"  }'
{
  "id": "string",
  "urls": {},
  "model": "string",
  "status": "string",
  "outputs": [
    "string"
  ],
  "created_at": "2019-08-24T14:15:22Z",
  "has_nsfw_contents": [
    true
  ]
}