Seedance 2.0 15% OFF | Create in Video Generator →
Alibaba·video·From $0.70/run

Happy Horse 1.0 API

Alibaba Happy Horse 1.0 — cinematic 720p / 1080p video with smooth camera movement, expressive motion, and strong prompt fidelity. Includes reference-to-video for consistent character/style identity across generations.

720p (default) or 1080p output. Variants for text-to-video, image-to-video, reference-to-video (maintains characters, styles, visual identity from refs), video-edit (multi-image reference support), and video-extend.

About the Happy Horse 1.0 API

What Happy Horse 1.0 does, how it fits in the Alibaba model lineup, and why teams reach for it.

Happy Horse 1.0 is a video generation model from Alibaba, available through the WaveSpeedAI REST API. Alibaba Happy Horse 1.0 — cinematic 720p / 1080p video with smooth camera movement, expressive motion, and strong prompt fidelity. Includes reference-to-video for consistent character/style identity across generations.

720p (default) or 1080p output. Variants for text-to-video, image-to-video, reference-to-video (maintains characters, styles, visual identity from refs), video-edit (multi-image reference support), and video-extend.

The Happy Horse 1.0 family on WaveSpeedAI ships 5 REST endpoints covering Text-To-Video, Image-To-Video, Video-Extend, Video-To-Video workflows. Each variant carries its own pricing, parameter knobs, and example outputs — pick the one that matches your input modality and production constraints, or call several from the same API key to compose multi-step pipelines.

Run Happy Horse 1.0 through the same API key, billing account, and rate-limit envelope you use for the other 1,000+ AI models on WaveSpeedAI. No separate vendor setup, no per-provider SDKs, no per-vendor rate-limit envelopes — one integration covers everything from text-to-image and text-to-video through audio synthesis, 3D generation, upscaling, and editing.

All Happy Horse 1.0 API endpoints

5 endpoints available now on WaveSpeedAI — pick the variant that matches your workflow.

See Happy Horse 1.0 in action

Real outputs generated by the Happy Horse 1.0 API. Hover any video to preview, click to open the full-size viewer.

How to use the Happy Horse 1.0 API

Four steps from signup to a finished generation. Full Python, Node.js, and cURL examples are in the API section below.

  1. 1

    Get an API key

    Sign up for a WaveSpeedAI account and copy your API key from the dashboard. New accounts come with free starter credits — enough to run the playground a few dozen times before billing kicks in.

  2. 2

    Submit a prediction

    POST your input as JSON to https://api.wavespeed.ai/api/v3/alibaba/happyhorse-1.0/text-to-video. The endpoint returns a prediction id immediately — generations are async so you don't hold an open connection during inference.

  3. 3

    Poll for completion

    GET https://api.wavespeed.ai/api/v3/predictions/{request_id}/result every 1-2 seconds. The response includes a status field; keep polling until it flips from"queued" or"processing" to"completed".

  4. 4

    Read the output URL

    Once status is"completed", read the URL from data.outputs[0]. The URL points to your generated media on the WaveSpeedAI CDN — image, video, audio, or 3D file depending on the Happy Horse 1.0 variant you called.

What you can build with Happy Horse 1.0

Common workflows developers and creators use the Happy Horse 1.0 API for.

Text-to-video with smooth camera movement

alibaba/happyhorse-1.0/text-to-video generates cinematic 720p/1080p clips with smooth camera movement and expressive motion — catalog's headline framing. Strong prompt fidelity for ad and content-pipeline work.

text-to-videocinematiccamera

Image-to-video from a reference still

alibaba/happyhorse-1.0/image-to-video animates a reference image into a cinematic 720p/1080p video, optionally guided by a text prompt. Smooth camera movement and expressive, stable motion.

image-to-videoreferenceanimation

Reference-to-video for identity preservation

alibaba/happyhorse-1.0/reference-to-video generates new video scenes guided by reference images, maintaining consistent characters, styles, and visual identity across the generation. The variant to pick when identity matters most.

referenceidentitycharacter

Video-edit with multi-image refs

alibaba/happyhorse-1.0/video-edit performs prompt-driven video editing with multi-image reference support, 720p/1080p output. Useful for targeted edits on existing clips.

video-editmulti-referenceedit

Video-extend for longer clips

alibaba/happyhorse-1.0/video-extend extends existing videos with seamless AI-generated continuation, 720p/1080p output. Useful for building longer sequences from shorter source clips.

video-extendlong-formcontinuation

Tips for prompting Happy Horse 1.0

Practical advice for getting better outputs from Happy Horse 1.0 — drawn from the patterns that work across video models in production pipelines.

Pick reference-to-video for identity-critical shots

alibaba/happyhorse-1.0/reference-to-video is the specific variant for preserving consistent characters, styles, and visual identity. Use it for serialized content where the same character must remain recognizable across separate generations.

Image-to-video preserves first-frame composition

alibaba/happyhorse-1.0/image-to-video animates a reference image into a 720p/1080p clip with optional text guidance. Preserves the subject and composition of the starting still while adding camera and subject motion.

Specify outfit and pose explicitly

Without explicit outfit/pose specification, the model defaults toward neutral standing poses. Spell out wardrobe and starting pose to control the shot rather than getting the default.

Pick 720p or 1080p deliberately

