v4
latestOpenAPI 3.0.22026-08-02109239415.7 KBGenerate a video from text with Seedance 2.0
Generates a video from a text prompt using the Seedance 2.0 model. The request is always processed asynchronously: this endpoint returns immediately with a generation_id and an empty data array. Poll /v1/generations/{generation_id} with the returned generation_id to retrieve the video once it is ready, or supply webhook_url to have the result delivered to your server.
Video links are available for a limited period of time; if you would like to keep the video, you must download it.
Query parameters
HTTPS URL that Ideogram delivers the generated result to. Ideogram sends a JSON POST to this URL once all images for the request have finished generating. The body mirrors the synchronous generate response: request_id, created, and a data array containing every generated image (url, prompt, resolution, seed, is_image_safe). Each delivery is signed with Ed25519 and verifiable against the public keys at https://api.ideogram.ai/v1/.well-known/jwks.json. Must be HTTPS; private and loopback hosts and the cloud metadata service are rejected.
Request body
Example request
{
"duration": 5,
"aspect_ratio": null,
"num_videos": 1,
"generate_audio": false,
"prompt": "A red fox running through a snowy forest at dawn.",
"resolution": null
}Response
Request accepted; poll or await the webhook for the result.
Example response
{
"data": [
{
"duration": 5,
"aspect_ratio": 969,
"object_type": "video.generation",
"prompt": "prompt",
"resolution": "720p",
"url": "https://ideogram.ai/assets/video/lossless/response/xtdZiqPwRxqY1Y7NExFmzB.mp4?exp=1743867804&sig=e13e12677633f646d8531a153d20e2d3698dca9ee7661ee5ba4f3b64e7ec3f89"
},
{
"duration": 5,
"aspect_ratio": 969,
"object_type": "video.generation",
"prompt": "prompt",
"resolution": "720p",
"url": "https://ideogram.ai/assets/video/lossless/response/xtdZiqPwRxqY1Y7NExFmzB.mp4?exp=1743867804&sig=e13e12677633f646d8531a153d20e2d3698dca9ee7661ee5ba4f3b64e7ec3f89"
}
],
"generation_id": "generation_id",
"created": "2000-01-23T04:56:07+00:00"
}