More modelsGoogleVeo3.1 reference to video

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

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

generate_audio?boolean

Whether to generate audio.

Defaultfalse
imagesarray<string>

The model will use the provided images as references to generate a video with consistent subjects. For fields that accept images: Accepts 1 to 3 images; Images Assets can be provided via URLs or Base64 encode; You must use one of the following codecs: PNG, JPEG, JPG, WebP; The dimensions of the images must be at least 128*128 pixels; All images are limited to 50MB; The length of the base64 decode must be under 50MB, and it must include an appropriate content type string.

Items1 <= items <= 3
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/reference-to-video",    "images": [      "string"    ],    "prompt": "string"  }'
{
  "created_at": "2019-08-24T14:15:22Z",
  "has_nsfw_contents": [
    true
  ],
  "id": "string",
  "model": "string",
  "outputs": [
    "string"
  ],
  "status": "string",
  "urls": {}
}