Use a API RunComfy para executar pixverse/pixverse/v5.5/text-to-video. Para entradas e saídas aceitas, consulte o esquema.
curl --request POST \
--url https://model-api.runcomfy.net/v1/models/pixverse/pixverse/v5.5/text-to-video \
--header "Content-Type: application/json" \
--header "Authorization: Bearer <token>" \
--data '{
"prompt": "A girl in a yellow raincoat is walking in the rain while holding an umbrella. She calmly steps over wet pavement scattered with autumn leaves. The background features a softly blurred street scene with muted colors. The camera remains fixed, capturing the serene moment steadily."
}'Defina a variável de ambiente YOUR_API_TOKEN com sua chave de API (gerenciamento no Perfil) e inclua em cada solicitação um token Bearer no cabeçalho Authorization : Authorization: Bearer $YOUR_API_TOKEN.
Envie um trabalho de geração assíncrono e receba imediatamente um request_id e URLs para status, resultados e cancelamento.
curl --request POST \
--url https://model-api.runcomfy.net/v1/models/pixverse/pixverse/v5.5/text-to-video \
--header "Content-Type: application/json" \
--header "Authorization: Bearer <token>" \
--data '{
"prompt": "A girl in a yellow raincoat is walking in the rain while holding an umbrella. She calmly steps over wet pavement scattered with autumn leaves. The background features a softly blurred street scene with muted colors. The camera remains fixed, capturing the serene moment steadily."
}'Obtém o estado atual de um request_id ("in_queue", "in_progress", "completed" ou "cancelled").
curl --request GET \
--url https://model-api.runcomfy.net/v1/requests/{request_id}/status \
--header "Authorization: Bearer <token>"Obtém as saídas finais e metadados do request_id; se o trabalho não estiver concluído, a resposta retorna o estado atual para continuar o polling.
curl --request GET \
--url https://model-api.runcomfy.net/v1/requests/{request_id}/result \
--header "Authorization: Bearer <token>"Cancela um trabalho na fila por request_id; trabalhos em andamento não podem ser cancelados.
curl --request POST \
--url https://model-api.runcomfy.net/v1/requests/{request_id}/cancel \
--header "Authorization: Bearer <token>"Forneça uma URL HTTPS publicamente acessível. O host deve permitir buscas no servidor (sem login/cookies), sem limite de taxa agressivo ou bloqueio de bots. Recomendado: imagens ≤ 50 MB (~4K), vídeos ≤ 100 MB (~2–5 min em 720p). Para ativos privados, URLs estáveis ou pré-assinadas.
{
"type": "object",
"title": "Esquema de entrada",
"required": [
"prompt"
],
"properties": {
"prompt": {
"title": "Prompt",
"description": "Descrição de texto obrigatória do assunto, ação, cenário, comportamento da câmera e resultado desejado.",
"type": "string",
"default": "A girl in a yellow raincoat is walking in the rain while holding an umbrella. She calmly steps over wet pavement scattered with autumn leaves. The background features a softly blurred street scene with muted colors. The camera remains fixed, capturing the serene moment steadily."
},
"aspect_ratio": {
"title": "Proporção (L:A)",
"description": "Proporção do vídeo. Os valores exatos são `16:9`, `4:3`, `1:1`, `3:4` e `9:16`.",
"type": "string",
"enum": [
"16:9",
"4:3",
"1:1",
"3:4",
"9:16"
],
"default": "16:9"
},
"resolution": {
"title": "Resolução",
"description": "Resolução de vídeo. Os valores exatos são `360p`, `540p`, `720p` e `1080p`.",
"type": "string",
"enum": [
"360p",
"540p",
"720p",
"1080p"
],
"default": "720p"
},
"duration": {
"title": "Duração",
"description": "Duração do vídeo em segundos. Os valores exatos são 5, 8 e 10; `1080p` está limitado a 5 ou 8 segundos.",
"type": "integer",
"enum": [
5,
8,
10
],
"default": 5
},
"negative_prompt": {
"title": "Prompt negativo",
"description": "Texto opcional que descreve elementos ou artefatos a serem evitados.",
"type": "string",
"default": ""
},
"style": {
"title": "Estilo",
"description": "Predefinição de estilo. Os valores exatos são `anime`, `3d_animation`, `clay`, `comic` e `cyberpunk`.",
"type": "string",
"enum": [
"anime",
"3d_animation",
"clay",
"comic",
"cyberpunk"
],
"default": "anime"
},
"seed": {
"title": "Seed",
"description": "Semente inteira usada para comparações repetíveis.",
"type": "integer",
"default": 0
},
"generate_audio_switch": {
"title": "Gerar áudio",
"description": "Permite a geração de BGM, efeitos sonoros ou diálogos.",
"type": "boolean",
"default": false
},
"generate_multi_clip_switch": {
"title": "Gerar vários clipes",
"description": "Permite a geração de vários clipes com mudanças dinâmicas de câmera.",
"type": "boolean",
"default": false
},
"thinking_type": {
"title": "Otimização do prompt",
"description": "Modo de otimização de prompt: `enabled`, `disabled` ou `auto`.",
"type": "string",
"enum": [
"enabled",
"disabled",
"auto"
],
"default": "auto"
}
}
}{
"output": {
"type": "object",
"properties": {
"image": {
"type": "string",
"format": "uri",
"description": "URL de imagem única"
},
"video": {
"type": "string",
"format": "uri",
"description": "URL de vídeo único"
},
"images": {
"type": "array",
"description": "várias URLs de imagem",
"items": {
"type": "string",
"format": "uri"
}
},
"videos": {
"type": "array",
"description": "várias URLs de vídeo",
"items": {
"type": "string",
"format": "uri"
}
}
}
}
}RunComfy é a principal ComfyUI plataforma, oferecendo ComfyUI online ambiente e serviços, juntamente com fluxos de trabalho do ComfyUI apresentando visuais impressionantes. RunComfy também oferece AI Models, permitindo que artistas utilizem as mais recentes ferramentas de AI para criar arte incrível.