Authentication
authorization string required
All APIs require authentication via Bearer Token.
Get API Key:
Visit API Key Management Page to get your API Key
Usage:
Add to request header:
Authorization: Bearer YOUR_API_KEY
Parameters
model string required
Model ID to use for the request
Value: viduq1_text2video
style string
Style
general: General style, can be controlled through prompts
anime: Anime style, optimized for anime aesthetics with better performance for anime-related prompts
Options: general, anime
Default: general
prompt string required
Text description for video generation, maximum 2000 characters
duration integer
Video duration in seconds
Options: 5
Default: 5
seed integer
Random seed, when not provided or set to 0, uses a random number instead, manual setting uses the specified seed
aspect_ratio string
Aspect ratio
Options: 16:9, 9:16, 1:1
Default: 16:9
resolution string
Resolution parameter
Options: 1080p
Default: 1080p
movement_amplitude string
Movement amplitude
Options: auto, small, medium, large
Default: auto
bgm boolean
Whether to add background music to the generated video
When true, the system will automatically select and add appropriate music from the preset BGM library; when false, no BGM is added
BGM has no time limit, the system automatically adapts to video duration
Options: true, false
Default: false
payload string
Pass-through parameter, no processing required, only data transmission, maximum 1048576 characters
off_peak boolean
Note: Temporarily unavailable
Off-peak mode, off-peak mode consumes fewer points. Tasks submitted in off-peak mode will be generated within 48 hours. Tasks that cannot be completed will be automatically canceled and points will be refunded
When true, generates video during off-peak hours; when false, generates video immediately
Options: true, false
Default: false
watermark boolean
Whether to add a watermark. When true, a watermark is added; when false, no watermark is added
Currently watermark content is fixed and AI-generated, by default no watermark is added
Options: true, false
Default: false
wm_position integer
Watermark position, indicating where the watermark appears on the image
Options: 1 (Top-left), 2 (Top-right), 3 (Bottom-right), 4 (Bottom-left)
Default: 3
wm_url string
Watermark content, provided as an image URL, when not provided, the default AI-generated watermark content is used
meta_data string
Metadata identifier, JSON format string, pass-through field
You can customize the format or use the example format. Example:
{
"Label": "your_label",
"ContentProducer": "yourcontentproducer",
"ContentPropagator": "your_content_propagator",
"ProduceID": "yourproductid",
"PropagateID": "your_propagate_id",
"ReservedCode1": "yourreservedcode1",
"ReservedCode2": "your_reserved_code2"
}
When this parameter is empty, the default metadata identifier generated by vidu is used
callback_url string
Callback URL
Polling
Since video generation takes time, you need to poll the task status after creation
The initial response returns the task ID and initial status. The actual generation results must be obtained through polling the task status endpoint
Response Format
Options: 1, 2, 3, 4
Default: 3
wm_url string
Watermark content, image URL here
When not provided, the default watermark is used: content generated by AI
payload string
Pass-through parameter. No processing required, only data transmission, maximum transmission length is 1048576 characters
callback_url string
Callback URL
Polling
Since video generation takes time, you need to poll the task status after creation
The initial response returns the task ID and initial status. The actual generation results must be obtained through polling the task status endpoint
Response Format
error object
Error information. Only present when status is failed.
code
integerError code
error_message
stringDetailed error message
output array
Generation results. Only present when status is completed.
content
arrayList of generated content
type
stringResource type
Value:
videourl
stringGenerated content URL
usage object
Usage statistics. Only present when status is completed.
cost
stringTotal cost in USD
discount
numberDiscount amount
metadata object
Metadata information.
Error Codes
| Error Code | Description |
|---|---|
| 0 | No error |
| 8008001001 | Missing Prompt |
| 8008001002 | Invalid parameter value |
| 8008001003 | Invalid Style |
| 8008001098 | Generation failed |
| 8008001099 | Provider unavailable |