模型 API 接入文件
HappyHorse 1.1 API 接入文件
透過 Rivya Public API v1 呼叫 HappyHorse 1.1,包含模型 ID happyhorse-1-1、輸入類型、參數、Files API 規則、點數和回應範例。
API 可呼叫文字或 URL 可用;參考模式使用 Files API影片
API 模型 ID
happyhorse-1-1
輸入類型
text, file
Files API
參考素材模式需要
基礎點數
per_output_second · 720p=22.5 · 1080p=29 · ⌈total⌉
能力類型
影片
計費方式
METERED
Prompt 上限
5000 字元
請求欄位
模型 ID 放在頂層欄位。模型專屬控制項放入 params。
| Key | 類型 | 必填 | 預設值 | 說明 |
|---|---|---|---|---|
| model | string | 是 | happyhorse-1-1 | 使用 happyhorse-1-1 作為 API 模型 ID。 |
| prompt | string | 否 | - | 這個模型最多 5000 個字元。 |
| params | object | 否 | - | 模型專屬參數物件。可用 keys 請見下方參數表。 |
| client_request_id | string | 否 | - | 可選的用戶端請求 ID,方便你在自己的系統中追蹤請求。 |
模型參數
| Key | 類型 | 必填 | 預設值 | 範圍 | 選項 | 說明 |
|---|---|---|---|---|---|---|
| resolution | select | 否 | 1080p | - | 720p, 1080p | 所選解析度會設定每秒積分費率。 |
| aspect_ratio | select | 否 | 16:9 | - | 16:9, 9:16, 1:1, 4:3, 3:4, 4:5, 5:4, 9:21, 21:9 | 用於純提示與多參考生成;單張圖片生成會沿用首幀。 |
| duration | number | 否 | 5 | min 3 / max 15 / step 1 | - | 選擇 3 至 15 秒的整數輸出片長。 |
上傳策略
先上傳參考文件,再把回傳的 URL 和 durationToken 放入 params.referenceMediaItems。
參考素材規則
首幀或參考圖片: 上傳一張 JPEG、PNG 或 WebP 圖片製作首幀動畫,或上傳 2 至 9 張圖片生成參考引導影片。每個檔案最多 20 MB。
最大文件數
9
支援文件類型
image
時長 Token
影片和音訊參考素材需要時長驗證時,應攜帶 /api/v1/files 回傳的 durationToken。
| kind | 大小上限 | MIME 類型 |
|---|---|---|
| image | 20 MB | image/jpeg, image/png, image/webp |
最小請求
{
"model": "happyhorse-1-1",
"prompt": "A cinematic product reveal with smooth camera movement",
"params": {
"resolution": "1080p",
"aspect_ratio": "16:9",
"duration": 5
}
}參考文件請求
{
"model": "happyhorse-1-1",
"prompt": "A cinematic product reveal with smooth camera movement",
"params": {
"resolution": "1080p",
"aspect_ratio": "16:9",
"duration": 5,
"referenceMediaItems": [
{
"url": "https://cdn.example.com/reference-image.png",
"kind": "image",
"name": "reference-image.png",
"mimeType": "image/png",
"width": 1024,
"height": 1024,
"sizeBytes": 1048576,
"imageDimensionsToken": "image_dimensions_token_from_original_files_api_upload_response"
}
]
}
}建立回應
建立 endpoint 會回傳公開 task id。繼續輪詢狀態 endpoint,直到任務成功或失敗。
{
"id": "task_happyhorse_1_1_example",
"status": "queued",
"model": "happyhorse-1-1",
"reserved_credits": 145,
"final_credits": 0,
"settlement_status": "RESERVED",
"created_at": "2026-05-11T00:00:00.000Z",
"updated_at": "2026-05-11T00:00:00.000Z",
"result": null,
"error": null
}常見錯誤
validation_failed, insufficient_credits, idempotency_conflict, rate_limited, not_found
部分模式需要透過 Files API 上傳參考素材。