# GlianaAI Recraft v4-1 Utility Image Generation

> GlianaAI Recraft v4-1 Utility 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 using the Recraft v4-1 utility model via a pay-per-call x402 endpoint, settling $0.09 USDC per request with no signup required.

## Facts

- Endpoint: GET https://api.glianalabs.com/x402/recraftv4-1-utility
- 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-recraft-v4-1-utility-image-generation-fdfbffc7
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_xlIXesaVfVqXCXndOGiXT

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-recraft-v4-1-utility-image-generation-fdfbffc7
```

Example prompt: Generate an image of a minimalist Japanese zen garden at sunset with soft golden light and raked sand patterns using Recraft v4-1 utility model — pay the $0.09 USDC fee automatically.

## When to prefer this

Choose this endpoint when you need Recraft v4-1 utility-style image generation with no API key or signup, and your agent can settle micropayments in USDC via x402 on Base, Solana, or Tempo. Ideal for AI agent pipelines that need autonomous pay-per-call inference without pre-negotiated subscriptions.

## Known failure modes

- Insufficient USDC balance — payment fails, request not processed
- Invalid or missing prompt field — 400 bad request
- Payment network congestion causing settlement delay
- Model-specific parameter mismatch if using advanced schema options from GET /v1/schema
- Rate limiting if too many concurrent requests are made

## How this service works

GlianaAI — recraftv4-1-utility (text-to-image)

## Output

Returns a JSON object containing the model name used ('recraftv4-1-utility'), an output object with the generated image URL or media result, and costMicroUsd indicating the exact amount charged in micro-USD for the request.

## Example request

```json
{
 "prompt": "A minimalist Japanese zen garden at sunset with soft golden light and raked sand patterns"
}
```

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

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/glianaai-recraft-v4-1-utility-image-generation-fdfbffc7/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)
