Skip to main content
POST
/
api
/
py
/
google-veo-3-t2v
/
generate
Generate Video from Text
curl --request POST \
  --url https://www.unitedcompute.ai/api/py/google-veo-3-t2v/generate \
  --header 'Content-Type: application/json' \
  --header 'X-API-Key: <api-key>' \
  --data '
{
  "prompt": "<string>",
  "webhook_url": "<string>",
  "num_generations": 1
}
'
{
"status": "processing",
"request_id": "6aa9b0286996faf798a1ea5704874386",
"message": "Video generation started."
}

Authorizations

X-API-Key
string
header
required

Body

application/json
prompt
string
required

The text description of the video you want to generate

Example:

"<string>"

webhook_url
string<uri>

Optional webhook URL to receive completion notifications

Example:

"<string>"

num_generations
integer
default:1

Number of videos to generate in parallel. Each generation counts as a separate credit charge.

Required range: 1 <= x <= 4
Example:

1

Response

Request processed successfully

  • Option 1
  • Option 2
status
enum<string>
Available options:
processing
Example:

"processing"

request_id
string

Unique identifier for this generation task

Example:

"6aa9b0286996faf798a1ea5704874386"

message
string
Example:

"Video generation started."