# GlianaAI Qwen3.7-Plus LLM Inference

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

Runs a single chat or text inference request against the Qwen3.7-Plus large language model via pay-per-call USDC billing with no signup required

## Facts

- Endpoint: GET https://api.glianalabs.com/x402/qwen3.7-plus
- Price: $0.002065/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/glianaai-qwen3-7-plus-llm-inference-1851ad71
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_lVFWm-9xn05Y3eGWbzh8w

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-plus-llm-inference-1851ad71
```

Example prompt: Use Qwen3.7-Plus on GlianaAI to answer this question — I'll pay per call in USDC with no account needed: 'What are the main differences between transformer and state-space models for sequence modeling?'

## When to prefer this

Choose this endpoint when you need Qwen3.7-Plus specifically (strong multilingual and reasoning performance, especially for Chinese-language tasks or math/code), want to pay per call in USDC without creating an account or managing API keys, and are operating in a crypto-native or agentic environment that supports x402 payment flows on Base, Solana, Algorand, or BNB Chain.

## Known failure modes

- Insufficient USDC balance or failed x402 payment results in 402 Payment Required
- Malformed or missing 'input' field returns 400 Bad Request
- Model overload or upstream Qwen API outage causes 503 or timeout
- Invalid bodyType enum value (not json/form-data/text) causes schema validation error
- Empty or null prompt body may return empty or nonsensical completion
- Network latency to upstream Qwen provider may cause slow responses

## 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 with the model name ('qwen3.7-plus') and an output object containing a URL pointing to the inference result hosted at api.glianalabs.com/v1/media/<id>, from which the generated text or media 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.7-plus",
  "output": {
   "url": "https://api.glianalabs.com/v1/media/<id>"
  }
 }
}
```

## More

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