# GlianaAI LLM Chat Completions (x402 Pay-per-Call)

> GlianaAI LLM Chat Completions (x402 Pay-per-Call) is a paid API for AI agents from api.glianalabs.com, paid per call via x402, $0.001936/call, status unknown (last checked 2026-09-13).

Runs an LLM chat completion request against 90+ generative AI models via an OpenAI-compatible endpoint, billed per-request in USDC with no signup required.

## Facts

- Endpoint: GET https://api.glianalabs.com/x402/chat/completions
- Price: $0.001936/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/glianaai-llm-chat-completions-x402-pay-per-call-c0250442
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_VBufJJhUPnpbv4bZ8NjDE

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-llm-chat-completions-x402-pay-per-call-c0250442
```

Example prompt: Send a chat completion request to GlianaAI using the minimax-m3 model and ask it: 'Summarize the key differences between transformer and diffusion architectures in three bullet points.' Pay the per-call fee in USDC.

## When to prefer this

Prefer this endpoint when you need anonymous, no-signup LLM inference billed at the per-call level in USDC stablecoin, especially when integrating with x402 payment flows on Base, Solana, Algorand, Tempo, or BNB Chain. It is ideal for agents that need access to a wide roster of 90+ models (including niche or emerging ones) under a single OpenAI-compatible interface without committing to a subscription. Choose it over OpenAI or Anthropic direct APIs when crypto-native micropayment billing is a requirement or when model diversity across a single endpoint matters.

## Known failure modes

- Insufficient USDC balance — payment rejected before inference runs
- Unsupported model name specified — 402 or 400 error returned
- Malformed request body — missing required fields like type, method, or bodyType
- Rate limiting or quota exceeded on the selected model
- Network timeout if the selected model has high latency
- Invalid blockchain/chain specified for payment

## 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 the model's chat completion output, including generated text or a media URL (e.g. https://api.glianalabs.com/v1/media/<id>), along with the model name used for the request.

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

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/glianaai-llm-chat-completions-x402-pay-per-call-c0250442/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)
