# GlianaAI Universal-3-Pro — Multi-Modal AI Inference

> GlianaAI Universal-3-Pro — Multi-Modal AI Inference is a paid API for AI agents from api.glianalabs.com, paid per call via x402, $0.022839/call, status unknown (last checked 2026-09-15).

Runs a prompt through one of 59 generative AI models (image, video, audio, music, speech) and returns the result, charging per call in USDC via x402 with no signup required.

## Facts

- Endpoint: GET https://api.glianalabs.com/x402/universal-3-pro
- Price: $0.022839/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/glianaai-universal-3-pro-multi-modal-ai-inference-f94438b5
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_KBA1U2UJ6goMRYa5zyeyF

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-universal-3-pro-multi-modal-ai-inference-f94438b5
```

Example prompt: Use GlianaAI to generate a photorealistic image of a sunset over the ocean — send the prompt 'a breathtaking sunset over a calm ocean, golden hour, photorealistic' and pay per call in USDC, no API key needed.

## When to prefer this

Choose this endpoint when you need on-demand generative AI inference across multiple modalities (image, video, audio, music, speech) without committing to a subscription or API key, and especially when your agent can pay per call programmatically in USDC via x402 or MPP on Base, Solana, or Tempo. Ideal for autonomous agents that need flexible, multi-modal AI generation settled on-chain.

## Known failure modes

- Payment insufficient or rejected — x402 payment not accepted, request fails with 402 status
- Invalid or missing prompt — 400 error if required 'prompt' field is absent
- Unsupported model specified — error if model parameter does not match one of the 59 supported models
- Network or upstream model failure — 500-level error if the underlying model provider is unavailable
- Malformed request body — 400 if JSON schema is not followed correctly

## 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 used, the model's output (typically a media URL such as an image, audio, or video link, or a JSON payload), and the amount charged in micro-USD for the call.

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

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/glianaai-universal-3-pro-multi-modal-ai-inference-f94438b5/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)
