HiAPI
  • 模型广场
  • 定价
搜索

搜索 HiAPI 模型、工具和资源。

  • 模型广场
  • 定价
HiAPI

一个 API,所有 AI 模型

通过一个生产级 API,调用领先模型生成图像、视频与音频。

免费获取 API Key

AI 图像 API

  • 全部图像模型
  • GPT Image 2.5 Flare
  • GPT Image 2.5 Sunburst
  • GPT Image 2
  • Nano Banana 2
  • Seedream 5.0 Pro
  • Qwen Image 2.0 Pro
  • FLUX 1.1 Pro

AI 视频 API

  • 全部视频模型
  • Seedance 2.5
  • FLUX.3 Video
  • Seedance 2.0
  • Veo 3.1
  • Kling 3.0 Omni

AI 音频 API

  • 全部音频模型
  • MiniMax Music 2.6
  • MiniMax Music 1.5
  • ElevenLabs v3
  • 文字生成音乐
  • 文字转语音

产品

  • 模型广场
  • 在线试用
  • 定价
  • 图片 API 成本计算器
  • 免费 GPT Image 2 生成器
  • 免费图片去背景
  • 免费 Nano Banana 图片生成器
  • 穿搭风格预览
  • 商品图实验室

开发者

  • Agent 接入
  • 文档
  • API 参考
  • Agent Skills
  • LLM 接入索引
  • 博客

公司

  • 关于我们
  • 联系支持
  • 服务条款
  • 隐私政策

© 2026 hiapi. 保留所有权利。

GitHub 开源项目PyPI Python SDK
此文暂无当前语言版本,显示原文。
  • TL;DR
  • Two real examples: product shot and portrait
  • Example 1: turning a product photo into a promo clip
  • Example 2: animating a portrait
  • How the request actually looks
  • Picking resolution and duration for short-form video
  • FAQ
  • Takeaways
返回博客
使用指南2026年9月16日6 分钟阅读

Using HappyHorse 1.1 Image-to-Video to Make Short-Form Video via the hiapi API

A first-frame image-to-video workflow with two real clips, working API examples, and verified pricing.

hiapiHappyHorse 1.1Video GenerationShort-Form VideoAPI Workflow

最新模型

  • GPT Image 2.5 Flare最低 $0.050/张
  • GPT Image 2.5 Sunburst最低 $0.050/张
  • GPT Image 2最低 $0.030/张
  • Nano Banana 2最低 $0.051/张
查看全部模型

探索模型

文本对话与推理图片生成与编辑视频文生与图生音频语音与音乐
目录
  • TL;DR
  • Two real examples: product shot and portrait
  • Example 1: turning a product photo into a promo clip
  • Example 2: animating a portrait
  • How the request actually looks
  • Picking resolution and duration for short-form video
  • FAQ
  • Takeaways

TL;DR

  • What this is: a real, working image-to-video workflow using happyhorse-1.1/image-to-video on the hiapi API — turn a single product photo or portrait into a native-audio short-form clip, ready for TikTok, Reels, or a product page.
  • Why image-to-video, not text-to-video: when you already have the exact shot — a product on a table, a headshot — locking composition in a still frame and letting the model animate it gives far more predictable results than describing the whole scene from scratch.
  • The task schema is small: image_urls (exactly one first-frame image), an optional prompt for motion guidance, resolution (720p/1080p), and duration (3-15s, default 5). No motion-strength sliders, no camera-path config.
  • Pricing (as of 2026-09): $0.16/s at 720p and $0.21/s at 1080p, billed by duration — a 4s 720p clip like the ones below costs $0.64. Always check hiapi's live pricing page before you budget a batch, since rates can change.
  • Audio is native: HappyHorse 1.1 generates synchronized sound with the motion — no separate audio step, no extra field to set.

Two real examples: product shot and portrait

Below are two clips generated end-to-end through the hiapi API for this article — same model, two different first frames, two different motion intents. Both are inlined as real playable video, not a static thumbnail.

Example 1: turning a product photo into a promo clip

Start from a plain product photo — a pair of wireless earbuds in their charging case — and ask the model for a slow, cinematic reveal instead of just letting the case sit there as a flat image.

Prompt used:

Slow cinematic camera push-in on the matte-black wireless earbuds charging case, the lid opens smoothly on its own revealing the earbuds inside, a soft light sparkle highlight sweeps across the glossy lid, subtle studio light shift, smooth stable motion, no text, no logo, commercial product video style

This is the kind of clip that would otherwise need a real product shoot with a slider rig and a lighting setup — here it comes from one still photo and a text prompt. For e-commerce, this pattern (static hero photo → short looping motion clip) works well as a secondary product-page asset or a native ad creative, since the request is billed as a single 4-second 720p generation ($0.64) rather than a full video shoot.

Example 2: animating a portrait

The second use case is a talking-head or model-style portrait where you want subtle, natural life added to an otherwise static headshot — a slight head turn, a smile forming, hair moving — without changing the framing or background.

Prompt used:

The woman turns her head naturally toward the camera with a soft warm smile, hair moves gently, natural blinking, subtle breathing motion, soft even studio lighting stays consistent, background stays plain and calm, no text

