# GlianaAI SeedDream 4.5 Image Generation

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

Generates images from a text prompt using the SeedDream 4.5 model, paid per call in USDC via x402 with no API key required.

## Facts

- Endpoint: GET https://api.glianalabs.com/x402/seedream-4.5
- Price: $0.087/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/glianaai-seeddream-4-5-image-generation-f55977b2
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_CYGN02aS442jY5LFa3aE6

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-seeddream-4-5-image-generation-f55977b2
```

Example prompt: Generate an image of a misty Japanese mountain village at dawn with cherry blossoms falling using SeedDream 4.5 — pay $0.09 USDC per call and give me back the image URL.

## When to prefer this

Choose this endpoint when you need text-to-image generation via SeedDream 4.5 specifically, want to pay per call in USDC with no subscription or API key setup, and your agent supports x402 micropayment protocol (Tempo, Base, or Solana). Ideal for agents that need on-demand image generation with crypto-native payment rails.

## Known failure modes

- Payment failure: insufficient USDC balance or unsupported wallet — returns 402 Payment Required
- Invalid prompt: missing required 'prompt' field — returns 400 Bad Request
- Model unavailable: SeedDream 4.5 temporarily offline — returns 503 Service Unavailable
- Prompt policy violation: content filtered — returns 422 or similar rejection
- Network timeout: inference took too long — returns 504 Gateway Timeout

## 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 ('seedream-4.5'), an output object containing the generated image URL or media result, and costMicroUsd indicating the exact amount charged in micro-USD for this inference call.

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

## More

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