Skip to main content
POST
/
v3
/
async
/
pixverse-v6-t2v
PixVerse V6 Text-to-Video
curl --request POST \
  --url https://api.highwayapi.ai/v3/async/pixverse-v6-t2v \
  --header 'Authorization: <authorization>' \
  --header 'Content-Type: <content-type>' \
  --data '
{
  "prompt": "<string>",
  "duration": 123,
  "resolution": "<string>",
  "aspect_ratio": "<string>",
  "thinking_type": "<string>",
  "negative_prompt": "<string>",
  "generate_audio_switch": true
}
'
{
  "task_id": "<string>"
}
Generate videos from text prompts using the PixVerse V6 model, with support for configurable resolution, duration, aspect ratio, and optional audio generation.
This is an asynchronous API and only returns the asynchronous task’s task_id. You should use this task_id to request the Get Task Result API to retrieve the generated result.

Request Headers

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

Request Body

prompt
string
required
Text description of the video content.
duration
integer
default:5
Video duration, in seconds.Value range: [1, 15]
resolution
string
default:"720p"
Resolution of the output video.Options: 360p, 540p, 720p, 1080p
aspect_ratio
string
default:"16:9"
Aspect ratio of the output video.Options: 16:9, 9:16, 1:1, 4:3, 3:4
thinking_type
string
default:"auto"
Thinking type during generation.
negative_prompt
string
Elements to avoid in the generated video.
generate_audio_switch
boolean
default:false
Whether to enable video audio generation.

Response

task_id
string
Use task_id to request the Get Task Result API to retrieve the generated output.