# GlianaAI Recraft v4.1 Utility Pro Image Generation

> GlianaAI Recraft v4.1 Utility Pro Image Generation is a paid API for AI agents from api.glianalabs.com, paid per call via x402, $0.45/call, status unknown (last checked 2026-09-13).

Generates images using the Recraft v4.1 Utility Pro model via a pay-per-call API settled in USDC or card, with no API key required.

## Facts

- Endpoint: GET https://api.glianalabs.com/x402/recraftv4-1-utility-pro
- Price: $0.45/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-pro-image-generation-1f89141c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_8drN4REP3ErQagzq-5uNM

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-pro-image-generation-1f89141c
```

Example prompt: Use the Recraft v4.1 Utility Pro model on GlianaAI to generate an image of a serene mountain lake at sunrise with golden reflections on the water — pay the $0.5625 USDC fee per call.

## When to prefer this

Choose this endpoint when you need Recraft v4.1 Utility Pro image generation specifically, want to pay per call in USDC (Tempo, Base, or Solana) with no API key or account setup, and are operating in an agent or programmatic context that supports x402 payment flows.

## Known failure modes

- Payment insufficient or declined — returns 402 with required payment details
- Invalid or missing prompt field — returns 400 bad request
- Model temporarily unavailable — returns 503
- USDC wallet balance too low to cover $0.5625 per call
- Prompt violates content policy — returns 4xx with rejection message

## How this service works

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

## Output

Returns a JSON object containing the model name ('recraftv4-1-utility-pro'), an output object with the generated image URL or media artifact, and the cost 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": "recraftv4-1-utility-pro",
  "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-pro-image-generation-1f89141c/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)
