# GlianaAI Wan 2.6 Image Generation

> GlianaAI Wan 2.6 Image Generation is a paid API for AI agents from api.glianalabs.com, paid per call via x402, $0.054/call, status unknown (last checked 2026-09-15).

Generates images from text prompts using the Wan 2.6 model via a pay-per-call USDC endpoint requiring no signup or API key

## Facts

- Endpoint: GET https://api.glianalabs.com/x402/wan-2.6-image
- Price: $0.054/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/glianaai-wan-2-6-image-generation-e4a57543
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Hu2LpSKBfnqMaX8Vab3qa

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-wan-2-6-image-generation-e4a57543
```

Example prompt: Generate an image of a misty Japanese mountain village at dawn with cherry blossoms using GlianaAI's Wan 2.6 model — pay the $0.0675 USDC fee and give me back the image URL.

## When to prefer this

Choose this endpoint when you need Wan 2.6 image generation specifically, want no-signup pay-per-call billing via USDC or card, and are operating in an agent context that supports x402 micropayments on Base, Solana, or Tempo. Prefer this over OpenAI or Stability AI hosted endpoints when you need crypto-native billing and don't want to manage API key subscriptions.

## Known failure modes

- Insufficient USDC balance causes payment failure and no image is returned
- Invalid or empty prompt results in a 400 error
- Model unavailable or overloaded returns a 503 or timeout
- Malformed payment header (x402) causes a 402 payment required error
- Prompt violates content policy and is rejected

## How this service works

GlianaAI — wan-2.6-image (text-to-image)

## Output

Returns a JSON object with the model name ('wan-2.6-image'), an output object containing the generated image URL or media result, and the amount charged in micro-USD (costMicroUsd).

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

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/glianaai-wan-2-6-image-generation-e4a57543/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)
