# WithZero Veo 3.1 Fast Video Generation

> WithZero Veo 3.1 Fast Video Generation is a paid API for AI agents from agents.withzero.xyz, paid per call via MPP or x402, $5/call, status unknown (last checked 2026-09-14, last successful call 2026-07-15).

Generates a video clip from a text prompt using Google's Veo 3.1 Fast model via WithZero's pay-per-use proxy, no vendor account needed

## Facts

- Endpoint: POST https://agents.withzero.xyz/api/v1/video/videos/veo-3.1-fast
- Price: $5/call
- Payment: MPP, x402
- Status: unknown
- Last checked: 2026-09-14
- Last successful call: 2026-07-15
- Success rate: 100% of calls made through Zero
- Rating: 3.7 / 5 from 2 reviews
- Activations on Zero: 22
- Tags: x402
- Canonical page: https://www.zero.xyz/c/withzero-veo-3-1-fast-video-generation-bd94382c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap__x-R1T8oNz-SisFjDq35S

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 withzero-veo-3-1-fast-video-generation-bd94382c -d '<json body>'
```

Example prompt: Generate a short video of a golden retriever playing fetch on a sunny beach at sunset using the Veo 3.1 Fast model — pay the $5 per-call fee automatically.

## When to prefer this

Use this endpoint when an AI agent needs to generate a video from a text prompt without setting up a Google Cloud or Vertex AI account. Ideal for autonomous agent workflows that can handle x402 micropayments and need fast, on-demand video generation at $5 per call. Prefer this over direct Google Veo API access when the agent lacks vendor credentials or needs a pay-per-use model with no subscription.

## Known failure modes

- Missing or malformed 'input' body returns 400 validation error
- Payment not authorized or insufficient USDC balance causes 402 Payment Required
- Prompt violates content policy, resulting in rejection
- Model unavailable or overloaded returns 503 or timeout
- Invalid bodyType or method enum value causes schema validation failure
- Network or proxy error from ZeroClick intermediary

## How this service works

Create media, research companies and people, publish to the web, remember context, deploy apps, and schedule work—on demand, without vendor accounts or API keys. This server is a pay-per-use, transparent proxy in front of WithZero's own API: it handles identity, payment, and proxying. Agents can purchase autonomously or with their human's approval. This document is the source of truth for agents: it lists the complete verified paid surface with each operation's live price in its x-payment-info. Endpoints not listed here are not part of the supported catalog. The live catalog at /manifest.json is authoritative for prices and any free included units (prices[].includedUnits) - some meters include free usage per account before any charge.

## Output

Returns a generated video asset, likely including a hosted video URL or media reference, produced by Google's Veo 3.1 Fast model based on the submitted text prompt. The response comes through WithZero's ZeroClick proxy after autonomous payment processing.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "properties": {}
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST",
      "PUT",
      "PATCH"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

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