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.5 Transition API Usage Guide
Overview
Pixverse v5.5 Transition allows for morphing effects and seamless scene evolutions by specifying a starting and an ending image. The model creates fluid intermediate frames to produce a transformation guided by a transition prompt.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 |
|---|---|---|---|---|---|
| first_frame_image | string | Yes | URL of the image to be the first frame. | - | JPG, PNG, WebP. |
| last_frame_image | string | Yes | URL of the image to be the last frame. | - | Requires first_frame_image. |
| prompt | string | Yes | Describes the transformation connecting the images. | - | Max 2048 chars. |
| negative_prompt | string | No | Elements to exclude from the transition. | "" | - |
| duration | enum | Yes | Video length in seconds. | 5 | 5, 8, 10 (10s unavailable at 1080p). |
| quality | enum | Yes | Video resolution. | 540p | 360p (Turbo), 540p, 720p, 1080p. |
| generate_audio_switch | boolean | No | Generate synchronized audio/SFX. | 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 to be processed |
| processing | Video transformation is in progress |
| success | Video generation completed successfully |
| failed | Video generation failed |