HappyHorse 1.0 - Reference to Video
happyhorse_1.0_r2v
HappyHorse 1.0 Reference to Video generates video from one or more reference images and a text prompt.
Endpoints
Section titled “Endpoints”POST /v1/queue/happyhorse_1.0_r2v # Create taskGET /v1/queue/happyhorse_1.0_r2v/requests/{request_id}/status # Check statusGET /v1/queue/happyhorse_1.0_r2v/requests/{request_id}/response # Get resultPUT /v1/queue/happyhorse_1.0_r2v/requests/{request_id}/cancel # Cancel taskRequest parameters
Section titled “Request parameters”curl --location "https://cloud.seaart.ai/model/v1/queue/happyhorse_1.0_r2v" \ --header "Authorization: Bearer YOUR_API_KEY" \ --header "Content-Type: application/json" \ --data '{ "prompt": "A red apple slowly rotating on a white table, clean studio lighting, static camera.", "media": [ { "type": "reference_image", "url": "https://image.cdn2.seaart.me/2026-06-01/d8ejq1de878c739e2lrg/995ff4fe1eeec10a06c3c7a172862733.webp" } ], "duration": 5, "resolution": "720P", "ratio": "4:3" }'Text prompt describing the generated video content. Chinese and English are supported. Use placeholders such as [Image 1] and [Image 2] to reference images in the same order as the media array, for example [Image 1] gallops through a forest while [Image 2] follows behind. The maximum length is 2500 Chinese characters or 5000 non-Chinese characters, and content beyond the limit is truncated automatically.
Reference image array.
Range: 1 to 9 reference images
Media type, fixed to reference_image.
Reference image URL or Base64-encoded image data.
Image requirements:
Supported formats: JPEG, JPG, PNG, WEBP
Short side: at least 400 pixels
Recommended resolution: 720P or higher
File size: up to 20MB
Input format:
Publicly accessible HTTP or HTTPS URL
Base64 format: data:<MIME_type>;base64,<base64_data>
MIME types: JPEG/JPG use image/jpeg, PNG uses image/png, and WEBP uses image/webp.
Video duration in seconds. Billing is based on successfully generated output video seconds, so this parameter affects cost.
Range: 3 - 15
Default: 5
Video resolution. Different resolution tiers use different unit prices, so this parameter affects billing cost.
Options: 720P, 1080P
Default: 1080P
Aspect ratio for the generated video.
Options: 16:9, 9:16, 1:1, 4:3, 3:4, 4:5, 5:4, 9:21, 21:9
Default: 16:9
Random seed. If omitted, the system generates a random seed automatically. Use the same seed across repeated calls to improve reproducibility.
Range: 0 - 2147483647
Whether to add a watermark to the lower-right corner of the generated video. The fixed watermark text is Happy Horse.
Options: true, false
Default: true
Response parameters
Section titled “Response parameters”{ "request_id": "mmsu_01hxyz...", "response_url": "https://cloud.seaart.ai/model/v1/queue/happyhorse_1.0_r2v/requests/mmsu_01hxyz.../response", "status_url": "https://cloud.seaart.ai/model/v1/queue/happyhorse_1.0_r2v/requests/mmsu_01hxyz.../status", "cancel_url": "https://cloud.seaart.ai/model/v1/queue/happyhorse_1.0_r2v/requests/mmsu_01hxyz.../cancel", "queue_position": 0}| Field | Type | Description |
|---|---|---|
request_id | string | Task ID used for all follow-up operations. |
response_url | string | URL to fetch the final result. |
status_url | string | URL to query task status. |
cancel_url | string | URL to cancel the task. |
queue_position | int | Current queue position. |