1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
const axios = require('axios');
const api_key = "YOUR API-KEY";
const url = "https://api.segmind.com/v1/seedance-v1-lite-image-to-video";
const data = {
"image_url": "https://segmind-resources.s3.amazonaws.com/input/73a8dadb-95e6-4bdc-a3ae-a4cd041b99a0-b572c379-3eb8-4c67-893c-b08662f9d11f.jpeg",
"duration": 5,
"prompt": "Generate a serene forest scene at dawn with birds chirping, sunlight filtering through trees, and a gentle mist.",
"resolution": "720p",
"seed": 12345,
"camera_fixed": false
};
(async function() {
try {
const response = await axios.post(url, data, { headers: { 'x-api-key': api_key } });
console.log(response.data);
} catch (error) {
console.error('Error:', error.response.data);
}
})();
Provide a URL to the image for relighting. Use S3 URLs for consistent results.
Set video length in seconds. Opt for 5 seconds for quick previews, 10 for detailed scenes.
Allowed values:
Detail the animation scene vividly. E.g., A sunset beach scene with waves lapping, people playing, sky turning orange.
Choose video clarity; 720p for most uses, 480p for faster processing.
Allowed values:
Define a seed for consistent outputs. Any number 1-999999 suffices.
min : 1,
max : 999999
Whether to fix the camera position.
To keep track of your credit usage, you can inspect the response headers of each API call. The x-remaining-credits property will indicate the number of remaining credits in your account. Ensure you monitor this value to avoid any disruptions in your API usage.
Last Updated 18 Aug 2025 by Rohit
In a bid to make video generation affordable, Bytedance has released the SeeDance Lite series of models (I2V and T2V) that are great for most of the use cases that require quick generation at affordable costs. For users who need higher quality outputs, there is SeeDance Pro, helping you take the output generation one notch higher.
The lite model is pretty powerful and allows creation of smooth, stable and cinematic quality videos of upto 720p resolution. It is great at visual and thematic consistency and gives you great control over camera movements and angles. The models seems to interpret complex natural language very well and allows control over artistic styles, emotion controls, camera control and much more, making it the best tool available today from Bytedance.
By combining clear scene descriptions with parameter tuning, you’ll maximize frame stability, prompt adherence, and cinematic quality.
Q: What inputs does Seedance 1.0 accept?
A: A structured text prompt and an S3 image URL. You can also set duration, resolution, and an optional seed.
Q: How do I maintain consistency across shots?
A: Use a detailed prompt structure and the same seed to ensure visual coherence.
Q: What resolution options are available?
A: Seedance 1.0 supports 480p for fast previews and 720p for higher clarity.
Q: Can I control camera movements?
A: Yes, specify “pan left,” “dolly in,” or “wide shot to close-up” directly in your prompt.
Q: Which artistic styles are supported?
A: From photorealism to stylized illustration and cyberpunk. Combine style keywords with scene details.