Model IDDocumentation 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.6 Image-to-Video API Usage Guide
Overview
Pixverse v5.6 Image-to-Video (I2V) is an advanced model designed to animate static images using text guidance. It supports cinematic camera controls, high-quality motion consistency, and integrated audio generation to bring static frames to life.Authentication
All API requests require authentication using an API key. Include your API key in the Authorization header: Authorization: Bearer YOUR_API_KEYSubmit Video Generation Request
Base URL
https://console.gmicloud.aiEndpoint
POST /api/v1/ie/requestqueue/apikey/requestsRequest Format (cURL)
Request Parameters
| Parameter | Type | Required | Description | Default | Constraints |
|---|---|---|---|---|---|
| image_url | string | Yes | URL of the source image (JPG, PNG, WebP). | - | Must be a public URL. |
| prompt | string | Yes | Description of the motion or action. | - | Describe the change. |
| negative_prompt | string | No | Elements to avoid in the animation. | "" | - |
| 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, 540p, 720p, 1080p. |
| thinking_type | enum | No | Internal prompt reasoning. | auto | enabled, disabled, auto. |
| generate_audio_switch | boolean | No | Generate synchronized SFX/BGM. | false | - |
| generate_multi_clip_switch | boolean | No | Enable cinematic camera changes. | false | - |
| seed | integer | No | Seed for reproducibility. | - | 0 - 2147483647. |
Check Request Status
Endpoint
GET /api/v1/ie/requestqueue/apikey/requests/{request_id}Example Response
Request Status Values
| Status | Description |
|---|---|
| queued | Request is waiting in the queue |
| processing | Video is being animated |
| success | Animation complete; URL is in outcome |
| failed | Request failed |