> ## Documentation Index
> Fetch the complete documentation index at: https://docs.gmicloud.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# pixverse-v5.5-t2v

> API usage guide for pixverse-v5.5-t2v.

{/* source_model_id: pixverse-v5.5-t2v */}

{/* source_updated_at: 1782168309 */}

**Model ID**

```bash theme={null}
pixverse-v5.5-t2v
```

**Calling method:** async

# Pixverse v5.5 Text-to-Video API Usage Guide

## Overview

Pixverse v5.5 is an advanced video generation model supporting high-quality motion, cinematic multi-shot camera control, and integrated audio synchronization. This API allows for seamless text-to-video generation with granular control over style, resolution, and prompt optimization.

## Authentication

All API requests require authentication using an API key. Include your API key in the Authorization header:
Authorization: Bearer YOUR\_API\_KEY

***

## Submit Video Generation Request

### Base URL

[https://console.gmicloud.ai](https://console.gmicloud.ai)

### Endpoint

POST /api/v1/ie/requestqueue/apikey/requests

### Request Format (cURL)

```bash theme={null}
curl -X POST "https://console.gmicloud.ai/api/v1/ie/requestqueue/apikey/requests" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "pixverse-v5.5-t2v",
    "payload": {
      "prompt": "A majestic cinematic shot of a dragon flying over a crystalline lake at sunset",
      "negative_prompt": "blurry, low quality, distorted",
      "duration": "5",
      "aspect_ratio": "16:9",
      "quality": "1080p",
      "style": "none",
      "thinking_type": "auto",
      "generate_audio_switch": true,
      "generate_multi_clip_switch": false
    }
  }'
```

### Request Parameters

| Parameter                     | Type    | Required | Description                               | Default | Constraints                          |
| ----------------------------- | ------- | -------- | ----------------------------------------- | ------- | ------------------------------------ |
| prompt                        | string  | Yes      | Primary text prompt describing the video. | -       | Max 2048 chars.                      |
| negative\_prompt              | string  | No       | Elements to exclude from the video.       | ""      | -                                    |
| duration                      | enum    | Yes      | Video length in seconds.                  | 5       | 5, 8, 10 (10s unavailable at 1080p). |
| aspect\_ratio                 | enum    | Yes      | Frame dimensions.                         | 16:9    | 16:9, 9:16, 1:1, 4:3, 3:4.           |
| quality                       | enum    | Yes      | Video resolution.                         | 540p    | 360p (Turbo), 540p, 720p, 1080p.     |
| thinking\_type                | enum    | No       | Internal prompt optimization.             | auto    | enabled, disabled, auto.             |
| generate\_audio\_switch       | boolean | No       | Generate BGM and sound effects.           | false   | -                                    |
| generate\_multi\_clip\_switch | boolean | No       | Enable dynamic camera transitions.        | false   | -                                    |
| seed                          | integer | No       | Seed for reproducible results.            | -       | 0 - 2147483647.                      |

Visual Style Options: none (Default), anime, 3d\_animation, clay, comic, cyberpunk.

***

## Check Request Status

### Endpoint

GET /api/v1/ie/requestqueue/apikey/requests/{request_id}

### Example Response

```bash theme={null}
{
  "request_id": "550e8400-e29b-41d4-a716-446655440000",
  "org_id": "pixverse",
  "model": "pixverse-v5.5-t2v",
  "status": "success",
  "payload": {
    "prompt": "A majestic cinematic shot of a dragon...",
    "duration": "5",
    "quality": "1080p"
  },
  "outcome": {
    "video_url": "https://storage.googleapis.com/bucket/generated-video.mp4"
  },
  "created_at": 1750442925,
  "updated_at": 1750442930
}
```

***

## Request Status Values

| Status     | Description                             |
| ---------- | --------------------------------------- |
| queued     | Request is waiting to be processed      |
| processing | Video generation is in progress         |
| success    | Video generation completed successfully |
| failed     | Video generation failed                 |
| cancelled  | Request was cancelled                   |
