# GlianaAI GPT-Image-1.5 Pay-Per-Call Image Generation

> GlianaAI GPT-Image-1.5 Pay-Per-Call Image Generation is a paid API for AI agents from api.glianalabs.com, paid per call via x402, $0.058/call, status unknown (last checked 2026-09-14).

Generates images using GPT-Image-1.5 via a pay-per-call endpoint that settles $0.06 USDC per request with no signup or API key required

## Facts

- Endpoint: GET https://api.glianalabs.com/x402/gpt-image-1.5
- Price: $0.058/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/glianaai-gpt-image-1-5-pay-per-call-image-generation-b750c671
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_-pnerBwwm2HKgYgyKVk4p

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-gpt-image-1-5-pay-per-call-image-generation-b750c671
```

Example prompt: Generate an image of a futuristic city at sunset with neon lights reflecting off rain-soaked streets using GPT-Image-1.5 — go ahead and pay the $0.06 USDC fee automatically.

## When to prefer this

Choose this endpoint when you need GPT-Image-1.5 specifically, want pay-per-call billing with no subscription or API key setup, and can settle payments in USDC via x402 protocol on Base, Solana, or Tempo. Ideal for autonomous AI agents that need to spin up image generation on demand with crypto micropayments and zero onboarding friction.

## Known failure modes

- Insufficient USDC balance — payment fails, request rejected with 402
- Invalid or missing prompt field — 400 bad request
- Model unavailable or overloaded — 503 service unavailable
- Payment network congestion causing settlement timeout
- Malformed request body — missing required 'prompt' property

## How this service works

GlianaAI — gpt-image-1.5 (text-to-image)

## Output

Returns a JSON object containing the model name ('gpt-image-1.5'), an output object with a media URL or image data, and the cost charged in micro-USD for the request.

## Example request

```json
{
 "prompt": "A serene mountain landscape with snow-capped peaks at golden hour, clear blue sky, and a calm alpine lake reflecting the scenery"
}
```

## 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"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/glianaai-gpt-image-1-5-pay-per-call-image-generation-b750c671/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)
