- Learn about PixVerse Platform
- Getting started
- API Reference
- Trouble Shooting
- Resources
Text-to-Video generation
POST
/openapi/v2/video/text/generate
OpenAPI 接口
Request
Header Params
API-KEY
string
required
Ai-trace-id
string
required
Example:
{{$string.uuid}}
Body Params application/json
aspect_ratio
string
required
Example:
16:9
duration
integer
required
Example:
5
model
string
required
Example:
v3.5
motion_mode
string
optional
Default:
normal
Example:
normal
negative_prompt
string
optional
<= 2048 characters
prompt
string
required
<= 2048 characters
quality
string
required
Example:
540p
seed
integer
optional
style
string
optional
Example:
anime
template_id
integer
optional
Example:
302325299692608
water_mark
boolean
optional
Default:
false
Example:
false
Example
{
"aspect_ratio": "16:9",
"duration": 5,
"model": "v3.5",
"motion_mode": "normal",
"negative_prompt": "string",
"prompt": "string",
"quality": "540p",
"seed": 0,
"template_id": 302325299692608,
"water_mark": false
}
Request samples
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://app-api.pixverse.ai/openapi/v2/video/text/generate' \
--header 'API-KEY;' \
--header 'Ai-trace-id: {{$string.uuid}}' \
--header 'Content-Type: application/json' \
--data-raw '{
"aspect_ratio": "16:9",
"duration": 5,
"model": "v3.5",
"motion_mode": "normal",
"negative_prompt": "string",
"prompt": "string",
"quality": "540p",
"seed": 0,
"template_id": 302325299692608,
"water_mark": false
}'
Responses
🟢200OK
application/json
Body
ErrCode
integer
optional
ErrMsg
string
optional
Resp
object
dto.V2OpenAPII2VResp
video_id
integer
optional
Example
{
"ErrCode": 0,
"ErrMsg": "string",
"Resp": {
"video_id": 0
}
}