/ Models

Alibaba: HappyHorse 1.1

HappyHorse 1.1 is a video generation model from Alibaba. It generates short videos from a text prompt, a single starting image, or a set of reference images, with output up...

Install on 00 Use in other agents

Get the 00 app

Free · macOS

Your agents, your models, your machine — this model installs with one click once the app is on board.

Download free →

Takes
text, image
Makes
video
Release date
2026-06-24
Licence
commercial

What it costs

$0.198 per second of video at 720p ($0.256/s at 1080p), on your AI tokens.

Where it runs

Built in: runs on your workspace's AI tokens, out of the box — no key, no separate account. Prices are final AI-token prices.

Call it from your own code

It answers at an OpenAI-compatible endpoint on your AI tokens — no separate account, no key from the model's maker.

Create a workspace API key in the Overblast console and point your base URL at https://brain.deployd.network/ai/v1. Usage bills that workspace's AI tokens, at the prices shown here.

A job, not a request: start it, poll until completed, download. Polling is free; each render in flight needs $5.00 of AI tokens available.

# 1 · start the render. A render in flight needs $5.00 of AI tokens available.
curl https://brain.deployd.network/ai/v1/videos \
  -H "Authorization: Bearer ob_live_YOUR_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "alibaba/happyhorse-1.1",
    "prompt": "a paper plane crossing a sunlit kitchen, slow motion"
  }'

# → 202 { "id": "vid_123", "status": "queued" }

# 2 · poll until it says completed — the cost rides the job, not the poll
curl https://brain.deployd.network/ai/v1/videos/vid_123 \
  -H "Authorization: Bearer ob_live_YOUR_KEY"

# 3 · download it
curl https://brain.deployd.network/ai/v1/videos/vid_123/content \
  -H "Authorization: Bearer ob_live_YOUR_KEY" \
  -o out.mp4

The model above is the id the endpoint answers to — not this page's address.