Video

Veo 3.1 Fast video

Google Veo 3.1 Fast — 8s fixed. 720p/1080p/4K. Text + image-to-video + frame.

Category: Create · veo-3-1-fast

How to use & limits

Capabilities

What this model supports, straight from the schema — no pricing, no infrastructure detail.

CapabilityValue
frame_mode Frame modeYes
video_edit Video edit
text_to_video Text-to-videoYes
image_to_video Image-to-videoYes
reference_mode Reference modeYes
max_prompt_length Max prompt length1000
reference_to_video Reference-to-videoYes

Parameters

Fields accepted in params (or first-class, where applicable) for POST /generations.

NameLabelTypeRequiredDefaultOptionsMin / MaxDescription
promptPrompttextareaRequiredVideo description, up to 1,000 characters.
image_urlsImage referencesmulti_selectOptional— – 3Up to 3 images (JPEG/PNG/WebP, up to 10MB). In frame mode: 1st = start frame, 2nd = end frame.
generation_typeGeneration typeselectOptionalframeframe · reference'frame' (2 images, start/end) or 'reference' (3 reference images).
durationDurationselectRequired8Fixed duration: 8 seconds.
aspect_ratioAspect ratioselectOptional16:916:9 · 9:16Aspect ratio: 16:9 or 9:16.
resolutionResolutionselectOptional720p720p · 1080p · 4kResolution: 720p, 1080p or 4K.

Example request

bash
curl -X POST https://caranguejo.art/api/v1/dev/generations \
  -H "Authorization: Bearer $CK" \
  -H "Content-Type: application/json" \
  -d '{
  "model": "veo-3-1-fast",
  "prompt": "Dolphins jumping in a bright blue ocean, realistic motion.",
  "params": {
    "duration": 8,
    "aspect_ratio": "16:9",
    "resolution": "1080p",
    "generation_type": "frame"
  }
}'
javascript
const res = await fetch("https://caranguejo.art/api/v1/dev/generations", {
  method: "POST",
  headers: {
    "Authorization": "Bearer " + process.env.CK,
    "Content-Type": "application/json",
  },
  body: JSON.stringify({
    "model": "veo-3-1-fast",
    "prompt": "Dolphins jumping in a bright blue ocean, realistic motion.",
    "params": {
      "duration": 8,
      "aspect_ratio": "16:9",
      "resolution": "1080p",
      "generation_type": "frame"
    }
  }),
});
const { data } = await res.json();

Example response

json
{
  "id": "9f0c1a7e-…",
  "object": "generation",
  "model": "veo-3-1-fast",
  "type": "video",
  "status": "completed",
  "output": {
    "assets": [
      {
        "url": "https://media.caranguejo.art/outputs/example.mp4",
        "type": "video"
      }
    ]
  }
}
The job's real cost is returned as credits_charged on the completed response — check GET /balance for the account balance.

Common errors for this job type:

insufficient_creditsAccount balance can't cover the job cost.
content_policy_violationPrompt or media rejected by content policy.
generation_timeoutThe job exceeded the maximum processing time.
rate_limitedToo many requests per minute.
invalid_inputA required parameter is missing or outside the model's schema.
generation_failedGeneric processing failure.