# GlianaAI — Seedream 5 Pro Text-to-Image

> GlianaAI — Seedream 5 Pro Text-to-Image 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-14).

Generates high-quality images from text prompts using the Seedream 5 Pro model, billed per request in USDC with no signup required.

## Facts

- Endpoint: GET https://api.glianalabs.com/x402/seedream-5-pro
- Price: $0.054/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-pro-text-to-image-dd7b8df6
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_u1cFMGJRo7ksrYlxMAorV

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-pro-text-to-image-dd7b8df6
```

Example prompt: Use GlianaAI's Seedream 5 Pro to generate a photorealistic image of a misty mountain lake at dawn with pine trees reflecting in the water.

## When to prefer this

Choose this endpoint when you need pay-per-call text-to-image generation using the Seedream 5 Pro model specifically, with no account or subscription required — payment is made directly in USDC via the x402 protocol on Base, Tempo, or Solana. Prefer it over competitors when you want crypto-native, frictionless access to a high-quality image generation model without API key management.

## Known failure modes

- Missing or empty prompt body may result in a 400 bad request
- Insufficient USDC balance or failed x402 payment returns 402 Payment Required
- Invalid input schema (wrong method or bodyType) returns 422 or 400
- Temporary model unavailability may return a 503 error
- Generated image URL may expire after a certain time period

## How this service works

GlianaAI - pay-per-call AI: LLM chat (OpenAI-compatible), image, video, music, speech - 90+ models, no signup, USDC. This resource: seedream-5-pro (Text-to-Image). https://ai.glianalabs.com

## Output

Returns a JSON object containing the model name ('seedream-5-pro') and an output object with a URL pointing to the hosted generated image on api.glianalabs.com/v1/media/<id>, which can be downloaded 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": "seedream-5-pro",
  "output": {
   "url": "https://api.glianalabs.com/v1/media/<id>"
  }
 }
}
```

## More

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