PixVerse V6 - Transition
pixverse_v6_transition
PixVerse V6 Transition generates a transition video from a first-frame image and a last-frame image. It supports up to 15 seconds, up to 1080p, and optional audio generation.
Эндпоинты
Заголовок раздела «Эндпоинты»POST /v1/queue/pixverse_v6_transition # Создать задачуGET /v1/queue/pixverse_v6_transition/requests/{request_id}/status # Проверить статусGET /v1/queue/pixverse_v6_transition/requests/{request_id}/response # Получить результатPUT /v1/queue/pixverse_v6_transition/requests/{request_id}/cancel # Отменить задачуПараметры запроса
Заголовок раздела «Параметры запроса»curl --location "https://odirouter.ai/model/v1/queue/pixverse_v6_transition" \ --header "Authorization: Bearer YOUR_API_KEY" \ --header "Content-Type: application/json" \ --data '{ "first_frame_image": "https://example.com/reference-image.webp", "last_frame_image": "https://example.com/reference-image.webp", "prompt": "A red apple slowly rotating on a white table, clean studio lighting, static camera.", "duration": 5, "quality": "540p" }'OdiRouter first-frame image URL field. The service uploads this image to the PixVerse Upload Image API and uses the returned image ID for the upstream transition video task.
The image must be a publicly accessible HTTP/HTTPS URL. The PixVerse upload API supports JPG, PNG, and WebP files up to 20MB, with width or height up to 10000px.
OdiRouter last-frame image URL field. The service uploads this image to the PixVerse Upload Image API and uses the returned image ID for the upstream transition video task.
The image must be a publicly accessible HTTP/HTTPS URL. The PixVerse upload API supports JPG, PNG, and WebP files up to 20MB, with width or height up to 10000px.
Video prompt describing the content to generate.
Maximum length: 5000 characters
Video duration in seconds.
Range: 1 - 15
Video quality. Different quality tiers consume different credits per output second; enabling audio increases credit usage.
Options: 360p, 540p, 720p, 1080p
Random seed. Use the same seed across repeated calls to improve reproducibility.
Range: 0 - 2147483647
Whether to generate audio for the video.
Options: true, false
Default: false
Параметры ответа
Заголовок раздела «Параметры ответа»{ "request_id": "mmsu_01hxyz...", "response_url": "https://odirouter.ai/model/v1/queue/pixverse_v6_transition/requests/mmsu_01hxyz.../response", "status_url": "https://odirouter.ai/model/v1/queue/pixverse_v6_transition/requests/mmsu_01hxyz.../status", "cancel_url": "https://odirouter.ai/model/v1/queue/pixverse_v6_transition/requests/mmsu_01hxyz.../cancel", "queue_position": 0}| Поле | Тип | Описание |
|---|---|---|
request_id | string | Идентификатор задачи, используемый во всех последующих операциях. |
response_url | string | URL для получения итогового результата. |
status_url | string | URL для проверки статуса задачи. |
cancel_url | string | URL для отмены задачи. |
queue_position | int | Текущая позиция в очереди. |