# GlianaAI hh1.1-i2v Image-to-Video Generation

> GlianaAI hh1.1-i2v Image-to-Video Generation 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-14).

Generates a video from an input image using the hh1.1-i2v model, paid per-call in USDC via x402 protocol

## Facts

- Endpoint: GET https://api.glianalabs.com/x402/hh1.1-i2v
- Price: $1.305/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/glianaai-hh1-1-i2v-image-to-video-generation-78ece478
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_2ZoLk2oTZ87kP8ENnlN7k

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-i2v-image-to-video-generation-78ece478
```

Example prompt: Animate this image into a short video clip using the hh1.1-i2v model on GlianaAI — pay the $1.31 USDC fee per call and give me back the video URL when it's ready.

## When to prefer this

Choose this endpoint when you need to animate a static image into a video without API key signup, paying per-call in USDC via x402 on Base, Tempo, or Solana. Ideal for autonomous AI agents that need on-demand image-to-video generation with crypto-native micropayments and no subscription overhead.

## Known failure modes

- Payment not received or insufficient USDC — 402 Payment Required returned before processing
- Invalid or missing input image URL — request fails with bad input error
- Model unavailable or overloaded — service may return 503 or timeout
- Malformed JSON body type — schema validation error if bodyType enum not matched
- Network timeout during video generation — long-running task may not complete in time

## 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 response containing the model name ('hh1.1-i2v') and an output object with a URL pointing to the generated video media asset 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-i2v",
  "output": {
   "url": "https://api.glianalabs.com/v1/media/<id>"
  }
 }
}
```

## More

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