# GlianaAI — Gemini 3.5 Flash Lite (Text-to-Image)

> GlianaAI — Gemini 3.5 Flash Lite (Text-to-Image) is a paid API for AI agents from api.glianalabs.com, paid per call via x402, $0.003334/call, status unknown (last checked 2026-09-15).

Generates an image from a text prompt using Google's Gemini 3.5 Flash Lite model, returning a hosted media URL, billed per-call in USDC with no signup required.

## Facts

- Endpoint: GET https://api.glianalabs.com/x402/gemini-3.5-flash-lite
- Price: $0.003334/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/glianaai-gemini-3-5-flash-lite-text-to-image-260a0796
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_VZT_CuYmrNnf6sJ4UUPIQ

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-gemini-3-5-flash-lite-text-to-image-260a0796
```

Example prompt: Generate an image of a misty Japanese forest at dawn with soft golden light filtering through bamboo trees, using the Gemini 3.5 Flash Lite model on GlianaAI — I'll pay per call in USDC, no account needed.

## When to prefer this

Choose this endpoint when you need fast, pay-per-call image generation from Google's Gemini 3.5 Flash Lite model without committing to a subscription or creating an account. It is ideal for low-volume, one-off, or prototype use cases where USDC micropayments on Base, Tempo, or Solana are acceptable. Prefer it over heavier Gemini models when speed and cost-per-call matter more than maximum quality, and over alternatives like flux-2-pro or imagen-4 when you specifically want Gemini's generation style.

## Known failure modes

- Missing or malformed 'input' body causes validation error
- Payment not received or insufficient USDC balance results in 402 Payment Required
- Model temporarily unavailable returns a 503 or error response
- Prompt violates content policy and is rejected
- Malformed GET request body (wrong bodyType enum) causes schema validation failure

## How this service works

GlianaAI - pay-per-call AI: LLM chat (OpenAI-compatible), image, video, music, speech - 90+ models, no signup, USDC. This resource: gemini-3.5-flash-lite (Text Generation). https://ai.glianalabs.com

## Output

Returns a JSON object containing the model name ('gemini-3.5-flash-lite') and an output object with a hosted URL (https://api.glianalabs.com/v1/media/<id>) pointing to the generated image asset.

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

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/glianaai-gemini-3-5-flash-lite-text-to-image-260a0796/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)
