# GlianaAI Recraft v4-1 Pro Vector Image Generation

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

Generates high-quality vector-style images from a text prompt using Recraft v4-1 Pro, billed per call in USDC via x402

## Facts

- Endpoint: GET https://api.glianalabs.com/x402/recraftv4-1-pro-vector
- Price: $0.6525/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/glianaai-recraft-v4-1-pro-vector-image-generation-3b210220
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ara05fdk-F9oMTKOq0h12

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-vector-image-generation-3b210220
```

Example prompt: Generate a clean vector-style illustration of a mountain landscape at sunset with bold, minimal shapes using Recraft v4-1 Pro — pay the $0.675 per-call fee in USDC.

## When to prefer this

Choose this endpoint when you need high-quality vector-style AI-generated images specifically from the Recraft v4-1 Pro model, want to pay per-call with USDC (no subscription or API key required), and are building an autonomous agent workflow that supports x402 payment protocol on Base, Solana, or Tempo.

## Known failure modes

- Payment failure: insufficient USDC balance or unsupported wallet/chain returns a 402 Payment Required error
- Invalid prompt: empty or missing prompt field returns a 400 Bad Request
- Model overload or timeout: upstream Recraft model unavailable returns 503 or timeout
- Malformed request body: non-JSON or schema mismatch returns 400
- Network/gateway error on api.glianalabs.com returns 500 or 502

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

## Output

Returns a JSON object containing the model name ('recraftv4-1-pro-vector'), an output object with a media URL pointing to the generated vector image, and the costMicroUsd integer representing the amount charged for the request.

## 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-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-pro-vector-image-generation-3b210220/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)
