More modelsGoogleVeo3.1 image to video

Generate video with google/veo3.1/image-to-video

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

aspect_ratio?string

The aspect ratio of the generated media.

Value in"16:9" | "9:16"
duration?integer

The duration of the generated media in seconds.

Default4
Value in8 | 4 | 6
generate_audio?boolean

Whether to generate audio.

Defaultfalse
imagestring

The image to use for the generation.

last_image?string

The end image for generating the output.

negative_prompt?string

The negative prompt for the generation.

promptstring

The positive prompt for the generation.

resolution?string

Video resolution.

Value in"720p" | "1080p"
seed?integer

The random seed to use 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.1/image-to-video",    "image": "string",    "prompt": "string"  }'
{
  "created_at": "2019-08-24T14:15:22Z",
  "has_nsfw_contents": [
    true
  ],
  "id": "string",
  "model": "string",
  "outputs": [
    "string"
  ],
  "status": "string",
  "urls": {}
}