Перейти к содержимому
Главная

PixVerse V6 - Text to Video

pixverse_v6_t2v

PixVerse V6 Text to Video generates video from a text prompt. It supports up to 15 seconds, up to 1080p, and optional audio and multi-clip generation.

POST /v1/queue/pixverse_v6_t2v # Создать задачу
GET /v1/queue/pixverse_v6_t2v/requests/{request_id}/status # Проверить статус
GET /v1/queue/pixverse_v6_t2v/requests/{request_id}/response # Получить результат
PUT /v1/queue/pixverse_v6_t2v/requests/{request_id}/cancel # Отменить задачу
Окно терминала
curl --location "https://odirouter.ai/model/v1/queue/pixverse_v6_t2v" \
--header "Authorization: Bearer YOUR_API_KEY" \
--header "Content-Type: application/json" \
--data '{
"prompt": "A red apple slowly rotating on a white table, clean studio lighting, static camera.",
"aspect_ratio": "1:1",
"duration": 5,
"quality": "540p"
}'
prompt string обязательно

Video prompt describing the content to generate.

Maximum length: 5000 characters

aspect_ratio string обязательно

Output video aspect ratio.

Options: 16:9, 4:3, 1:1, 3:4, 9:16, 2:3, 3:2, 21:9

duration int обязательно

Video duration in seconds.

Range: 1 - 15

quality string обязательно

Video quality. Different quality tiers consume different credits per output second; enabling audio increases credit usage.

Options: 360p, 540p, 720p, 1080p

seed int

Random seed. Use the same seed across repeated calls to improve reproducibility.

Range: 0 - 2147483647

generate_audio_switch bool

Whether to generate audio for the video.

Options: true, false

Default: false

generate_multi_clip_switch bool

Single-clip or multi-clip generation switch.

Options: true, false

Default: false

{
"request_id": "mmsu_01hxyz...",
"response_url": "https://odirouter.ai/model/v1/queue/pixverse_v6_t2v/requests/mmsu_01hxyz.../response",
"status_url": "https://odirouter.ai/model/v1/queue/pixverse_v6_t2v/requests/mmsu_01hxyz.../status",
"cancel_url": "https://odirouter.ai/model/v1/queue/pixverse_v6_t2v/requests/mmsu_01hxyz.../cancel",
"queue_position": 0
}
ПолеТипОписание
request_idstringИдентификатор задачи, используемый во всех последующих операциях.
response_urlstringURL для получения итогового результата.
status_urlstringURL для проверки статуса задачи.
cancel_urlstringURL для отмены задачи.
queue_positionintТекущая позиция в очереди.