# GlianaAI HH1.1 Text-to-Video Model

> GlianaAI HH1.1 Text-to-Video Model is a paid API for AI agents from api.glianalabs.com, paid per call via x402, $1.305/call, status unknown (last checked 2026-09-13).

Generates a video from a text prompt using the HH1.1 text-to-video model, paid per call in USDC via x402 protocol.

## Facts

- Endpoint: GET https://api.glianalabs.com/x402/hh1.1-t2v
- Price: $1.305/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/glianaai-hh1-1-text-to-video-model-2aa394d1
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_HRWWsML02T7vrJYHw6WBr

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-hh1-1-text-to-video-model-2aa394d1
```

Example prompt: Use GlianaAI's HH1.1 text-to-video model to generate a short cinematic clip of a golden retriever running through a sunlit meadow at sunset — pay for it with USDC via x402.

## When to prefer this

Choose this endpoint when you need AI-generated video from a text prompt without pre-registering or obtaining an API key, and your agent can pay per call in USDC on Base, Tempo, or Solana via the x402 protocol. Prefer it over traditional video AI APIs when operating in a trustless, pay-as-you-go crypto-native agent workflow.

## Known failure modes

- Payment failure: insufficient USDC balance or unsupported chain results in 402 Payment Required
- Malformed request body: missing required 'input' fields returns a validation error
- Model unavailable: temporary inference backend outage returns a 5xx error
- Invalid prompt content: safety or content policy violation may return a 4xx rejection
- Media retrieval failure: generated media URL may expire or become unavailable after a period

## 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

A JSON object containing the model name ('hh1.1-t2v') and an output URL pointing to the generated video file hosted at api.glianalabs.com/v1/media/<id>.

## 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": "hh1.1-t2v",
  "output": {
   "url": "https://api.glianalabs.com/v1/media/<id>"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/glianaai-hh1-1-text-to-video-model-2aa394d1/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)
