If you searched “happyhorse 1.0 api” and the top results told you the model is still coming soon, you read April’s internet. HappyHorse 1.0 — the video model that debuted on the Artificial Analysis Video Arena on April 7, 2026 and immediately took the top text-to-video and image-to-video spots — has been generally available through real APIs since late April. As of September 8, 2026 it is live on Alibaba Cloud Model Studio (Alibaba’s first-party platform, where the model IDs below come from) and on API aggregators including Modellix, which is the company behind this blog and has a commercial interest in the route we describe. This guide covers what is actually documented about the model, the model IDs that work today, request schemas with runnable Python and curl, and per-second pricing by variant and resolution captured the same day — and it is honest about the gaps: HappyHorse is a new model family whose public documentation is thinner than established lines like Wan, so everything below is marked as either documented first-party or observable from live model catalogs.
What the HappyHorse 1.0 API actually is
HappyHorse 1.0 is a family of four video-generation models built by Alibaba — Alibaba formally claimed the model through its own channels in April 2026 (its Alibaba Cloud blog announced HappyHorse as developed by the Alibaba Token Hub (ATH) business unit, and Artificial Analysis has always labeled the family Alibaba-ATH). What remains genuinely unconfirmed is narrower: the original arena submission was pseudonymous, and no Alibaba official has named the specific internal unit behind the model — reporting attributes the team to the Future Life Lab inside Alibaba’s Taotian Group, while Alibaba’s own announcement credits the ATH business unit — or the rumored lead, Zhang Di. What is not in dispute is the benchmark story: Artificial Analysis added the model to its blind Video Arena in April 2026, where it hit the top of text-to-video and image-to-video, and it remains a top-tier model today. To be precise about current standing rather than repeating the April headline: on the text-to-video leaderboard pulled for this article, HappyHorse 1.0 sits around Elo 1,283 without audio (third) and 1,122 with audio (behind several 2026 models led by Wan 3.0 and Gemini Omni Flash) — still an elite model, no longer the number-one story the older pages claim.
The four variants share one architecture trait that matters for your integration: the model generates video and audio jointly in a single pass, so an output clip arrives with synchronized native sound — no separate TTS or music pass. All four generate clips of 3–15 seconds, at 720P or 1080P on the aggregator surfaces checked here (Alibaba’s own docs additionally list a 480P tier), with text prompts in any language:
| Variant | Input | What it is for |
|---|---|---|
| T2V | Text prompt | Text-to-video: a scene description becomes a clip with audio |
| I2V | First-frame image + optional prompt | Animating one image into motion while keeping the shot |
| R2V | Up to 9 reference images + prompt | Character-consistent storytelling; the prompt dictates new action, references dictate who appears |
| Video Edit | Input video + instruction (optional reference images) | Natural-language editing: restyle, replace, or alter an existing clip |
If you are new to the family, the model pages on each access surface spell out the routing the way this table does. On Modellix, each variant has its own page under the Alibaba provider hub, which lists the current set alongside the newer HappyHorse 1.1 line.
Figure: the four HappyHorse 1.0 API surfaces — one model family, one shared audio-native output contract, different inputs. Concept diagram generated for this article.
There is one naming trap to clear before the code: “the HappyHorse API” does not exist as a single official thing. Alibaba Cloud Model Studio hosts the first-party HappyHorse endpoints under model IDs like happyhorse-1.0-t2v. Aggregators expose the same model under their own route IDs. Several pages that rank for this query are third-party documentation portals or wrapper repos that describe a planned surface — fal.ai’s own model page and tracking repo were still saying “coming soon” in April. Copying an ID from a page that predates general availability is the most common way to get a 404 on the first call, so treat the IDs below as the current ones and check the provider’s live model page before you deploy.
HappyHorse 1.0 model IDs that work today
Two surfaces, two ID conventions — and both are live as of September 8, 2026:
Official — Alibaba Cloud Model Studio. The first-party API reference documents the model name as happyhorse-1.0-t2v (the same family also ships image-to-video (happyhorse-1.0-i2v), reference-to-video (happyhorse-1.0-r2v), and video-edit variants; the docs’ own examples now default to the newer happyhorse-1.1-t2v, which is a separate June 2026 model — out of scope here beyond this note). Requests go to a regional Model Studio endpoint, and the model, endpoint, and API key must belong to the same region — cross-region calls fail.
Aggregator — one-key routes. Aggregators license the model and expose it under their own REST routes. Modellix, for example, lists the four variants as alibaba/happyhorse-1.0-t2v, alibaba/happyhorse-1.0-i2v, alibaba/happyhorse-1.0-r2v, and alibaba/happyhorse-1.0-video-edit, each with its own model page documenting the request schema and per-second price. Fal (which hosts the model as alibaba/happy-horse/…), OpenRouter, and kie.ai carry it under their own IDs too — that is normal for this market, and it is exactly why you should pin the ID to the surface you actually call.
A related 2026 note for anyone building a roadmap: HappyHorse 1.1 shipped in June 2026 on the same surfaces and now ranks above 1.0 on the with-audio T2V leaderboard. If you are starting fresh, read a current 1.1 guide instead; this article stays scoped to 1.0 because that is the model the search results are asking about.
How to call HappyHorse 1.0: the async task pattern
Every HappyHorse 1.0 surface — official and aggregator — uses the same asynchronous shape: submit a task, poll until it finishes, download the video. Video generation runs for tens of seconds, so no surface returns the clip in the HTTP response; they return a task handle.
The official route. Against Alibaba Cloud Model Studio, a text-to-video call is an async task submission. The reference’s curl sample uses an X-DashScope-Async: enable header and a region-scoped host that includes your workspace ID — the docs enumerate Singapore (ap-southeast-1), US Virginia (us-east-1), China Beijing (cn-beijing), and other regions, and the sample code applies to Singapore:
1 | curl "https://{WorkspaceId}.ap-southeast-1.maas.aliyuncs.com/api/v1/services/aigc/video-generation/video-synthesis" \ |
Replace {WorkspaceId} with your Model Studio workspace ID and the region segment with your key’s region — the model, endpoint, and API key must all belong to the same region. Polling uses the same host’s task endpoint (/api/v1/tasks/{task_id}) until the task completes. What is reliably documented is the model ID (happyhorse-1.0-t2v), the 3–15 second duration range with a default of 5, the default 1080P output, and that a watermark is on by default on the official surface (the docs list it as watermark: true, rendering “HappyHorse” in the lower-right corner — disable it in the request if your use case allows). Read the exact parameter casing and result schema from the reference for your region rather than copying this verbatim.
The aggregator route. The same model behind a Modellix key is a two-step call on api.modellix.ai: submit to the model’s async route, then poll the returned task URL:
1 | import time |
Both snippets are skeletons, not production modules — verify response field names against the current docs for the model ID you actually use. The Modellix per-model request schema is published on each model page; the live parameters for the four 1.0 variants, as listed there on September 8, 2026, are:
| Variant | Required input | Notable optional parameters |
|---|---|---|
| T2V | prompt |
duration (3–15), ratio, resolution (720P/1080P), seed |
| I2V | first_frame_image (public JPEG/PNG/WEBP URL, ≥300px, ≤10 MB) |
prompt, duration, resolution, seed |
| R2V | reference_images (1–9 public image URLs, short edge ≥400px) + prompt |
Reference images in order as character1, character2, …; duration, ratio, resolution, seed |
| Video Edit | input_video_url (MP4/MOV, 3–60 s in, ≤100 MB) + prompt instruction |
audio_setting (auto/origin), reference_images (0–5), resolution, seed |
Two input rules bite people regardless of surface: every image and video URL must be publicly reachable over HTTP(S) — the API fetches it, it does not upload for you — and the input constraints are enforced by the model upstream, so a non-compliant asset surfaces as a delayed failure rather than an instant 400. For video editing, note the contract: the input clip can be up to 60 seconds, but the output is 3–15 seconds (longer inputs are truncated to the first 15 seconds of edited output on the listing checked here), and audio_setting: origin preserves the source audio while auto lets the model decide.
Figure: every HappyHorse 1.0 call — official or aggregator — is submit, poll, download. Concept diagram generated for this article.
For production workloads, prefer a webhook over polling when the surface supports one; both the official platform and aggregator routes accept callback registration so the result arrives instead of being fetched.
HappyHorse 1.0 pricing, pulled September 8, 2026
HappyHorse 1.0 is billed per second of output, and the rate depends on variant and resolution. The prices below are Modellix list prices pulled same-day (September 8, 2026) from its live model pages, where the pricing dimension is resolution:
| Variant (Modellix ID) | 720P per second | 1080P per second |
|---|---|---|
happyhorse-1.0-t2v |
$0.1400 | $0.2400 |
happyhorse-1.0-i2v |
$0.1400 | $0.2400 |
happyhorse-1.0-r2v |
$0.1400 | $0.2400 |
happyhorse-1.0-video-edit |
$0.8400 | $1.4400 |
So a 5-second 1080P text-to-video clip lists at $1.20, a 5-second 720P clip at $0.70, and video editing runs six times the generation rate — $4.20 for a 5-second 720P edit — reflecting the longer input processing. Modellix lists video-edit billing on output duration like the rest of the family.
Context on those numbers, with dates so you can judge drift: the market for this model has converged tightly. Public listings we checked the same day cluster near that spread — OpenRouter’s HappyHorse 1.0 page shows from $0.0988/second at 720p to $0.1694/second at 1080p for its Alibaba Cloud provider row, and fal and kie publish $0.14–$0.28-per-second spreads of their own. Artificial Analysis lists the creator API near $13.20 per minute of 1080p video, which is roughly $0.22 per second. On the direct Alibaba channel, generous launch pricing on credit packs (a ¥4.50 list per credit) plus free-trial quota can undercut every USD aggregator per-video — free-quota terms differ by surface (Model Studio’s API pricing page has granted new users a one-time allowance — Alibaba’s campaign cites a free 10-second generation on activation — while daily free credits have been a Qwen consumer-facing credit-system feature; check the official pricing page for whichever surface you plan to use) — and that channel has its own account and region setup, covered in the next section. Do not treat any of these — including Modellix’s own table above — as a standing claim: aggregator and cloud list prices move, and the April-era blog posts that quote “no confirmed pricing” are describing a moment that ended months ago. Pin the date whenever you record a number, and re-check the live model page before you commit budget. Our Alibaba API pricing comparison tracks the wider Alibaba catalog the same way.
Direct vs aggregator: which HappyHorse 1.0 API route fits
The two routes differ in obligations, not just price. Direct (Alibaba Cloud Model Studio) gives you the vendor relationship: your account, your region, your key, first-party docs, and the cheapest per-video economics if you operate at volume through Alibaba’s credit system. The costs are operational: a Model Studio account and API key per region (the model, endpoint, and key must be in the same region), a watermark that is on by default, and Alibaba’s own billing unit and console. Aggregator (Modellix, or fal, OpenRouter, kie, and others) trades the direct relationship for a single key and one bill across many vendors — Modellix’s angle, stated plainly, is that HappyHorse 1.0 then sits next to Wan, Seedance, Kling, and Veo models behind the same key and the same request pattern, which matters if the model is one of several in your pipeline rather than your whole product.
| Dimension | Direct: Alibaba Cloud Model Studio | Aggregator (e.g., Modellix) |
|---|---|---|
| Account | Model Studio account + key per region | One signup, one key |
| Regional rules | Model/endpoint/key must share a region | None |
| Model IDs | happyhorse-1.0-t2v etc. |
alibaba/happyhorse-1.0-t2v etc. |
| Billing | Per output duration (credit packs or list) | Per second, per resolution |
| Watermark | On by default (off via parameter) | Follows the platform’s listing |
| Scope | Alibaba models only | Many providers behind one key |
A defensible rule of thumb: choose direct when HappyHorse is your product’s core model and you can absorb a per-region Alibaba account, or when volume makes Alibaba’s credit pricing decisive; choose an aggregator when you are evaluating HappyHorse alongside other video models and want one key, one bill, and no regional split. This is the same decision our unified AI API explainer and one-key multi-video-model guide walk through generically. For the mechanics of image and reference inputs specifically, our image-to-video API explainer describes the shared patterns.
Figure: the route decision in this guide — direct vendor account and region rules vs one aggregator key across many models. Concept diagram generated for this article.
HappyHorse 1.0 on the Modellix API
Live async task routes, per-variant request schemas, and per-second pricing for the four HappyHorse 1.0 models on one Modellix key.
View DocsErrors, limits, and caveats
The failures that waste the most time on a first HappyHorse integration, in rough order of frequency:
- 404 on the model ID — you copied an ID from a pre-GA page (fal’s April repo, third-party portal docs, wrapper examples) or mixed surfaces (official
happyhorse-1.0-t2vvs an aggregator route slug). Use the ID for the surface you are actually calling. - Region mismatch on the official route — Alibaba’s docs are explicit: the model, the endpoint URL, and the API key must belong to the same region, and cross-region calls fail. This presents as an auth or routing error and is not a key typo.
- Delayed failures on bad input — HappyHorse fetches your image and video URLs server-side. Non-public URLs, oversized files (images over ~10 MB, video over ~100 MB), or wrong formats fail upstream after submission rather than at request time.
- Resolution strings are per-surface — the official docs enumerate 480P/720P/1080P and the aggregator listings checked here expose 720P/1080P; send the exact enum value the surface documents.
- Watermark on the official route — on by default. If you must ship without it, set it explicitly in the request and verify the output.
- Content review failures — like other video models, generations can fail on safety review; a
failedstatus is a normal outcome to handle, and Modellix-style aggregators do not bill failed tasks. - 1.0 is stable but superseded — HappyHorse 1.1 (June 2026) scores higher and is the default in current official examples. If you are building new, weigh 1.1; if you must match 1.0 output, pin the model ID and re-check that it still lists before you scale.
Frequently Asked Questions
How much does the HappyHorse 1.0 API cost per second?
As of September 8, 2026, Modellix lists T2V, I2V, and R2V at $0.14/second at 720P and $0.24/second at 1080P, and Video Edit at $0.84/$1.44 per second. Direct Alibaba pricing runs through Alibaba’s credit system, with free-trial quota that varies by surface (see the free-tier question below); list prices move, so check the live page for the surface you use.
Is there a free HappyHorse 1.0 API?
No free API tier on the aggregator surfaces checked for this article — billing starts on the first generation. Alibaba’s direct channel does have free-trial quota, but the terms differ by surface: Model Studio’s API pricing page grants new users a one-time allowance (Alibaba’s campaign cites a free 10-second generation on activation), while daily free credits have belonged to Qwen’s consumer-facing credit system. Launch-priced credit packs (¥4.50 per credit) have applied on top; terms change, so check the official pricing page for whichever surface you plan to use. The direct Model Studio route also requires the per-region setup described above.
Which model ID should I use for HappyHorse 1.0?
happyhorse-1.0-t2v on Alibaba Cloud Model Studio; the aggregator route slug for your platform (e.g., alibaba/happyhorse-1.0-t2v on Modellix). IDs differ per surface and are the top source of first-call 404s.
Can HappyHorse 1.0 generate audio?
Yes — the model generates video and audio jointly in one pass, so output clips include synchronized native sound without a separate audio model. Video Edit’s audio_setting lets you keep the source audio (origin) or let the model decide (auto).
Does HappyHorse 1.0 API support image-to-video and video editing?
Yes, as separate variants: I2V animates a first-frame image, R2V keeps characters consistent across up to nine reference images, and Video Edit restyles or edits an input clip from a text instruction.
How long can a HappyHorse 1.0 clip be?
3 to 15 seconds on every variant (default 5). Video Edit accepts input clips up to 60 seconds but outputs 3–15 seconds of edited video.
Is HappyHorse 1.0 open source?
Public claims conflict — some pages say open weights are coming, others say the model ships as an API only. Alibaba has confirmed it built the model (through its own Alibaba Cloud blog and Artificial Analysis’s Alibaba-ATH labeling), but has said nothing official about open-sourcing it. This guide covers API access, not weights; do not base an architecture decision on the open-source claims until Alibaba formally confirms whether weights will ship.
What is the difference between HappyHorse 1.0 and 1.1?
HappyHorse 1.1 is a June 2026 follow-up on the same surfaces that currently ranks above 1.0 with audio on the Artificial Analysis leaderboard and appears as the default model in current official examples. This article is scoped to 1.0; treat 1.1 as the newer option if you are choosing fresh.
HappyHorse 1.0 model status, availability, and pricing reflect public information and Modellix’s own listings as of September 8, 2026, and change frequently — the model is not yet a year old, Alibaba formally claimed ownership of HappyHorse through its own channels in April 2026 but has not officially named the specific internal unit behind it (its announcement credits the ATH business unit, while other reporting points to the Future Life Lab inside Taotian Group), and per-second rates shift across platforms without notice. Validate model IDs and prices against the specific provider’s live model page before committing budget. This article was written by Modellix, an AI model API aggregator with a commercial interest in the single-key route it describes; the Alibaba Cloud Model Studio material above is vendor documentation and the Modellix prices quoted are a same-day snapshot rather than a standing claim. Access 210+ image, video, and audio models through one API key at modellix.ai.
Start Generating with HappyHorse 1.0
Log in to Modellix to call HappyHorse 1.0 and 210+ other image, video, and audio models through one API key.
Login