# GlianaAI RecraftV3 Image Generation

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

Generates images using Recraft V3 via a pay-per-call endpoint that settles $0.09 USDC per request with no API key required.

## Facts

- Endpoint: GET https://api.glianalabs.com/x402/recraftv3
- Price: $0.087/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/glianaai-recraftv3-image-generation-f0cebeca
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Zm3pFciZrEnqF2WLMUhPk

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-recraftv3-image-generation-f0cebeca
```

Example prompt: Use Recraft V3 to generate an image of a neon-lit cyberpunk cityscape at night with rain reflections on the street — pay the $0.09 per call fee in USDC.

## When to prefer this

Choose this endpoint when you need Recraft V3 specifically for image generation, want pay-per-call pricing with no signup or API key, and can settle payments via USDC on Base, Solana, or Tempo using x402/MPP protocol.

## Known failure modes

- Insufficient USDC balance causes payment failure and no image is returned
- Malformed or empty prompt results in a 400 validation error
- Payment settlement failure on Base/Solana/Tempo network causes a 402 or 5xx error
- Model-specific prompt constraints violated — check GET /v1/schema?model=recraftv3 for constraints
- Network timeout during image generation returns a 504 or similar server error

## How this service works

GlianaAI — recraftv3 (text-to-image)

## Output

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

## 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": "recraftv3",
  "output": {
   "url": "https://api.glianalabs.com/v1/media/<id>"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/glianaai-recraftv3-image-generation-f0cebeca/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)
