# GlyphForge Text Banner API

> GlyphForge Text Banner API is a paid API for AI agents from glyphforge-delta.vercel.app, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-16).

Renders plain text as styled ASCII art banners using configurable FIGlet fonts

## Facts

- Endpoint: POST https://glyphforge-delta.vercel.app/api/text-banner
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/glyphforge-text-banner-api-13d1af93
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_dSN7Xu1BCxaAdzs6QpV7Q

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 glyphforge-text-banner-api-13d1af93 -d '<json body>'
```

Example prompt: Can you render the text 'HELLO WORLD' as a big ASCII art banner using the Doom font?

## When to prefer this

Use this endpoint when you need to generate FIGlet-style ASCII text banners from plain text strings, especially when you want font control (Standard, Slant, Banner3, Doom, Big). Ideal for CLI tools, terminal UIs, README headers, retro-style displays, or any context requiring styled monospace art text.

## Known failure modes

- Missing required 'text' field returns an error response
- Invalid or unsupported font name may fall back to default or return an error
- Text too long may cause truncation or failure
- Payment failure via x402 micropayment will block the request
- Network timeout from Vercel serverless cold start

## How this service works

Convert images to ASCII, Braille, Unicode block art, and more. Paid API with x402 micropayments on Base.

## Output

Returns a JSON object with a success flag and a data object containing the font used and the rendered ASCII art banner string, ready to display in monospace contexts.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "text"
 ],
 "properties": {
  "font": {
   "type": "string",
   "description": "FIGlet font name (e.g. Standard, Slant, Banner3, Doom, Big)"
  },
  "text": {
   "type": "string",
   "description": "Text to render as ASCII banner"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "data": {
   "type": "object",
   "properties": {
    "font": {
     "type": "string"
    },
    "banner": {
     "type": "string",
     "description": "The ASCII art banner"
    }
   }
  },
  "success": {
   "type": "boolean"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/glyphforge-text-banner-api-13d1af93/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from glyphforge-delta.vercel.app](https://www.zero.xyz/host/glyphforge-delta.vercel.app/llms.txt)
