PixMind Docs
Api referenceVideo ModelsPixVerse V5 Video Generation

PixVerse V5 Video Generation

Fast text- or image-led short video for social clips and product motion.

Fast text- or single-image video ideation for social clips, transitions, and product motion.

Provider

PixVerse

Model ID

pixverse-v5

Endpoint

POST /v1/generations

Model notes

  • The current route accepts text or one starting image.
  • Duration accepts whole seconds from 4 through 10.

Request parameters

ParameterTypeRequiredDescription
modelstringYes

Stable PixMind model ID. Use `pixverse-v5`.

Allowed values: pixverse-v5

promptstringYes

Natural-language generation or editing instructions.

resolutionstringNo

Output video resolution. This field affects per-second pricing.

Allowed values: 360p, 540p, 720p, 1080p

Default: 360p

durationintegerNo

Requested clip duration in seconds.

Allowed values: 4, 5, 6, 7, 8, 9, 10

Default: 4

aspect_ratiostringNo

Requested output aspect ratio.

Allowed values: 16:9, 9:16, 1:1, 4:3, 3:4

Default: 16:9

image_urlstring (URI)No

Starting image for image-to-video generation.

callback_urlstring (URI)No

HTTPS endpoint that receives the terminal task event. Polling remains available when omitted.

Request example

cURL
curl https://aihub-admin.aimix.pro/v1/generations \
  -H "Authorization: Bearer $PIXMIND_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
  "model": "pixverse-v5",
  "prompt": "A fast product reveal with energetic lighting and a clean final frame",
  "duration": 5,
  "resolution": "720p",
  "aspect_ratio": "9:16",
  "image_url": "https://example.com/product.jpg"
}'
JavaScript
const response = await fetch("https://aihub-admin.aimix.pro/v1/generations", {
  method: "POST",
  headers: {
    "Authorization": `Bearer ${process.env.PIXMIND_API_KEY}`,
    "Content-Type": "application/json"
  },
  body: JSON.stringify({
  "model": "pixverse-v5",
  "prompt": "A fast product reveal with energetic lighting and a clean final frame",
  "duration": 5,
  "resolution": "720p",
  "aspect_ratio": "9:16",
  "image_url": "https://example.com/product.jpg"
})
});

const task = await response.json();

Accepted task response

Generation is asynchronous. Save the id from the response and poll GET /v1/generations/{id} until it reaches a terminal status.

202 Accepted
{
  "id": "img_01JXYZ...",
  "model": "pixverse-v5",
  "status": "processing"
}

API pricing

ConfigurationPrice
360p or 540p$0.067 / second
720p$0.090 / second
1080p$0.179 / second

API pricing uses the apiPlatform role and is separate from PixMind Studio credits. The accepted task response is the final pricing snapshot.