OyeFilmy Logo
personFreeUpgrade
bolt0cr
U

Video generation API

HappyHorse

Alibaba HappyHorse 1.1/1.0 — T2V, I2V, reference-to-video, and video edit.

Provider: Alibaba7 models

Available models

Model keyDisplay nameCapabilityAtlas Cloud slug
happyhorse_1_1_t2vHappyHorse 1.1 T2Vtext-to-videoalibaba/happyhorse-1.1/text-to-video
happyhorse_1_1_i2vHappyHorse 1.1 I2Vimage-to-videoalibaba/happyhorse-1.1/image-to-video
happyhorse_1_1_ref2vidHappyHorse 1.1 Ref2Vidreference-to-videoalibaba/happyhorse-1.1/reference-to-video
happyhorse_1_0_t2vHappyHorse 1.0 T2Vtext-to-videoalibaba/happyhorse-1.0/text-to-video
happyhorse_1_0_i2vHappyHorse 1.0 I2Vimage-to-videoalibaba/happyhorse-1.0/image-to-video
happyhorse_1_0_ref2vidHappyHorse 1.0 Ref2Vidreference-to-videoalibaba/happyhorse-1.0/reference-to-video
happyhorse_1_0_vid_editHappyHorse 1.0 Video Editvideo-editalibaba/happyhorse-1.0/video-edit

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": "happyhorse_1_1_t2v",
    "prompt": "A horse galloping through a field of wildflowers at sunset, slow motion, bokeh"
  }'

Response

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

Related