Catalog claim: cinematic 720p / 1080p output. 720p is the default; pick 1080p when delivery resolution matters.

Use video-edit with multi-image references for restyles

alibaba/happyhorse-1.0/video-edit performs prompt-driven editing on existing video with multi-image reference support. Useful for restyling clips while keeping the source motion and composition.

Happy Horse 1.0 API pricing

Pricing is per-output. The final charge scales with the parameters you set in each variant's playground (resolution, duration, output count, references).

Call the Happy Horse 1.0 API

Sign up for an API key at wavespeed.ai/accesskey, then submit a prediction via REST. The playground generates ready-to-paste samples for any combination of inputs.

HTTP example
# 1. Submit a prediction
curl -X POST "https://api.wavespeed.ai/api/v3/alibaba/happyhorse-1.0/text-to-video" \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer $WAVESPEED_API_KEY" \
  -d '{}'

# 2. Poll the result until status = "completed"
curl -X GET "https://api.wavespeed.ai/api/v3/predictions/{request_id}/result" \
  -H "Authorization: Bearer $WAVESPEED_API_KEY"

# Read the output URL from data.outputs[0].
Node.js example
// npm install wavespeed
const WaveSpeed = require('wavespeed');
const client = new WaveSpeed(); // reads WAVESPEED_API_KEY

const result = await client.run("alibaba/happyhorse-1.0/text-to-video", {});
console.log(result.outputs[0]); // → URL of the generated output
Python example
# pip install wavespeed
import wavespeed

output = wavespeed.run(
    "alibaba/happyhorse-1.0/text-to-video",
    {}
)
print(output["outputs"][0])  # → URL of the generated output

Happy Horse 1.0 vs alternatives

When to pick Happy Horse 1.0 over similar models on WaveSpeedAI.

Happy Horse 1.0 vs Seedance 2.0

Seedance 2.0 ships native audio across every variant, the Turbo tier, and video-edit/video-extend at base. Happy Horse is more expensive but ships reference-to-video and video-edit with multi-image reference support that Seedance handles differently.

Happy Horse 1.0 vs Kling 3.0

Kling 3.0 covers Standard, Pro, and 4K tiers plus motion-control. Happy Horse at sits between Kling Pro and 4K with reference-to-video and multi-image reference video-edit.

Happy Horse 1.0 vs Wan 2.7

Wan 2.7 at covers similar variants (text-to-video, image-to-video, reference-to-video, video-edit, video-extend) plus image-edit and text-to-image in the same family. Cheaper and broader; Happy Horse is positioned around "smooth camera movement" and expressive motion.

Happy Horse 1.0 API — Frequently asked questions

Pricing, license, integration — common questions about running Happy Horse 1.0 on WaveSpeedAI.

What is the Happy Horse 1.0 API?

Happy Horse 1.0 is a Alibaba video generation model exposed as a REST API on WaveSpeedAI. Alibaba Happy Horse 1.0 — cinematic 720p / 1080p video with smooth camera movement, expressive motion, and strong prompt fidelity. Includes reference-to-video for consistent character/style identity across generations. You can call it programmatically or try it from the playground linked above.

How do I call the Happy Horse 1.0 API?

Sign up for a WaveSpeedAI account, copy your API key from /accesskey, then POST to https://api.wavespeed.ai/api/v3/alibaba/happyhorse-1.0/text-to-video with your input as JSON. The endpoint returns a prediction id; poll the prediction endpoint until status flips to "completed", then read the output URL from data.outputs[0]. Full Python / Node.js / cURL examples are above.

How much does the Happy Horse 1.0 API cost?

Happy Horse 1.0 starts at $0.70 per run. The exact cost scales with the parameters you set (resolution, duration, output count, references). The live cost preview next to the Generate button in the playground shows the exact price for your current input.

Which Happy Horse 1.0 variants are available?

WaveSpeedAI hosts 5 Happy Horse 1.0 endpoints: alibaba/happyhorse-1.0/text-to-video, alibaba/happyhorse-1.0/image-to-video, alibaba/happyhorse-1.0/video-extend, alibaba/happyhorse-1.0/video-edit, alibaba/happyhorse-1.0/reference-to-video. Each variant has its own playground page and pricing.

Can I use Happy Horse 1.0 outputs commercially?

Commercial usage rights follow the Alibaba model license. Most Alibaba models permit commercial output use; see each model's playground page for the specific license summary, and WaveSpeedAI's Terms of Service for platform-level conditions.

Why use Happy Horse 1.0 on WaveSpeedAI instead of going direct?

One API key + one billing account across Happy Horse 1.0 AND 1,000+ other AI models from other providers. No per-vendor SDK setup, no separate rate-limit envelopes, no rewrite-per-vendor integration code. Pricing is typically at parity with or below Alibaba's direct API.

About Alibaba

The team behind Happy Horse 1.0 and the broader Alibaba model lineup on WaveSpeedAI.

Alibaba's Tongyi Lab produces the Wan family of video models and the Qwen family of LLMs. Wan is notable for being released with open weights, broad variant coverage (text-to-video, image-to-video, reference-to-video, video-edit, video-extend, image-edit, text-to-image), and consistent strength on motion stability and prompt adherence across multilingual prompts.

Start building with Happy Horse 1.0 on WaveSpeedAI

Free starter credits on signup. One API key across 1,000+ AI models from Alibaba and every other provider.