All models
Pixverse v5.6
pixverse/v5.6
PixVerse Video GenerationImage-to-VideoAudio
Pixverse v5.6 is a video generation model supporting text-to-video and image-to-video with audio generation, customizable aspect ratios, and up to 1080p output.
Quick start
# Inspect the price — a plain request returns the 402 challenge:
curl -i https://api.glianalabs.com/v1/infer \
-H "content-type: application/json" \
-d '{
"model": "pixverse/v5.6",
"prompt": "<your prompt>"
}'
# Pay + run in one step with the mppx CLI (create a wallet: npx mppx account create):
npx mppx https://api.glianalabs.com/v1/infer \
-J '{"model": "pixverse/v5.6", "prompt": "<your prompt>"}'Examples
Parameters
Input
prompt string required
Text prompt describing the video to generate
aspect_ratio string optional default: "16:9"
Video aspect ratio
duration number optional default: 5
Video duration in seconds
generate_audio boolean optional default: true
Whether to generate audio with the video
image_input string optional
Base64-encoded reference image for image-to-video generation (data:image/...;base64,...). The image will be uploaded to Pixverse automatically.
motion_mode string optional
Motion mode (fast only available when duration=5; 1080p does not support fast)
negative_prompt string optional
Negative text prompt
quality string optional default: "720p"
Video quality
seed integer optional
Random seed for reproducibility
Output
video: URL to the generated video