Dreamina V3.0 Pro turns text or image prompts into 1080P professional videos with natural dynamics, diverse styles, and multi-scene narratives. Ready REST API; best performance, no coldstarts, affordable pricing.
대기 중
$0.6실행당·~16 / $10
A traveler with a backpack walks along a winding trail in the Himalayas. Snow-capped peaks rise in the distance as colorful prayer flags flutter in the cold mountain wind. The air feels crisp and pure, carrying a sense of freedom and discovery.
A young woman sits by the window of a small café on a rainy afternoon, sipping coffee while looking outside. Soft natural light filters through the glass, raindrops sliding down slowly. The camera stays steady as the scene captures her quiet, reflective mood.
A busy street in Tokyo at night, filled with neon lights and people crossing the intersection. Cars pass by, reflections glowing on the wet pavement. The camera pans slightly, showing the vibrant, dynamic energy of the city.
On a mountain peak at sunrise, a young man stands tall, his coat fluttering in the wind. He gazes toward the distant horizon with determination in his eyes. Behind him, the sky glows with golden light, outlining his silhouette in a heroic and inspiring way.
A golden retriever runs freely through a field of wildflowers, chasing butterflies under the afternoon sun. The scene is filled with warmth, playfulness, and the pure joy of companionship.
A lone cyclist rides through a desert road at sunset, the horizon stretching endlessly. The sky burns in shades of red and purple as dust swirls around the wheels, capturing the spirit of solitude and perseverance.
Cherry blossoms bloom along a riverside in spring. A gentle breeze scatters petals into the air as couples walk hand in hand along the water’s edge.
A lone figure sits on the edge of a cliff, gazing at the ocean below. The wind blows through their hair as waves crash against the rocks, a feeling of both peace and melancholy filling the air.
Dreamina V3.0 Pro Text-to-Video is premium text-to-video generation model that creates stunning, cinematic videos from text descriptions. Generate high-quality videos with smooth motion, rich detail, and flexible aspect ratios — perfect for professional content creation.
| Parameter | Required | Description |
|---|---|---|
| prompt | Yes | Text description of the video you want to generate. |
| aspect_ratio | No | Output aspect ratio (default: 16:9). |
| seed | No | Set for reproducibility; -1 for random. |
| Aspect Ratio | Best For |
|---|---|
| 16:9 | YouTube, widescreen displays |
| 4:3 | Classic format, presentations |
| 1:1 | Instagram posts, social media squares |
| 3:4 | Portrait photos, Pinterest |
| 9:16 | TikTok, Instagram Stories, Reels |
| 21:9 | Cinematic ultrawide content |
| 9:21 | Ultra-tall vertical content |
| Output | Price |
|---|---|
| Per video | $0.60 |
Grab a WaveSpeedAI API key, then call POST https://api.wavespeed.ai/api/v3/bytedance/dreamina-v3.0-pro/text-to-video 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 Dreamina v3.0 Pro Text To Video below.
# Submit the prediction
curl -X POST "https://api.wavespeed.ai/api/v3/bytedance/dreamina-v3.0-pro/text-to-video" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer $WAVESPEED_API_KEY" \
-d '{
"prompt": "A cinematic shot of a city at sunset, soft golden light",
"aspect_ratio": "16:9",
"seed": -1
}'
# 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("bytedance/dreamina-v3.0-pro/text-to-video", {
"prompt": "A cinematic shot of a city at sunset, soft golden light",
"aspect_ratio": "16:9",
"seed": -1
});
console.log(result.outputs[0]); // → URL of the generated output# pip install wavespeed
import wavespeed
output = wavespeed.run(
"bytedance/dreamina-v3.0-pro/text-to-video",
{
"prompt": "A cinematic shot of a city at sunset, soft golden light",
"aspect_ratio": "16:9",
"seed": -1
}
)
print(output["outputs"][0]) # → URL of the generated outputDreamina v3.0 Pro Text To Video is a ByteDance model for video generation, exposed as a REST API on WaveSpeedAI. Dreamina V3.0 Pro turns text or image prompts into 1080P professional videos with natural dynamics, diverse styles, and multi-scene narratives. Ready REST 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/bytedance/bytedance-dreamina-v3.0-pro-text-to-video.
Dreamina v3.0 Pro Text To Video starts at $0.60 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`, `aspect_ratio`, `seed`. 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/bytedance/bytedance-dreamina-v3.0-pro-text-to-video.
Average end-to-end generation time on WaveSpeedAI is around 115 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 (ByteDance). The license summary appears on the model card above; see WaveSpeedAI's Terms of Service for platform-level conditions.