# GlianaAI Veo 3.1 Fast Video Generation

> GlianaAI Veo 3.1 Fast Video Generation is a paid API for AI agents from api.glianalabs.com, paid per call via x402, $2.175/call, status unknown (last checked 2026-09-14).

Generates a video from a text prompt using Google's Veo 3.1 Fast model, billed at $2.25 USDC per call via x402 micropayment with no API key required.

## Facts

- Endpoint: GET https://api.glianalabs.com/x402/veo-3.1-fast
- Price: $2.175/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/glianaai-veo-3-1-fast-video-generation-342ace4d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_0GfW_Bj0YTzFbzI8fNAhQ

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 glianaai-veo-3-1-fast-video-generation-342ace4d
```

Example prompt: Use Veo 3.1 Fast to generate a short video of a golden retriever running through a field of sunflowers at sunset, and pay the $2.25 USDC fee automatically.

## When to prefer this

Choose this endpoint when you need fast, high-quality AI video generation from text using Google's Veo 3.1 Fast model, want pay-per-call billing in USDC with no signup or subscription, and are operating in an agentic context where x402 micropayment is supported. Prefer this over subscription-based video APIs when cost per call matters and you need Google Veo quality without managing API keys.

## Known failure modes

- Payment failure — insufficient USDC balance or unsupported payment network returns a 402 error
- Invalid or empty prompt returns a 400 validation error
- Model overload or timeout returns a 503 or 504 error
- Prompt policy violation (NSFW, harmful content) returns a 400 or 403 error
- Malformed request body missing required 'prompt' field returns a 400 error

## How this service works

GlianaAI - pay-per-call AI: LLM chat (OpenAI-compatible), image, video, music, speech - 80+ models, no signup, USDC. This resource: veo-3.1-fast (Text-to-Video). https://ai.glianalabs.com

## Output

Returns a JSON object containing the model name ('veo-3.1-fast'), an output object with a media URL pointing to the generated video, and the amount charged in micro-USD.

## 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": [
      "GET"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "model": "veo-3.1-fast",
  "output": {
   "url": "https://api.glianalabs.com/v1/media/<id>"
  }
 }
}
```

## More

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