Skip to Content

Veo 3

Overview

Veo 3 is a high-quality video generation model that supports both text-to-video and image-to-video modes. This model offers two versions: Fast and Quality.

Test API KEY: key_00000000000000000000000000000000

Endpoints

1. Create Task

Request

POST https://api.pixwith.ai/api/task/create

Headers

HeaderValueRequired
Content-Typeapplication/jsonYes
Api-Key{API_KEY}Yes

Request Parameters

ParameterTypeRequiredDescription
promptstringYesThe input prompt (e.g., “A cat walking in the garden”)
image_urlsarrayConditional[“https://cdn.pixwith.ai/xxx.jpg ”]. Provide 1 image.
model_idstringYes2-6(Fast), 2-7(Quality)
optionsobjectYesConfiguration options for the task
options.prompt_optimizationbooleanYesIf true, all prompt words will be automatically translated into English.
options.aspect_ratiostringYesAspect ratio of the output. Valid values: '16:9' or '9:16'

Example Request - Text-to-Video (Fast)

{ "prompt": "A cat walking in the garden", "model_id": "2-6", "options": { "prompt_optimization": true, "aspect_ratio": "16:9" } }

Response Parameters

ParameterTypeDescription
codeint1=success, 0=error
messagestringSuccess and failure messages
dataobject
data.task_idstring
data.estimated_timeintEstimated time in seconds

Response

{ "code": 1, "message": "success", "data": { "task_id": "d425ab4dc256f0ebaa84862b9cea8a3d", "estimated_time": 90 } }
Last updated on