Skip to main content
POST
/
v3
/
async
/
vidu-q1-text2video
Vidu Q1 Text-to-Video
curl --request POST \
  --url https://api.myrouter.ai/v3/async/vidu-q1-text2video \
  --header 'Authorization: <authorization>' \
  --header 'Content-Type: <content-type>' \
  --data '
{
  "prompt": "<string>",
  "style": "<string>",
  "duration": 123,
  "seed": 123,
  "aspect_ratio": "<string>",
  "resolution": "<string>",
  "movement_amplitude": "<string>",
  "bgm": true
}
'
{
  "task_id": "<string>"
}
Vidu Q1 Text-to-Video generates smooth and seamless videos using keyframe technology, maintaining a consistent thematic style.
This is an async API that only returns the task_id of the async task. You should use the task_id to call the Get Async Task Result API to retrieve the generated result.

Request Headers

Content-Type
string
required
Enum: application/json
Authorization
string
required
Bearer authentication format: Bearer {{API Key}}.

Request Body

prompt
string
required
Text prompt for video generation, maximum length of 1500 characters.
style
string
Output video style. Default: general
Possible values: general, anime
  • general: General style. Allows style control via prompts
  • anime: Anime style. Optimized for anime aesthetics, with better performance for anime-related prompts
duration
integer
Video duration in seconds. Default: 5 seconds, currently only the 5 second option is supported.
seed
integer
Random seed for video generation.
  • Default: random seed value
  • Manually set values will override the default random seed
aspect_ratio
string
Output video aspect ratio. Default: 16:9
Possible values: 16:9, 9:16, 1:1
resolution
string
Output video resolution. Default: 1080p, currently only the 1080p option is supported.
movement_amplitude
string
Movement amplitude of objects in the frame. Default: auto
Possible values: auto, small, medium, large
bgm
boolean
Whether to add background music to the generated video. Default: false
Possible values: true, false
When set to true, the system will automatically add suitable BGM. BGM has no duration limit; the system will automatically adapt to the video length.

Response

task_id
string
required
The task_id of the async task. Use the task_id to call the Get Async Task Result API to retrieve the generated result.