# GlianaAI Veo-3 Video Generation

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

Generates AI video using Google's Veo 3 model via a pay-per-call endpoint settled in USDC with no signup required

## Facts

- Endpoint: GET https://api.glianalabs.com/x402/veo-3
- Price: $2.9/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-video-generation-21fa4935
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_lDdM_VbBKbU44Rf3dZS-o

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-video-generation-21fa4935
```

Example prompt: Use Veo 3 on GlianaAI to generate a short video of a red panda playing in autumn leaves — no API key needed, just pay $3 USDC per call.

## When to prefer this

Choose this endpoint when you need to generate video using Google's Veo 3 model without signing up for an account or API key, and when you want to pay per request in USDC (on Base, Tempo, or Solana) or by card via x402/MPP. Ideal for AI agents that need on-demand video generation with crypto-native payment settlement and no subscription commitment.

## Known failure modes

- Insufficient USDC balance or payment failure — payment not settled, request rejected
- Invalid or empty prompt — model returns an error or empty output
- Model-specific input format mismatch — refer to GET /v1/schema?model=veo-3 for correct schema
- Network timeout for long video generation — no video URL returned
- Unsupported prompt content flagged by safety filters — generation refused

## 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'), an output object with a media URL pointing to the generated video, and the cost 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",
  "output": {
   "url": "https://api.glianalabs.com/v1/media/<id>"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/glianaai-veo-3-video-generation-21fa4935/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)
