More modelsGoogleVeo2

Generate video with google/veo2

Generates a video using the google/veo2 model.

POST
/api/v1/model/generateVideo
AuthorizationBearer <token>

API key is required to authorize requests. Obtain a key from your AtlasCloud dashboard.

In: header

modelstring

model name

seed?integer

The random seed to use for the generation.

promptstring

Text prompt for generation; Positive text prompt.

duration?integer

The duration of the generated media in seconds.

Default5
Value in5 | 6 | 7 | 8
resolution?string

Video resolution.

Value in"720p"
aspect_ratio?string

Aspect ratio of the video.

Value in"16:9" | "9:16"
negative_prompt?string

Negative prompt for the generation.

enable_prompt_expansion?boolean

If set to true, the prompt optimizer will be enabled.

Defaulttrue

Response Body

curl -X POST "https://api.atlascloud.ai/api/v1/model/generateVideo" \  -H "Content-Type: application/json" \  -d '{    "model": "google/veo2",    "prompt": "A breaking news ident, followed by a TV news presenter excitedly telling us: We interrupt this programme to bring you some breaking news... Veo 3 is now live on WaveSpeedAI. Then she shouts: Let\'s go! The TV presenter is an epic and cool punk with pink and green hair and a t-shirt that says \'Veo 3 on WaveSpeedAI\'"  }'
{
  "id": "string",
  "urls": {},
  "model": "string",
  "status": "string",
  "outputs": [
    "string"
  ],
  "created_at": "2019-08-24T14:15:22Z",
  "has_nsfw_contents": [
    true
  ]
}