# GlianaAI Recraft v4-1 Pro Image Generation

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

Generates high-quality images using the Recraft v4-1 Pro model via a pay-per-call x402 endpoint, charged at $0.5625 USDC per request.

## Facts

- Endpoint: GET https://api.glianalabs.com/x402/recraftv4-1-pro
- Price: $0.54375/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-pro-image-generation-7462f18b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_LY_hZKJOM3q1DPDEBnSBJ

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-pro-image-generation-7462f18b
```

Example prompt: Generate a photorealistic image of a misty mountain landscape at sunrise with warm golden light filtering through pine trees, using Recraft v4-1 Pro — I'm okay spending the $0.5625 per call.

## When to prefer this

Choose this endpoint when you need Recraft v4-1 Pro specifically for high-quality image generation, want to pay per call in USDC without signing up or managing API keys, and are operating in an x402-compatible agent environment that can handle crypto micropayments on Base, Solana, or Tempo.

## Known failure modes

- Insufficient USDC balance — payment rejected before inference runs
- Invalid or empty prompt — model returns error or blank output
- Payment settlement failure on Base/Solana/Tempo — transaction not confirmed
- Model unavailable or overloaded — 5xx error returned
- Malformed request body missing required 'prompt' field — 400 validation error

## 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-pro (Text-to-Image). https://ai.glianalabs.com

## Output

Returns a JSON object containing the model name ('recraftv4-1-pro'), an output object with a media URL pointing to the generated image, and the cost charged in micro-USD (costMicroUsd).

## 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-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-pro-image-generation-7462f18b/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)
