Generate 480p videos from text prompts and images with LTX Video 0.9.7 (i2v-480p). Ready-to-use REST inference API, best performance, no coldstarts, affordable pricing.
Idle

$0.2per run·~50 / $10
A city skyline folded from paper, a small train running on paper tracks, with a soft gradient background, origami art style, stop-motion animation texture, creative, minimalist, full of childlike fun.
A detective on a rainy night in a cyberpunk city street, neon lights reflecting on his trench coat, with a solemn expression, smoke rising from his mouth, Blade Runner movie style, cool tones, strong cinematic feel, 4K HD quality.
A cat samurai wearing a bamboo hat, standing on the roof of an ancient temple on a night with falling cherry blossoms, with sharp eyes, ready for a duel, Makoto Shinkai style, strong light and shadow contrast, tense atmosphere.
A girl in an astronaut suit, sitting on the moon, quietly looking at the distant earth, lonely and serene, Ghibli anime style, soft colors, healing atmosphere.
A tiny, lone tent glowing from within, pitched in a vast, empty snowfield under a sky filled with the brilliant aurora borealis. The sheer scale makes the tent seem both vulnerable and defiant.
A grand ballroom, empty and dark, except for a single beam of moonlight. Glitter and confetti cover the floor, remnants of a party long over. A single balloon drifts slowly to the ground.
The deep ocean. A powerful current begins to swirl, gathering water into the shape of a giant, translucent hand that reaches up towards the faint sunlight far above.
Extreme macro shot. The journey of a single, perfect snowflake. It tumbles and spins through the air, its intricate fractal geometry glinting in the faint light, before gently landing and becoming one with a vast expanse of snow.
LTX Video V0.97 Image-to-Video 480p is a fast and efficient image-to-video generation model that transforms static images into dynamic 480p videos. Upload an image, describe the motion you want, and watch your photo come to life — perfect for quick content creation and prototyping.
| Parameter | Required | Description |
|---|---|---|
| image | Yes | Source image to animate (upload or public URL). |
| prompt | Yes | Text description of desired motion and style. |
| negative_prompt | No | Elements to avoid in the output. |
| size | No | Output resolution: 832×480 or 480×832 (default: 832×480). |
| seed | No | Set for reproducibility; leave empty for random. |
| Output | Price |
|---|---|
| Per video | $0.20 |
Grab a WaveSpeedAI API key, then call POST https://api.wavespeed.ai/api/v3/wavespeed-ai/ltx-video-v097/i2v-480p 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 Ltx Video v097 I2v 480p below.
# Submit the prediction
curl -X POST "https://api.wavespeed.ai/api/v3/wavespeed-ai/ltx-video-v097/i2v-480p" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer $WAVESPEED_API_KEY" \
-d '{
"prompt": "A cinematic shot of a city at sunset, soft golden light",
"image": "https://example.com/your-input.jpg",
"negative_prompt": "blurry, low quality, distorted",
"size": "832*480",
"seed": 0
}'
# 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/ltx-video-v097/i2v-480p", {
"prompt": "A cinematic shot of a city at sunset, soft golden light",
"image": "https://example.com/your-input.jpg",
"negative_prompt": "blurry, low quality, distorted",
"size": "832*480",
"seed": 0
});
console.log(result.outputs[0]); // → URL of the generated output# pip install wavespeed
import wavespeed
output = wavespeed.run(
"wavespeed-ai/ltx-video-v097/i2v-480p",
{
"prompt": "A cinematic shot of a city at sunset, soft golden light",
"image": "https://example.com/your-input.jpg",
"negative_prompt": "blurry, low quality, distorted",
"size": "832*480",
"seed": 0
}
)
print(output["outputs"][0]) # → URL of the generated outputLtx Video v097 I2v 480p is a WaveSpeedAI model for video generation from images, exposed as a REST API on WaveSpeedAI. Generate 480p videos from text prompts and images with LTX Video 0.9.7 (i2v-480p). 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/ltx-video-v097-i2v-480p.
Ltx Video v097 I2v 480p starts at $0.20 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`, `size`, `seed`, `negative_prompt`. 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/ltx-video-v097-i2v-480p.
Average end-to-end generation time on WaveSpeedAI is around 46 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.