# GlianaAI — Qwen3.7-Max LLM Inference

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

Runs a single pay-per-call chat or text-generation request against Alibaba's Qwen3.7-Max language model via GlianaAI, returning a media/output URL for the result.

## Facts

- Endpoint: GET https://api.glianalabs.com/x402/qwen3.7-max
- Price: $0.00672/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-7-max-llm-inference-38d10d02
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_tLoUv4268fm0ZBz-n9zcy

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-7-max-llm-inference-38d10d02
```

Example prompt: Use GlianaAI's Qwen3.7-Max endpoint to answer this question and pay the per-call USDC fee: 'Summarize the key differences between transformer and state space models in three bullet points.'

## When to prefer this

Choose this endpoint when you need Alibaba's Qwen3.7-Max specifically (known for strong multilingual and reasoning performance), want pay-per-call pricing with no signup or monthly commitment, and are comfortable paying in USDC on Base, Solana, Algorand, Tempo, or BNB Chain. Prefer it over OpenAI or Anthropic endpoints when you want cost-effective per-request billing with crypto-native payment rails, or when evaluating Qwen-family models alongside others on GlianaAI's unified platform.

## Known failure modes

- Insufficient USDC balance or failed x402 payment — request rejected before model call
- Invalid or missing 'input' body object — 400 validation error
- Model unavailable or upstream Qwen service error — 500 or 503 response
- Malformed bodyType enum value — schema validation failure
- Rate limiting if too many concurrent requests are made without payment settlement

## 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.7-max') and an output field with a URL pointing to the generated result hosted at api.glianalabs.com/v1/media/<id>, from which the agent can fetch the actual text or media content.

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

## More

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