# GlianaAI Recraft v4-1 Utility Vector Image Generation

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

Generates vector-style utility images using Recraft v4-1 via a pay-per-call API, billed at $0.18 USDC per request with no signup required.

## Facts

- Endpoint: GET https://api.glianalabs.com/x402/recraftv4-1-utility-vector
- Price: $0.144/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/glianaai-recraft-v4-1-utility-vector-image-generation-89c26371
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_uy-cT8SB4IbIUrq9wq9rf

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-vector-image-generation-89c26371
```

Example prompt: Use Recraft v4-1 to generate a clean utility vector illustration of a coffee cup with steam rising, suitable for an app icon — pay with USDC.

## When to prefer this

Choose this endpoint when you need Recraft v4-1 utility-style vector image generation specifically, want to pay per-call in USDC without API key signup, and are building an agent that can handle x402 micropayment flows. Prefer this over general-purpose image generation endpoints when vector/utility aesthetic output is required and cost predictability at $0.18/call matters.

## Known failure modes

- Insufficient USDC balance causes payment failure and no image is returned
- Malformed or empty prompt results in a 400 bad request error
- Model unavailable or rate-limited returns a 503 or timeout
- Payment network (Base, Solana, Tempo) congestion delays settlement and request
- Prompt violates content policy resulting in a rejection response

## How this service works

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

## Output

Returns a JSON object containing the model name used ('recraftv4-1-utility-vector'), an output object with a media URL or JSON payload containing the generated vector image, and the costMicroUsd integer indicating how much was charged for the 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-vector",
  "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-vector-image-generation-89c26371/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)
