
AI Text to Image Generator
Create polished images from prompts with leading AI image models, flexible settings, and a fast browser-based workflow.
Generate video from a reference image and prompt with Grok Imagine 1.5 Image-to-Video API. Stable, affordable API for creative clips, product visuals, and ads. Built for free testing and stable API workflows.
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: 'grok-imagine-v1.5-image-to-video',
prompt: 'Subtle camera motion, subject holds pose',
image_url: 'https://example.com/reference.jpg',
duration: 10,
resolution: '720p'
})
});
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));
}
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': 'grok-imagine-v1.5-image-to-video',
'prompt': 'Subtle camera motion, subject holds pose',
'image_url': 'https://example.com/reference.jpg',
'duration': 10,
'resolution': '720p'
}
)
task_id = response.json()['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)
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": "grok-imagine-v1.5-image-to-video",
"prompt": "Subtle camera motion, subject holds pose",
"image_url": "https://example.com/reference.jpg",
"duration": 10,
"resolution": "720p"
}'
# 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 |
|---|
Grok Imagine 1.5 Image-to-Video API delivers cost-effective AI video animation for developers, creative teams, and automated content workflows. This xAI image-to-video API integration helps you transform a reference image into polished motion clips with flexible duration and quality controls. Built for practical production use on Flaq AI, Grok Imagine 1.5 turns static visuals into dynamic video assets while preserving the original scene, subject, and creative direction.
Note Please ensure your prompts and reference images comply with xAI's safety guidelines. If an error occurs, review the image and prompt for restricted content, adjust them, and try again.
Grok Imagine 1.5 Image-to-Video vs. Grok Imagine Image-to-Video
Grok Imagine Image-to-Video is suitable for straightforward reference-image animation workflows. Grok Imagine 1.5 Image-to-Video expands the workflow with more flexible duration and resolution controls, making it a stronger option for teams that need broader output coverage from the same image-to-video API.
Grok Imagine 1.5 Image-to-Video vs. Veo 3.1 Fast Image-to-Video
Veo 3.1 Fast focuses on Google's rapid video animation workflow with strong cinematic motion controls. Grok Imagine 1.5 Image-to-Video differentiates through xAI's creative ecosystem, flexible output settings, and affordable per-second pricing for image-guided video generation on Flaq AI.
Grok Imagine 1.5 Image-to-Video vs. Runway Image-to-Video
Runway offers a mature creative interface and broad video tooling for artists and studios. Grok Imagine 1.5 Image-to-Video API is designed for programmatic workflows, predictable integration, and scalable generation when developers need to automate image animation inside products or production systems.
Grok Imagine 1.5 Image-to-Video vs. Kling Image-to-Video
Kling is widely used for dynamic character motion and expressive scene animation. Grok Imagine 1.5 Image-to-Video API emphasizes reference-image preservation, flexible clip configuration, and cost-effective API access for teams building repeatable video generation pipelines.
Grok Imagine 1.5 Image-to-Video vs. Pika Image-to-Video
Pika provides approachable creative tools for stylized video experiments. Grok Imagine 1.5 Image-to-Video API offers developer-focused integration, prompt-directed motion control, and scalable image-to-video generation for product teams, marketers, and automation-heavy workflows.
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.