# GlianaAI Image-to-Video Generation

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

Converts a static image into a short video clip using AI, paying per request in USDC via x402

## Facts

- Endpoint: GET https://api.glianalabs.com/x402/recipes/image-to-video
- Price: $0.44555/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 1
- Tags: x402
- Canonical page: https://www.zero.xyz/c/glianaai-image-to-video-generation-857668f1
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_-8tzqJu0c80waqWXeu9Ih

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-image-to-video-generation-857668f1
```

Example prompt: Take this product photo and animate it into a short video clip using GlianaAI's image-to-video recipe — pay the $0.45 USDC fee automatically via x402.

## When to prefer this

Choose this endpoint when you need pay-per-call image-to-video animation with no API key or signup, settling payment automatically in USDC via x402 on Base, Tempo, or Solana. Ideal for AI agents that need autonomous, wallet-based media generation without managing subscriptions.

## Known failure modes

- Payment not settled — x402 payment protocol failure or insufficient USDC balance results in 402 Payment Required
- Invalid or missing image input — malformed body returns 400 Bad Request
- Model unavailable or overloaded — returns 503 or timeout
- Unsupported image format or corrupted image data causes generation failure
- Rate limiting if quota exceeded on the underlying model provider

## 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 a URL pointing to the generated video file on the GlianaAI media server (e.g. https://api.glianalabs.com/v1/media/<id>) and a 'recipe' field confirming 'image-to-video'.

## 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": {
  "url": "https://api.glianalabs.com/v1/media/<id>",
  "recipe": "image-to-video"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/glianaai-image-to-video-generation-857668f1/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)
