
AI Text to Image Generator
Create polished images from prompts with leading AI image models, flexible settings, and a fast browser-based workflow.
Animate images via Alibaba Happy Horse 1.1 API with strong temporal consistency, stable performance, and scalable creative production workflows. Open-Weight Happy Horse AI for flexible image-to-video generation.
// Step 1: Submit generation request
const response = await fetch('https://api.flaq.ai/api/v1/video/task', {
method: 'POST',
headers: {
'Content-Type': 'application/json',
'Authorization': 'Bearer YOUR_API_KEY'
},
body: JSON.stringify({
model_name: 'happyhorse-1.1-image-to-video',
prompt: 'Gentle motion; cinematic lighting',
duration: 5,
resolution: '1080p',
seed: 42,
image_url: 'https://example.com/first-frame.jpg'
})
});
const { data } = await response.json();
const taskId = data.task_id;
// Step 2: Poll for results
const taskId = data.task_id;
const pollResult = async (taskId) => {
const res = await fetch(`https://api.flaq.ai/api/v1/video/${taskId}`, {
headers: { 'Authorization': 'Bearer YOUR_API_KEY' }
});
return res.json();
};
while (true) {
const pollResultData = await pollResult(taskId);
const status = pollResultData.data.task_status;
if (status === 'succeed') {
console.log(pollResultData.data.task_result.videos[0].url);
break;
}
if (status === 'failed') {
console.error(pollResultData.data.task_status_msg);
break;
}
await new Promise(resolve => setTimeout(resolve, 10000));
}
# Step 1: Submit generation request
import requests
response = requests.post(
'https://api.flaq.ai/api/v1/video/task',
headers={
'Content-Type': 'application/json',
'Authorization': 'Bearer YOUR_API_KEY'
},
json={
'model_name': 'happyhorse-1.1-image-to-video',
'prompt': 'Gentle motion; cinematic lighting',
'duration': 5,
'resolution': '1080p',
'seed': 42,
'image_url': 'https://example.com/first-frame.jpg'
}
)
result = response.json()
task_id = result['data']['task_id']
# Step 2: Poll for results
task_id = response.json()['data']['task_id']
poll_url = f"https://api.flaq.ai/api/v1/video/{task_id}"
while True:
poll_result = requests.get(poll_url, headers={'Authorization': 'Bearer YOUR_API_KEY'}).json()
status = poll_result['data']['task_status']
if status == 'succeed':
print(poll_result['data']['task_result']['videos'][0]['url'])
break
if status == 'failed':
print(poll_result['data']['task_status_msg'])
break
time.sleep(10)
# Step 1: Submit generation request
curl -X POST https://api.flaq.ai/api/v1/video/task \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_API_KEY" \
-d '{
"model_name": "happyhorse-1.1-image-to-video",
"prompt": "Gentle motion; cinematic lighting",
"duration": 5,
"resolution": "1080p",
"seed": 42,
"image_url": "https://example.com/first-frame.jpg"
}'
# Step 2: Poll for results
# Replace {task_id} with the task_id returned from the submit response
curl -X GET "https://api.flaq.ai/api/v1/video/{task_id}" \
-H "Authorization: Bearer YOUR_API_KEY"
| Parameters | Price | Original Price | Discount |
|---|
Happy Horse 1.1 Image-to-Video API delivers upgraded Alibaba video animation for developers, creative teams, and content platforms. This professional image-to-video API integration transforms a required first-frame image into a polished video clip while preserving the input frame's subject, composition, and visual identity. Compared with Happy Horse 1.0, Happy Horse 1.1 improves motion expression, subject consistency, prompt following, and visual texture, making it a stronger choice for product animation, social media content, advertising, and automated creative workflows on Flaq AI.
Note Please ensure your prompts and uploaded images comply with Alibaba's safety guidelines. If an error occurs, review your input for restricted content, adjust it, and try again.
Happy Horse 1.1 vs. Happy Horse 1.0 Image-to-Video
Happy Horse 1.0 provides affordable source-image animation. Happy Horse 1.1 upgrades the workflow with smoother motion, better subject consistency, richer visual texture, improved prompt following, and first-frame guided composition for more polished video outputs.
Happy Horse 1.1 vs. Wan 2.7 Image-to-Video
Wan 2.7 is a strong Alibaba model for advanced image animation. Happy Horse 1.1 focuses on practical production animation with upgraded visual quality, source-image preservation, and scalable API access on Flaq AI.
Happy Horse 1.1 vs. Seedance 2.5 Image-to-Video
Seedance 2.5 emphasizes upgraded ByteDance cinematic animation. Happy Horse 1.1 differentiates with Alibaba's native multimodal video approach, strong subject preservation, and source-guided animation for commerce, social, and campaign workflows.
Happy Horse 1.1 vs. Veo 3.1 Fast Image-to-Video
Veo 3.1 Fast is optimized for rapid Google image animation. Happy Horse 1.1 provides an affordable Alibaba API path with improved source consistency, motion quality, and first-frame guided output.
Happy Horse 1.1 vs. Runway Image-to-Video
Runway provides broad creative tools for visual experimentation. Happy Horse 1.1 Image-to-Video API is designed for programmatic access, repeatable production workflows, and scalable animation inside applications.
Explore several AI creation tools for quick image and video workflows in your browser, then scale successful ideas with Flaq AI's production-ready model APIs. Flaq AI provides a unified API layer for all models, making it easy to use and scale your workflows.

Create polished images from prompts with leading AI image models, flexible settings, and a fast browser-based workflow.

Upload a reference image, guide edits with prompts, and transform visuals for design, marketing, and creative production.

Turn written scene ideas into short AI videos with model selection, motion prompts, and practical generation controls.

Animate reference images into smooth AI video clips for products, portraits, social posts, and creative concepts.