# StableStudio Veo 3.1 Fast Video Generation

> StableStudio Veo 3.1 Fast Video Generation is a paid API for AI agents from stablestudio.io, paid per call via x402, $10/call, status unknown (last checked 2026-09-14).

Generates a video asynchronously using the Veo 3.1 Fast model from a text prompt, returning a job ID for status polling

## Facts

- Endpoint: POST https://stablestudio.io/api/generate/veo-3.1-fast/generate
- Price: $10/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/stablestudio-veo-3-1-fast-video-generation-49de6126
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_6Dl4t-sn3OjK2teqjU4AE

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability stablestudio-veo-3-1-fast-video-generation-49de6126 -d '<json body>'
```

Example prompt: Generate a video of a golden retriever running through a sunlit meadow with wildflowers, in 16:9 landscape format at 1 MP resolution — use Veo 3.1 Fast on StableStudio and enhance the prompt for more creative results.

## When to prefer this

Choose this endpoint when you need fast, pay-per-use AI video generation powered by Google's Veo 3.1 Fast model with no subscription required. Ideal for agents or workflows that generate video infrequently or on-demand, paying only per generation. Prefer this over image endpoints when the output must be a video rather than a static image.

## Known failure modes

- Prompt exceeds 10,000 character limit — returns validation error
- Invalid aspect_ratio or resolution enum value — returns 400 bad request
- Payment of $10 USDC not provided or failed — returns 402 Payment Required
- Safety tolerance out of range (must be 1–5) — returns validation error
- Model overloaded or unavailable — may return 5xx server error
- Seed value out of integer bounds — returns validation error

## How this service works

Pay-per-generation AI image and video creation. No subscriptions ever.

## Output

Returns a JSON object with a jobId (e.g. 'cmpbmzaee000j04jrzx4f43tw'), a status of 'pending', the model type 'veo-3.1-fast-video', and a success boolean. The agent must poll a separate status endpoint using the jobId to retrieve the final video once processing completes.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "image": {
   "type": "string",
   "format": "uri",
   "description": "First frame image URL for image-to-video generation"
  },
  "prompt": {
   "type": "string",
   "minLength": 1,
   "description": "A detailed description of the video you want to generate"
  },
  "imageMode": {
   "enum": [
    "none",
    "first-frame",
    "reference",
    "interpolation"
   ],
   "type": "string",
   "default": "interpolation",
   "description": "How to use reference images"
  },
  "lastFrame": {
   "type": "string",
   "format": "uri",
   "description": "Last frame image URL for interpolation mode"
  },
  "resolution": {
   "enum": [
    "720p",
    "1080p"
   ],
   "type": "string",
   "default": "720p",
   "description": "Video resolution quality"
  },
  "aspectRatio": {
   "enum": [
    "16:9",
    "9:16"
   ],
   "type": "string",
   "default": "16:9",
   "description": "Aspect ratio (landscape or portrait)"
  },
  "durationSeconds": {
   "enum": [
    "4",
    "6",
    "8"
   ],
   "type": "string",
   "default": "4",
   "description": "Duration of the video in seconds"
  },
  "referenceImages": {
   "type": "array",
   "items": {
    "type": "string",
    "format": "uri",
    "description": "Reference image URL"
   },
   "maxItems": 3,
   "description": "Reference images for style guidance (max 3)"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "type": "veo-3.1-fast-video",
  "jobId": "cmpbmzaee000j04jrzx4f43tw",
  "status": "pending",
  "pollUrl": "https://stablestudio.dev/api/jobs/cmpbmzaee000j04jrzx4f43tw",
  "success": true
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/stablestudio-veo-3-1-fast-video-generation-49de6126/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from stablestudio.io](https://www.zero.xyz/host/stablestudio.io/llms.txt)
