OyeFilmy Logo
personFreeUpgrade
bolt0cr
U

Video generation API

Wan Video

Alibaba Wan 2.7/2.6/2.5/2.2 video family — text-to-video, image-to-video, video extend, video-to-video, and character swap.

Provider: Alibaba13 models

Available models

Model keyDisplay nameCapabilityAtlas Cloud slug
wan_2_7_t2vWan 2.7 T2Vtext-to-videoalibaba/wan-2.7/text-to-video
wan_2_7_i2vWan 2.7 I2Vimage-to-videoalibaba/wan-2.7/image-to-video
wan_2_7_ref2vidWan 2.7 Ref2Vidreference-to-videoalibaba/wan-2.7/reference-to-video
wan_2_7_vid_editWan 2.7 Video Editvideo-editalibaba/wan-2.7/video-edit
wan_2_6_t2vWan 2.6 T2Vtext-to-videoalibaba/wan-2.6/text-to-video
wan_2_6_i2vWan 2.6 I2Vimage-to-videoalibaba/wan-2.6/image-to-video
wan_2_6_i2v_flashWan 2.6 I2V Flashimage-to-videoalibaba/wan-2.6/image-to-video-flash
wan_2_6_v2vWan 2.6 V2Vvideo-to-videoalibaba/wan-2.6/video-to-video
wan_2_5_t2vWan 2.5 T2Vtext-to-videoalibaba/wan-2.5/text-to-video
wan_2_5_i2vWan 2.5 I2Vimage-to-videoalibaba/wan-2.5/image-to-video
wan_2_5_vid_extendWan 2.5 Video Extendvideo-extendalibaba/wan-2.5/video-extend
wan_2_2_char_swapWan 2.2 Character Swapcharacter-swapalibaba/wan-2.2/animate-mix
wan_2_2_i2aWan 2.2 Image-to-Animationanimationalibaba/wan-2.2/animate-move

Endpoint

POST /api/generate

Request body

ParameterTypeRequiredDescription
modelKeystringOne of the model keys listed above
promptstringText description of the image to generate
inputUrlstringInput image URL (for edit/i2i models)
aspectRatiostring"1:1", "16:9", "9:16", etc.
imageQualitystring"Low", "Medium", "High"
styleRefstring | string[]Style reference image URL(s)
charRefstring | string[]Character reference image URL(s)
brandIdstringBrand DNA ID for brand-consistent generation

Code example

curl -X POST https://api.oyefilmy.com/api/generate \
  -H "Authorization: Bearer of_live_YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "modelKey": "wan_2_7_t2v",
    "prompt": "A time-lapse of a flower blooming in a lush garden, macro photography"
  }'

Response

{
  "success": true,
  "predictionId": "pred_abc123...",
  "status": "processing",
  "model": "alibaba/wan-2.7/text-to-video",
  "creditCost": 5
}

Wan 2.7 is the latest and highest quality. Flash variants are optimized for speed. Spicy variants tend to be more creative. Video extend continues an existing video.

Related