# GlianaAI Hailuo-2.3 Video Generation

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

Generates video output using the Hailuo 2.3 model via a pay-per-call x402 endpoint, billed at $0.61 USDC per request with no API key required.

## Facts

- Endpoint: GET https://api.glianalabs.com/x402/hailuo-2.3
- Price: $0.59209/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/glianaai-hailuo-2-3-video-generation-fd389a4c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_5LSiQ-HS1yU85jGALqUGg

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-hailuo-2-3-video-generation-fd389a4c
```

Example prompt: Generate a short cinematic video of a lone astronaut walking across a red Martian desert at sunset using the Hailuo 2.3 model — pay the $0.61 USDC fee automatically.

## When to prefer this

Choose this endpoint when you need Hailuo 2.3 video generation specifically, want to pay per call in USDC with no signup or API key, and are operating in an autonomous agent context that supports x402 micropayment flows.

## Known failure modes

- Payment not settled — 402 response if USDC payment header is missing or insufficient
- Invalid or missing prompt field — 400 validation error
- Model-specific input format mismatch — use GET /v1/schema?model=hailuo-2.3 for exact schema
- Inference timeout for long video generation tasks
- Insufficient USDC balance on the paying wallet
- Unsupported payment network — must use Tempo, Base, or Solana

## How this service works

One endpoint for 90+ generative AI models, live market data, SEC filings and identity APIs — image, video, music, speech, LLM chat, crypto and FX rates, DEX liquidity, gas, US company fundamentals and insider trades, document OCR and face matching. Pay per request in USDC on Tempo, Base, Solana, Algorand or BNB Chain with no signup, or top up a prepaid balance in rupiah.

## Output

Returns a JSON object containing the model name ('hailuo-2.3'), an output object with a media URL or structured result (the generated video), and costMicroUsd indicating the exact 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": "hailuo-2.3",
  "output": {
   "url": "https://api.glianalabs.com/v1/media/<id>"
  }
 }
}
```

## More

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