
Generates video from text, images, first and last frames, or up to seven references, with native audio, multi-shot cuts, and clip extension.
Generates video from text, images, first and last frames, or up to seven references, with native audio, multi-shot cuts, and clip extension.
pixverse-v6/v1/videos/generationspixverse/v6Live pay-as-you-go rates from the EmpirioLabs catalog. You are billed only for what you use, with no monthly minimum.
Pixverse v6 runs through POST /v1/videos/generations. The request returns a job_id right away; poll GET /v1/jobs/{job_id} until the job completes and read the output URLs from the result. Get an API key from the EmpirioLabs dashboard.
curl https://api.empiriolabs.ai/v1/videos/generations \
-H "Authorization: Bearer $EMPIRIOLABS_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "pixverse-v6",
"prompt": "Describe what you want Pixverse v6 to generate."
}'curl https://api.empiriolabs.ai/v1/jobs/JOB_ID \
-H "Authorization: Bearer $EMPIRIOLABS_API_KEY"import requests
response = requests.post(
"https://api.empiriolabs.ai/v1/videos/generations",
headers={"Authorization": "Bearer YOUR_EMPIRIOLABS_API_KEY"},
json={
"model": "pixverse-v6",
"prompt": "Describe what you want Pixverse v6 to generate.",
},
)
job = response.json()
# Generation runs as an async job. Poll until it completes.
import time
while True:
status = requests.get(
f"https://api.empiriolabs.ai/v1/jobs/{job['job_id']}",
headers={"Authorization": "Bearer YOUR_EMPIRIOLABS_API_KEY"},
).json()
if status.get("status") in ("completed", "failed"):
print(status)
break
time.sleep(5)Request parameters supported by the Pixverse v6 API on EmpirioLabs. Defaults apply when a field is omitted.
| Parameter | Type | Default | Range / values | Description |
|---|---|---|---|---|
| prompt | string | - | - | Scene description, up to 2048 characters. In reference mode you can address a named reference inline as @name followed by a space. |
| mode | enum | auto | auto, t2v, i2v, transition, reference, extend | How your inputs are used. auto detects it from what you attach. t2v is text to video. i2v animates one image. transition interpolates between a first and last frame.... |
| resolution | enum | 720p | 360p, 540p, 720p, 1080p | Output resolution. Higher resolutions bill at a higher per-second rate. |
| aspect_ratio | enum | 16:9 | 16:9, 4:3, 1:1, 3:4, 9:16, 2:3, 3:2, 21:9 | Output aspect ratio. Used by text-to-video and reference modes. Image-driven modes follow the source image instead. |
| duration | number | 5 | 1 to 15 | Clip length in seconds. Ignored when a reference video is supplied, because the output length follows the longest reference. |
| generate_audio_switch | boolean | false | - | Generate native synchronized audio with the video. Bills at the higher with-audio rate for the chosen resolution. |
| generate_multi_clip_switch | boolean | false | - | Produce a multi-shot cut instead of one continuous take. Text-to-video and image-to-video only. |
| seed | number | - | 0 to 2147483647 | Reproducibility seed. The same seed with the same inputs returns a similar result. |
| reference_names | string | - | - | Comma-separated names for the attached reference images, in order, so the prompt can address them as @name. |
| video_reference_names | string | - | - | Comma-separated names for the attached reference videos, in order. Supplying reference videos switches the model into omni reference and bills at the video-reference... |
| image | string | - | - | Source or first-frame image URL. |
| image_end | string | - | - | Last-frame image URL for transition mode. |
| video | string | - | - | Source video URL for extend, or a reference video URL for reference mode. |
PixVerse V6 generates video from a text prompt, a single image, a first and last frame, or up to seven reference images, and can continue an existing clip.
On EmpirioLabs, Pixverse v6 is billed pay as you go: Standard 360p no audio $0.10 per second; Standard 360p with audio $0.14 per second; Standard 540p no audio $0.14 per second. The live rate card on this page always matches what the API charges.
Pixverse v6 is served through POST /v1/videos/generations on api.empiriolabs.ai with standard bearer-token authentication.
Yes. The EmpirioLabs playground runs Pixverse v6 in the browser with the same parameters the API exposes, so you can test prompts before writing code.
Create an EmpirioLabs account, then generate a key under API Keys in the dashboard. Billing is pay-as-you-go credits, so you only pay for the requests you make.
Check out our pricing or reach out if you want your own model deployed on our stack.