# GlianaAI — LTX 2.5 Fast Text-to-Video Generation

> GlianaAI — LTX 2.5 Fast Text-to-Video Generation is a paid API for AI agents from api.glianalabs.com, paid per call via x402, $2.6825/call, status unknown (last checked 2026-09-13).

Generates a video from a text prompt using the LTX-2.5-Fast model, returning a hosted media URL, billed per call in USDC via x402.

## Facts

- Endpoint: GET https://api.glianalabs.com/x402/ltx-2-5-fast
- Price: $2.6825/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/glianaai-ltx-2-5-fast-text-to-video-generation-886c8034
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_hq68mtpU9xUGpHdDRhtAH

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-ltx-2-5-fast-text-to-video-generation-886c8034
```

Example prompt: Using GlianaAI's LTX-2.5-Fast model, generate a short video of a golden retriever running through a sunlit meadow at sunset — pay per call with USDC.

## When to prefer this

Choose this endpoint when you need fast, pay-per-call text-to-video generation without account registration, billed in USDC via x402 on supported blockchains. Prefer it over subscription-based video APIs when usage is sporadic or cost-per-call control matters. The LTX-2.5-Fast model is optimized for speed, making it suitable for rapid prototyping or real-time agent pipelines.

## Known failure modes

- Insufficient USDC balance or failed x402 payment → payment error / 402 response
- Invalid or missing prompt body → 400 bad request
- Model overload or timeout on fast inference → 503 or timeout error
- Malformed request body type (not json/form-data/text) → schema validation error
- Generated media unavailable at returned URL → 404 on media fetch

## 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 ('ltx-2-5-fast') and an output object with a 'url' field pointing to the hosted video file 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": "ltx-2-5-fast",
  "output": {
   "url": "https://api.glianalabs.com/v1/media/<id>"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/glianaai-ltx-2-5-fast-text-to-video-generation-886c8034/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)
