# GlianaAI Seedream-5-Lite Image Generation

> GlianaAI Seedream-5-Lite Image Generation is a paid API for AI agents from api.glianalabs.com, paid per call via x402, $0.063/call, status unknown (last checked 2026-09-14).

Generates images from text prompts using the Seedream-5-Lite model, billed at $0.07875 USDC per call via x402 micropayment protocol — no API key required.

## Facts

- Endpoint: GET https://api.glianalabs.com/x402/seedream-5-lite
- Price: $0.063/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/glianaai-seedream-5-lite-image-generation-d628d51f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Q3HFY7WDCMT4dZvpJ0-bk

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-seedream-5-lite-image-generation-d628d51f
```

Example prompt: Generate an image of a misty forest at dawn with golden light filtering through the trees — use the Seedream-5-Lite model and charge my USDC wallet.

## When to prefer this

Choose this endpoint when you need image generation from Seedream-5-Lite specifically, want to pay per call in USDC without signing up for an account or managing API keys, and your agent supports the x402 micropayment protocol. Prefer this over subscription-based image APIs when cost-per-call billing and crypto payments are required.

## Known failure modes

- Insufficient USDC balance — payment fails and image is not generated
- Invalid or missing prompt field — 400 bad request
- Model temporarily unavailable — 503 service error
- Payment protocol (x402/MPP) handshake failure — request not processed
- Prompt violates content policy — request rejected

## 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 ('seedream-5-lite'), an output object with a media URL pointing to the generated image, and a costMicroUsd integer indicating how much was charged in micro-USD for the request.

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

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/glianaai-seedream-5-lite-image-generation-d628d51f/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)
