模型 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
提示词上限
5000 字符
请求字段
模型 ID 放在顶层字段。模型专属控制项放入 params。
| Key | 类型 | 必填 | 默认值 | 说明 |
|---|---|---|---|---|
| model | string | 是 | happyhorse-1-1 | 使用 happyhorse-1-1 作为 API 模型 ID。 |
| prompt | string | 否 | - | 这个模型最多 5000 个字符。 |
| params | object | 否 | - | 模型专属参数对象。可用 key 见下方参数表。 |
| 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
Duration 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"
}
]
}
}创建响应
创建接口会返回公开任务 ID。继续轮询状态接口,直到任务成功或失败。
{
"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 上传参考素材。