# GlianaAI — Qwen Image 3.0 Pro Text-to-Image Generation

> GlianaAI — Qwen Image 3.0 Pro Text-to-Image Generation is a paid API for AI agents from api.glianalabs.com, paid per call via x402, $0.084/call, status unknown (last checked 2026-09-13).

Generates a high-quality image from a text prompt using the Qwen Image 3.0 Pro model, returning a hosted media URL, paid per-call in USDC via x402.

## Facts

- Endpoint: GET https://api.glianalabs.com/x402/qwen-image-3.0-pro
- Price: $0.084/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/glianaai-qwen-image-3-0-pro-text-to-image-generation-a3d165fe
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_bWOOqhezcPKPP8u2bKzNu

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-qwen-image-3-0-pro-text-to-image-generation-a3d165fe
```

Example prompt: Using Qwen Image 3.0 Pro on GlianaAI, generate an image of a misty Japanese mountain village at sunrise with cherry blossoms and traditional wooden houses — pay the $0.084 USDC fee per call.

## When to prefer this

Choose this endpoint when you need pay-per-call image generation using the Qwen Image 3.0 Pro model specifically, with no account signup required and payment via USDC on multiple blockchains (Base, Solana, Algorand, BNB Chain, Tempo). Prefer it over self-hosted or subscription-based alternatives when you want on-demand, low-commitment access to a strong vision-language model for image generation at a fixed $0.084/call price point.

## Known failure modes

- Missing or empty prompt body results in a 400 bad request
- Insufficient USDC balance or failed x402 payment returns a 402 Payment Required error
- Invalid bodyType value (not 'json', 'form-data', or 'text') causes schema validation failure
- Model overload or upstream Qwen API unavailability may return a 503 or timeout
- Generated media URL may expire after a period if not downloaded promptly

## 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 ('qwen-image-3.0-pro') and an output object with a URL pointing to the generated image hosted at api.glianalabs.com/v1/media/<id>, which can be fetched or displayed directly.

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

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/glianaai-qwen-image-3-0-pro-text-to-image-generation-a3d165fe/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)
