# GlianaAI Image-to-Video-Audio Generation

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

Generates a video with audio from an input image using pay-per-call AI inference, settling payment in USDC via x402

## Facts

- Endpoint: GET https://api.glianalabs.com/x402/recipes/image-to-video-audio
- Price: $0.8443/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/glianaai-image-to-video-audio-generation-2168130c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_PRN-hlw_LJPKk7I6Ntf_u

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-audio-generation-2168130c
```

Example prompt: Take this product photo I have and animate it into a short video clip with audio using GlianaAI's image-to-video-audio recipe — I'm fine paying around $0.85 USDC per generation.

## When to prefer this

Choose this endpoint when you need to animate a static image into a video clip that also includes synthesized audio, with no API key or signup required, and you can settle payment in USDC on Tempo, Base, or Solana via x402. Ideal for agents that need serverless, pay-per-call multimodal media generation without managing subscriptions.

## Known failure modes

- Payment not settled — 402 response if USDC payment via x402/MPP is not completed before or during the request
- Invalid input schema — missing required 'input' object fields (type, method, bodyType, body) returns a 400 error
- Media generation failure — underlying AI model may time out or fail, returning a 5xx error
- Invalid image input — if the provided image is inaccessible or in an unsupported format, generation fails
- Rate limiting — high demand may throttle concurrent requests

## 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 a URL to the generated media file (hosted at api.glianalabs.com/v1/media/<id>) and the recipe name ('image-to-video-audio'). The agent can fetch the video-with-audio asset from the returned URL.

## 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-audio"
 }
}
```

## More

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