# GlianaAI — Qwen3.8-Max LLM Inference

> GlianaAI — Qwen3.8-Max LLM Inference is a paid API for AI agents from api.glianalabs.com, paid per call via x402, $0.010752/call, status unknown (last checked 2026-09-15).

Run a single pay-per-call inference request against the Qwen3.8-Max language model via GlianaAI's x402 payment gateway, receiving a media/result URL back.

## Facts

- Endpoint: GET https://api.glianalabs.com/x402/qwen3.8-max
- Price: $0.010752/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/glianaai-qwen3-8-max-llm-inference-f28b4baf
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_s39S2iTb-yv7pLHFcUeT4

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-qwen3-8-max-llm-inference-f28b4baf
```

Example prompt: Use GlianaAI's Qwen3.8-Max endpoint to answer this question and pay for it per-call in USDC: 'What are the key differences between transformer and state-space models in deep learning?'

## When to prefer this

Choose this endpoint when you need Qwen3.8-Max specifically (Alibaba's flagship reasoning model), want no-signup pay-per-call pricing in USDC across multiple chains (Base, Solana, Algorand, BNB Chain, Tempo), or are building a crypto-native agent that needs an LLM step without committing to a monthly subscription. Prefer alternatives if you need streaming responses, OpenAI-compatible chat format with full message history, or a different model family.

## Known failure modes

- Insufficient USDC payment or failed x402 micropayment handshake returns 402 Payment Required
- Malformed or missing request body returns 400 Bad Request
- Model overload or upstream Qwen API unavailability returns 503 Service Unavailable
- Invalid or expired prepaid balance returns payment authorization failure
- Rate limiting on the GlianaAI platform returns 429 Too Many 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

A JSON object containing the model name ('qwen3.8-max') and an output object with a URL pointing to the generated content hosted at api.glianalabs.com/v1/media/<id>, where the full inference result can be retrieved.

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

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/glianaai-qwen3-8-max-llm-inference-f28b4baf/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)
