Hunyuan i2v turns images and text prompts into high-quality videos, generating coherent short clips from descriptive inputs. Ready-to-use REST inference API, best performance, no coldstarts, affordable pricing.
Idle
$0.4per run·~25 / $10
A pale vampire woman slowly walks to a candlelit window, her crimson eyes glowing in the dark. She lifts one hand and gently taps her long, sharp nails against the glass. Her expression shifts from seductive to dangerous. Outside, bats flutter past a glowing full moon, casting flickering shadows across her face. The candlelight flickers, reflecting in her eyes as she stares into the night
Dark background with flashing sign: “Leave your opinion in the comments.
"A sweet baby dressed in a fuzzy yellow duckling costume sits on the soft floor, smiling with wide, delighted eyes. He is carefully holding a real yellow duckling in his hands, which is chirping softly. The baby laughs and gently rocks the duckling as soft sunlight streams through the window, illuminating the scene with a warm, welcoming glow. The duckling moves a little in the baby's hands, pecking the air and chirping softly, while the baby's costume gently sways with its joyful movements."
A girl is terrified, screaming and crying after a snake bites her leg. In panic and pain, she desperately tries to crawl away, sobbing and trembling as the snake slithers nearby.
> A cute orange and white kitten holding a small red guitar in its paws, sitting on the palm of one hand. The kitten is excited, moving its paws up and down as if playing the guitar, with a soft, blurred background full of flowers. The scene is illuminated by soft, golden light, giving it a magical and charming look. Realistic and charming style
A cute and cheerful little mouse with orange and white fur plays a small golden saxophone. He is standing in a warm room with a blurred background of warm wood tones. The little mouse gently nods his head to the rhythm of the music, with a happy expression and sparkling eyes. The scene has a magical atmosphere, with soft particles of light in the background and gentle movement of the musical notes, as if they were being carried by an enchanted breeze.
This woman walks confidently forward,Then look around
A dancer in a flowing gown, abstract brushstrokes, vibrant color splashes, movement study, expressionistic
A futuristic anime character with cybernetic enhancements, standing on a rooftop overlooking a neon-lit city, cyberpunk style, highly detailed.
A woman with glowing eyes floating amidst cosmic dust and stars, surreal, dreamlike, ethereal, nebula colors.
A person walking on a path made of clouds, surrounded by giant floating flowers, whimsical, magical realism, pastel tones
Two people holding hands walking towards a sunset, silhouette art, warm gradients, emotional, serene.
A pixel art adventurer exploring a blocky forest, 8-bit aesthetic, retro gaming style, subtle character animation
Hunyuan Video I2V is an image-to-video model that turns a single reference image into a short animated clip guided by a text prompt. Upload an image to lock in subject, composition, and style, then describe the action and camera behavior you want. The model is well-suited for cinematic motion, character-driven beats, and atmospheric scenes where you want the “still” to come alive with coherent movement.
| Output | Price |
|---|---|
| Per run | $0.40 |
Write prompts like a director’s brief:
Grab a WaveSpeedAI API key, then call POST https://api.wavespeed.ai/api/v3/wavespeed-ai/hunyuan-video/i2v with your input as JSON. The endpoint returns a prediction id; poll the prediction endpoint until status flips to completed, then read the output URL from data.outputs[0]. Examples for Hunyuan Video I2v below.
# Submit the prediction
curl -X POST "https://api.wavespeed.ai/api/v3/wavespeed-ai/hunyuan-video/i2v" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer $WAVESPEED_API_KEY" \
-d '{
"image": "https://example.com/your-input.jpg",
"prompt": "A cinematic shot of a city at sunset, soft golden light",
"num_inference_steps": 30,
"duration": 5,
"seed": -1,
"size": "1280*720"
}'
# Response includes a prediction id. Poll for the result:
curl -X GET "https://api.wavespeed.ai/api/v3/predictions/{request_id}/result" \
-H "Authorization: Bearer $WAVESPEED_API_KEY"
# When status is "completed", read the output from data.outputs[0].// npm install wavespeed
const WaveSpeed = require('wavespeed');
const client = new WaveSpeed(); // reads WAVESPEED_API_KEY from env
const result = await client.run("wavespeed-ai/hunyuan-video/i2v", {
"image": "https://example.com/your-input.jpg",
"prompt": "A cinematic shot of a city at sunset, soft golden light",
"num_inference_steps": 30,
"duration": 5,
"seed": -1,
"size": "1280*720"
});
console.log(result.outputs[0]); // → URL of the generated output# pip install wavespeed
import wavespeed
output = wavespeed.run(
"wavespeed-ai/hunyuan-video/i2v",
{
"image": "https://example.com/your-input.jpg",
"prompt": "A cinematic shot of a city at sunset, soft golden light",
"num_inference_steps": 30,
"duration": 5,
"seed": -1,
"size": "1280*720"
}
)
print(output["outputs"][0]) # → URL of the generated outputHunyuan Video I2v is a WaveSpeedAI model for video generation from images, exposed as a REST API on WaveSpeedAI. Hunyuan i2v turns images and text prompts into high-quality videos, generating coherent short clips from descriptive inputs. Ready-to-use REST inference API, best performance, no coldstarts, affordable pricing. You can call it programmatically or try it from the playground above.
POST your input parameters to the model's REST endpoint (shown in the API tab of this playground) with your WaveSpeedAI API key in the Authorization header. Submission returns a prediction ID; poll the prediction endpoint until status flips to "completed", then read the output URL from the result. The playground generates a ready-to-paste code sample in Python, JavaScript, or cURL for whatever inputs you've set. Full request/response shape is documented at https://wavespeed.ai/docs/docs-api/wavespeed-ai/hunyuan-video-i2v.
Hunyuan Video I2v starts at $0.40 per run. That figure is the base price — the final charge scales with the parameters you set in the form (output size, length, count, references, or whatever knobs this model exposes), so a higher-quality or larger output costs more than a minimal one. The exact cost for your current input is shown live next to the Generate button before you submit, and the actual per-call charge is recorded on the prediction afterwards.
Key inputs: `prompt`, `image`, `duration`, `size`, `seed`, `num_inference_steps`. The full JSON schema (types, defaults, allowed values) is rendered above the Generate button and mirrored in the API reference at https://wavespeed.ai/docs/docs-api/wavespeed-ai/hunyuan-video-i2v.
Average end-to-end generation time on WaveSpeedAI is around 89 seconds per request — measured across recent runs. Queue time scales with global demand; live status is visible in the prediction record.
Commercial usage rights depend on the model's license, set by its provider (WaveSpeedAI). The license summary appears on the model card above; see WaveSpeedAI's Terms of Service for platform-level conditions.