Video generation model. Produces video clips from text or images.
Key strengths
- Text + image input
- Multiple aspect ratios
- Duration control
- Motion coherence
Use cases
- Short videos
- Ads
- Social content
- Concept clips
Alibaba's alibaba/happyhouse-1.1 is a high-fidelity video generation model. It supports text-to-video and image-to-video workflows with configurable duration, aspect ratio, and resolution, plus first-frame and last-frame control for guided scene composition.
Generates cinematic clips with consistent motion, camera control, and optional native audio. Billed per second of generated content.
alibaba/happyhouse-1.1 is fully OpenAI-compatible — drop in your existing OpenAI Python or Node SDK and switch `baseURL` to `https://api.tokenlx.ai`. TokenLX transparently routes your requests to the optimal provider endpoint while preserving streaming, function-calling, and structured-output semantics.
Performance
Compare different providers across TokenLX · All locations.
Effective Pricing
Pricing is shown by the model billing method, using per-call or per-second prices and resolution tiers.
Recent activity
Total usage per day on TokenLX (last 30 days).
Sample code & API
TokenLX normalizes requests and responses across providers. Use any OpenAI SDK or our native SDK.
import requests, time
headers = {"Authorization": "Bearer sk-tokenlx-...", "Content-Type": "application/json"}
resp = requests.post(
"https://api.tokenlx.ai/v1/aigc/video/tasks",
headers=headers,
json={
"model": "happyhouse-1.1",
"prompt": "新年烟花在城市夜空中绽放",
"duration": 8,
"resolution": "720P",
"aspectRatio": "16:9",
},
)
task = resp.json()
task_id = task.get("taskId") or task.get("task_id") or task.get("id")
# 轮询结果
while True:
result = requests.get(
f"https://api.tokenlx.ai/v1/aigc/video/tasks/{'{'}task_id{'}'}?model=happyhouse-1.1",
headers=headers,
).json()
print("status:", result.get("status"))
if result.get("status") in ("completed", "succeeded", "done"):
print(result)
break
time.sleep(10)Replace sk-aihubrouter-… with your key from the dashboard.
Parameter Reference
POST /v1/aigc/video/tasksGET /v1/aigc/video/tasks/{taskId}?model=happyhouse-1.1Response is raw upstream JSON passthrough — fields vary by channel.
| Parameter | Type | Required | Description |
|---|---|---|---|
| model | string | Yes | Model name |
| prompt | string | Yes | Video description prompt |
| duration | int | No | Duration in seconds (≤15s) |
| aspectRatio | string | No | Aspect ratio 16:99:161:1 |
| resolution | string | No | Output resolution 720P1080P |
| seed | int | No | Random seed — fixed value produces reproducible results |
| referenceImageUrls | array | Image-to-video | Reference image URLs. Formats: JPEG/JPG/PNG/BMP/WEBP; Size: ≤10MB. For reference video (r2v) mode, supply ≥2 images and reference them as "图1" "图2" in prompt. |
| videoInputMode | string | No | Input mode: first_frame (1 image) or reference (≥2 images). Auto-inferred if omitted. first_framereference |
modelstringYespromptstringYesdurationintNoaspectRatiostringNo16:99:161:1resolutionstringNo720P1080PseedintNoreferenceImageUrlsarrayImage-to-videovideoInputModestringNofirst_framereference