More modelsGoogleVeo3 fast

Generate video with google/veo3-fast

Generates a video using the google/veo3-fast 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.

Default8
Value in8
resolution?string

Video resolution.

Value in"720p" | "1080p"
aspect_ratio?string

Aspect ratio of the video.

Value in"16:9"
generate_audio?boolean

Generate audio for the video.

Defaultfalse
negative_prompt?string

Negative prompt for the generation.

Response Body

curl -X POST "https://api.atlascloud.ai/api/v1/model/generateVideo" \  -H "Content-Type: application/json" \  -d '{    "model": "google/veo3-fast",    "prompt": "An energetic street performer in Times Square grabs the mic and yells toward the crowd with wide eyes:“Yo! Google Veo 3 Fast just dropped on AtlasCloud! It’s REAL as hell! Sound and texture are NEXT LEVEL! Try it right now!!”Crowd ambience, city lights, wild gestures, fast jump cuts."  }'
{
  "id": "string",
  "urls": {},
  "model": "string",
  "status": "string",
  "outputs": [
    "string"
  ],
  "created_at": "2019-08-24T14:15:22Z",
  "has_nsfw_contents": [
    true
  ]
}