# GlianaAI Claude Fable-5 Text Generation

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

Generates text using the Claude Fable-5 model via a pay-per-call, no-signup USDC micropayment API

## Facts

- Endpoint: GET https://api.glianalabs.com/x402/claude-fable-5
- Price: $0.075264/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/glianaai-claude-fable-5-text-generation-c5f1f6de
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_7Ioex_RTKqwc_zU10tWzJ

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-claude-fable-5-text-generation-c5f1f6de
```

Example prompt: Use the GlianaAI Claude Fable-5 model to write me a short persuasive paragraph explaining why renewable energy is essential for economic growth — pay per call with USDC, no signup needed.

## When to prefer this

Choose this endpoint when you need single-call, no-signup access to the Claude Fable-5 model and are willing to pay per call in USDC via the x402 protocol; ideal for agents that need occasional Claude inference without managing API keys or subscriptions.

## Known failure modes

- Payment not provided or insufficient USDC — returns 402 Payment Required
- Model unavailable or overloaded — returns 5xx server error
- Malformed request body — returns 400 Bad Request
- Network timeout if model inference takes too long

## How this service works

GlianaAI - pay-per-call AI: LLM chat (OpenAI-compatible), image, video, music, speech - 80+ models, no signup, USDC. This resource: claude-fable-5 (Text Generation). https://ai.glianalabs.com

## Output

A generated text response from the Claude Fable-5 language model, returned as an HTTP response body after a USDC micropayment is processed via the x402 protocol.

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

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/glianaai-claude-fable-5-text-generation-c5f1f6de/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)
