# GlyphForge Braille Art Converter

> GlyphForge Braille Art Converter 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-13).

Converts a base64-encoded image into Unicode Braille art text output with configurable width and brightness threshold

## Facts

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

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-braille-art-converter-a1650a43 -d '<json body>'
```

Example prompt: Convert this image to braille art at 80 characters wide with a brightness threshold of 128 — here's the base64-encoded PNG: [base64data].

## When to prefer this

Choose this endpoint when you specifically need Braille-style Unicode dot-matrix text art from an image, rather than ASCII or block art. It is ideal for creative applications, artistic renderings, or accessibility-themed outputs where Braille character aesthetics are desired. Use when you need fine-grained control over output width and dot threshold.

## Known failure modes

- Missing or invalid base64 image data returns an error response
- Unsupported image format (non-PNG/JPEG/WEBP) may cause decoding failure
- Payment failure via x402 micropayment results in 402 response before processing
- Width or threshold values out of range may produce unexpected output or errors
- Very large images may time out or produce oversized responses

## How this service works

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

## Output

A JSON object containing a `braille` string of Unicode Braille characters representing the image, along with the output `width` and `height` dimensions in braille character units, and a `success` boolean flag.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "image"
 ],
 "properties": {
  "image": {
   "type": "string",
   "description": "Base64-encoded image (PNG, JPEG, WEBP)"
  },
  "width": {
   "type": "integer",
   "description": "Output width in braille characters"
  },
  "threshold": {
   "type": "integer",
   "description": "Brightness threshold (0-255) for dot on/off"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "data": {
   "type": "object",
   "properties": {
    "width": {
     "type": "integer"
    },
    "height": {
     "type": "integer"
    },
    "braille": {
     "type": "string",
     "description": "The Braille art output"
    }
   }
  },
  "success": {
   "type": "boolean"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/glyphforge-braille-art-converter-a1650a43/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)
