# GlianaAI Veo 3 Fast Video Generation

> GlianaAI Veo 3 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 video using Google's Veo 3 Fast model via a pay-per-call x402 endpoint, billed at $2.25 USDC per request with no API key required.

## Facts

- Endpoint: GET https://api.glianalabs.com/x402/veo-3-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-fast-video-generation-7b643dd1
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ggXWuun9_MLUl3jUiC9aO

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-fast-video-generation-7b643dd1
```

Example prompt: Use Veo 3 Fast to generate a short cinematic video of a golden retriever running along a sunset beach, and pay with USDC.

## When to prefer this

Choose this endpoint when an AI agent needs to generate video using Google's Veo 3 Fast model without a pre-existing API key or subscription, paying per call in USDC via x402. Ideal for autonomous agents operating on Base, Solana, or Tempo that need programmatic, low-friction access to state-of-the-art video generation with on-chain payment settlement.

## Known failure modes

- Insufficient USDC balance causes payment failure and no video is returned
- Invalid or malformed prompt results in a model error response
- Model-specific input requirements not met — use GET /v1/schema?model=veo-3-fast to confirm schema
- Network timeout on long video generation requests
- Unsupported prompt content rejected by the underlying model's content policy

## How this service works

One endpoint for 60+ generative AI models — image, video, audio, music, speech. Your agent pays per request in USDC on Tempo, Base, or Solana. No signup, no API key, settled via MPP and x402.

## Output

Returns a JSON object containing the model name ('veo-3-fast'), an output object with a media URL or structured JSON of the generated video, and the amount charged in micro-USD (costMicroUsd).

## 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-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-fast-video-generation-7b643dd1/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)
