# GlianaAI Recraft v4 Pro Vector Image Generation

> GlianaAI Recraft v4 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 professional-grade vector images from a text prompt using the Recraft v4 Pro Vector model, billed per call in USDC via x402.

## Facts

- Endpoint: GET https://api.glianalabs.com/x402/recraftv4-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-pro-vector-image-generation-7ea69d5e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_3Od8elhyWsgHfDKo1PF3J

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-pro-vector-image-generation-7ea69d5e
```

Example prompt: Generate a vector illustration of a minimalist mountain landscape with a crescent moon using Recraft v4 Pro — I need it as a clean, scalable vector graphic for a travel brand logo.

## When to prefer this

Choose this endpoint when you need high-quality scalable vector graphics generated from text, especially for branding, iconography, or design assets that must remain crisp at any size. Prefer over raster image endpoints when the output will be used in print, SVG, or logo contexts. Best suited for agents that can pay per call in USDC without needing a pre-negotiated API key.

## Known failure modes

- Insufficient USDC balance or payment failure — payment not settled via MPP/x402
- Invalid or missing prompt field — 400 validation error
- Model-specific input format mismatch — check GET /v1/schema?model=recraftv4-pro-vector for exact schema
- Service unavailability or model timeout — 5xx error with no output
- Malformed x402 payment header — request rejected before processing

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

## Output

Returns a JSON object containing the model name ('recraftv4-pro-vector'), an output object with a media URL or structured result for the generated vector image, and the amount charged in micro-USD.

## Example request

```json
{
 "prompt": "A minimalist mountain landscape with a crescent moon, clean vector style suitable for a travel brand logo"
}
```

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