This pattern is useful for turning a batch of headshots — team pages, creator profiles, testimonial sections — into short, low-effort motion assets without booking a videographer for every subject. Because image_urls takes exactly one first-frame image, subject identity and framing stay locked to your source photo; the model only animates motion and light, it doesn't reinterpret the scene.

How the request actually looks

Both clips above came from the same shape of request against hiapi's unified async task API:

{
  "model": "happyhorse-1.1/image-to-video",
  "input": {
    "image_urls": ["https://static.hiapi.ai/blog/happyhorse-1-1-image-to-video-short-form-video/product-first-frame.jpg"],
    "prompt": "Slow cinematic camera push-in on the matte-black wireless earbuds charging case, the lid opens smoothly on its own revealing the earbuds inside, a soft light sparkle highlight sweeps across the glossy lid, subtle studio light shift, smooth stable motion, no text, no logo, commercial product video style",
    "resolution": "720p",
    "duration": 4
  }
}

Submit to POST /v1/tasks, then either poll GET /v1/tasks/:id until status reaches a terminal state, or — better for production — set callback.url so hiapi notifies your service when the task finishes instead of you polling. When status=success, the finished clip is at output[0].url; download it immediately, since that URL is time-limited.

Picking resolution and duration for short-form video

For social-first short-form clips (TikTok, Reels, Shorts), 720p at the shortest duration that still tells the story is usually the practical default — it's cheaper per clip and social platforms re-compress video anyway, so the extra 1080p detail is rarely visible after upload. Reach for 1080p when the clip is destined for a product page or paid ad where a viewer might see it full-screen on a larger display. Duration is the bigger cost lever than resolution here: going from 4s to 8s roughly doubles the bill regardless of resolution tier, so start with the shortest clip that gets your motion idea across and extend only if you actually need the extra seconds.

FAQ

How many images does image-to-video need? Exactly one first-frame image via image_urls (JPEG/PNG/WEBP, shortest side ≥300px, ≤20MB). SVG isn't supported. The whole clip is generated starting from that single frame.

Does the output include audio? Yes — HappyHorse 1.1 produces native, synchronized audio alongside the motion with no extra field to configure.

How is this different from text-to-video or reference-to-video? Image-to-video is driven by one first-frame image, which is why it's the right choice when you already know the exact composition you want. For generating a video purely from a text description with no starting image, use happyhorse-1.1/text-to-video. For precise subject/style control from multiple references (up to 9 images), use happyhorse-1.1/reference-to-video.

What does a clip actually cost? As of 2026-09, hiapi bills HappyHorse 1.1 image-to-video at $0.16/s (720p) or $0.21/s (1080p), by duration. Both example clips above are 4s at 720p, so $0.64 each. Check the live pricing page before running a batch, since per-second rates can be updated.

Takeaways

  • Use image-to-video over text-to-video whenever you already have the exact shot — a product photo, a headshot — and just need it to move.
  • image_urls takes exactly one first-frame image; it doesn't accept an array of references (that's what reference-to-video is for).
  • Audio comes free with every clip — no separate audio-generation step.
  • Duration is the main cost lever: a short 4s clip at 720p is $0.64, and cost scales roughly linearly with seconds, not resolution tier.
  • Compare this workflow against Veo 3.1 Lite's image-to-video pipeline or Seedance-2.0-Fast if you're deciding between video models for a short-form pipeline.

Ready to try it yourself? Grab an API key and point a still photo at happyhorse-1.1/image-to-video — a first clip only costs a few cents to test.

最新模型

探索模型

现在就用 HiAPI 生成

选一个模型,输入你的提示词,直接查看生成结果。

开始生成查看模型价格

HiAPI Blog

相关文章

查看全部文章
ElevenLabs Text-to-Dialogue API for E-Commerce Audio: Product Video Voiceovers and Ad Reads

ElevenLabs Text-to-Dialogue API for E-Commerce Audio: Product Video Voiceovers and Ad Reads

GPT Image 2 Transparent Background: Generate a PNG Without Code

GPT Image 2 Transparent Background: Generate a PNG Without Code

MiniMax Music 2.6: Generate Background Music for Short-Form Video and Ads

MiniMax Music 2.6: Generate Background Music for Short-Form Video and Ads

Using glm-5.3 for E-commerce Copywriting and Support Replies

Using glm-5.3 for E-commerce Copywriting and Support Replies

DeepSeek V4 Pro for E-Commerce: Product Copy and Support Replies

DeepSeek V4 Pro for E-Commerce: Product Copy and Support Replies

Using happyhorse-1.1/reference-to-video to Make Short-Form Video via the hiapi API

Using happyhorse-1.1/reference-to-video to Make Short-Form Video via the hiapi API

HiAPI

现在就用 HiAPI 生成

开始生成
查看全部模型
GPT Image 2.5 Flare最低 $0.050/张
GPT Image 2.5 Sunburst最低 $0.050/张
GPT Image 2最低 $0.030/张
Nano Banana 2最低 $0.051/张
文本
图片
视频
音频