HappyHorse 1.1
Video Generationalibaba/happyhorse-1.1HappyHorse 1.1 is an incremental upgrade to Alibaba's HappyHorse 1.0 video generation model, further improving frame fidelity and subject consistency. It adds multi-image reference image-to-video and video stylization editing on top of text-to-video, making it well-suited for creative content production. Accessible via the OpenAI-compatible protocol.
Duration
3-15s
Audio
Supported
Released
2026-06-24
Generation Modes
t2vText to Videoi2vImage to Video
Resolutions
720p1080p
Aspect Ratios
16:99:161:1
Capabilities
Video Input
Available Providers
Aliyun
Supported Protocols
openai
Pricing
From $0.13/s| Resolution | Mode | Audio | Price / Second |
|---|---|---|---|
| 720p | Any | Any | $0.13/s |
| 1080p | Any | Any | $0.17/s |
| All other combinations | $0.17/s | ||
Billed per second of generated video. Supported parameter combinations and prices are determined by the live API and may vary by model version.
Code Examples
import timeimport requestsBASE = "https://api.ofox.run/v1/videos"HEADERS = {"Authorization": "Bearer YOUR_OFOX_API_KEY"}# Create the generation tasktask = requests.post(BASE, headers=HEADERS, json={"model": "alibaba/happyhorse-1.1","prompt": "A golden retriever running on the beach at sunset","duration": 3,"resolution": "1080p","generate_audio": True,}).json()# Poll until the task reaches a terminal statewhile True:task = requests.get(f"{BASE}/{task['id']}", headers=HEADERS).json()if task["status"] in ("completed", "failed", "cancelled", "expired"):breaktime.sleep(10)# Prefer mirror_urls (persistent) then fall back to unsigned_urls (24h)print((task.get("mirror_urls") or task.get("unsigned_urls") or [None])[0])
Related Models
More from Alibaba
Frequently Asked Questions
HappyHorse 1.1 on Ofox.ai costs from $0.13 per second of generated video. The exact rate depends on resolution, generation mode, and audio. Pay-as-you-go, no monthly fees.
HappyHorse 1.1 supports: Text to Video, Image to Video, 720p / 1080p, 3-15s, 16:9 / 9:16 / 1:1. The exact supported combinations are returned by the API.
Create a generation task via POST https://api.ofox.run/v1/videos with your Ofox API key, then poll the task status until it completes and download the video from mirror_urls (or unsigned_urls).
HappyHorse 1.1 supports the following capabilities: Video Input. Access all features through the Ofox.ai unified API.