Happy Horse 1.0 Video Generation
Text- or image-led short video for product reveals and concept shots.
Text- or image-led short-form video for product reveals, concept shots, and reference-anchored motion.
Provider
MiniMaxModel ID
happyhorse-1.0Endpoint
POST /v1/generationsModel notes
- This route does not generate native audio.
Request parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
model | string | Yes | Stable PixMind model ID. Use `happyhorse-1.0`. Allowed values: |
prompt | string | Yes | Natural-language generation or editing instructions. |
resolution | string | No | Output video resolution. This field affects per-second pricing. Allowed values: Default: |
duration | integer | No | Requested clip duration in seconds. Allowed values: Default: |
aspect_ratio | string | No | Requested output aspect ratio. Allowed values: Default: |
image_url | string (URI) | No | Starting image for image-to-video generation. |
callback_url | string (URI) | No | HTTPS endpoint that receives the terminal task event. Polling remains available when omitted. |
Request example
curl https://aihub-admin.aimix.pro/v1/generations \
-H "Authorization: Bearer $PIXMIND_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "happyhorse-1.0",
"prompt": "A controlled product turntable shot with soft cinematic camera motion",
"duration": 5,
"resolution": "720p",
"aspect_ratio": "1:1",
"image_url": "https://example.com/product.jpg"
}'const response = await fetch("https://aihub-admin.aimix.pro/v1/generations", {
method: "POST",
headers: {
"Authorization": `Bearer ${process.env.PIXMIND_API_KEY}`,
"Content-Type": "application/json"
},
body: JSON.stringify({
"model": "happyhorse-1.0",
"prompt": "A controlled product turntable shot with soft cinematic camera motion",
"duration": 5,
"resolution": "720p",
"aspect_ratio": "1:1",
"image_url": "https://example.com/product.jpg"
})
});
const task = await response.json();Accepted task response
Generation is asynchronous. Save the id from the response and poll GET /v1/generations/{id} until it reaches a terminal status.
{
"id": "img_01JXYZ...",
"model": "happyhorse-1.0",
"status": "processing"
}API pricing
| Configuration | Price |
|---|---|
| 720p | $0.176 / second |
| 1080p | $0.256 / second |
API pricing uses the apiPlatform role and is separate from PixMind Studio credits. The accepted task response is the final pricing snapshot.