HappyHorse 1.1 API
HappyHorse 1.1 ist Alibabas neueste HappyHorse-Videofamilie auf OmniaKey. Eine Karte deckt alle drei Nutzungsarten ab, und jede hat ihre eigene Modell-ID: happyhorse-1.1-t2v für Text zu Video, happyhorse-1.1-i2v für ein Startbild und happyhorse-1.1-r2v für bis zu neun Referenzbilder.
- Aufrufbare Modell-IDs
- happyhorse-1.1-t2vhappyhorse-1.1-i2vhappyhorse-1.1-r2v
- Anbieter
- Alibaba
- Modalität
- KI-Video
- Pro Sekunde Ausgabe
- $0,07–$0,18
- Zuletzt überprüft
- 2026-09-14
01
Wofür es passt
Wählen Sie HappyHorse 1.1 für die sauberste Bewegung, Beleuchtung und Motivtreue der Familie, je nach Auflösung $0.07 bis $0.18 pro Sekunde; wechseln Sie nur dann zu HappyHorse 1.0, wenn Ihre Prompts auf dessen Look abgestimmt sind.
02
Was es leistet
Text zu Video
happyhorse-1.1-t2v
Erzeugt aus einem Text-Prompt einen kurzen Videoclip.
Bild zu Video
happyhorse-1.1-i2v
Belebt ein Standbild zu einem kurzen Videoclip.
Referenzvideo
happyhorse-1.1-r2v
Nutzt Referenzmaterial, um den generierten Clip zu steuern.
03
So rufst du es auf
Medienmodelle arbeiten asynchron: Aufgabe erstellen, bis zum Abschluss abfragen und dann die signierte Asset-URL herunterladen.
# 1. Create the job. 202 Accepted; the body carries the task id,
# the pre-charged price, and a poll_url. Reuse one Idempotency-Key
# across retries so a timeout never starts a second paid job.
curl --fail-with-body https://api.omniakey.com/v1/media/tasks \
-H "Authorization: Bearer $OMNIAKEY_API_KEY" \
-H "Content-Type: application/json" \
-H "Idempotency-Key: happyhorse-1.1-001" \
-d '{
"model": "happyhorse-1.1-t2v",
"type": "video",
"operation": "text_to_video",
"input": {"prompt": "a paper boat on a quiet lake at sunset"},
"parameters": {"duration": 6, "resolution": "720p"}
}'
# 2. The operation picks the model id on this route:
# happyhorse-1.1-t2v prompt only
# happyhorse-1.1-i2v media[] type "first_frame"
# happyhorse-1.1-r2v media[] type "reference_image"
# 3. Poll GET /v1/media/tasks/{id} until status is
# succeeded | failed | canceled. Progress carries percent and stage.
curl --fail-with-body https://api.omniakey.com/v1/media/tasks/TASK_ID \
-H "Authorization: Bearer $OMNIAKEY_API_KEY"
# 4. Download assets[0].url before expires_at, or poll again for a
# fresh signed URL. Failed and canceled jobs are refunded.
curl -sS -o out.mp4 "$(jq -r '.assets[0].url' result.json)"04
Preis
Videoaufträge werden pro Sekunde erzeugter Ausgabe abgerechnet, nicht pro Token. Fehlgeschlagene oder abgebrochene Aufträge werden automatisch erstattet.
$0,07–$0,18pro Sekunde
- 480P
- $0,07pro Sekunde
- 720P
- $0,14pro Sekunde
- 1080P
- $0,18pro Sekunde
Weitere Modelle von Alibaba
Häufig gestellte Fragen
Wie rufe ich HappyHorse 1.1 auf OmniaKey auf?
Sende ein POST an /v1/media/tasks mit der Modell-ID, type "video" und operation "text_to_video" – oder "image_to_video" mit einem Startbild in input.media[] (type "first_frame"). Verwende bei Wiederholungen denselben Idempotency-Key, damit ein Timeout keinen zweiten kostenpflichtigen Auftrag startet.
Was kostet HappyHorse 1.1?
HappyHorse 1.1 kostet $0,07–$0,18 pro Sekunde – abgerechnet wird das erzeugte Video. Beim Erstellen wird die angeforderte Dauer vorab vom Guthaben abgebucht; fehlgeschlagene oder abgebrochene Aufträge werden automatisch erstattet.
Warum liefert die API eine Task-ID statt des Videos?
Videorendering dauert etwa eine bis mehrere Minuten, deshalb führt OmniaKey alle Videorouten durch denselben asynchronen Ablauf. Frage GET /v1/media/tasks/{id} ab, bis der Status succeeded ist, und lies dann die signierte Asset-URL.
