# Glyphforge Braille Art Converter

> Glyphforge Braille Art Converter is a paid API for AI agents from glyphfor9e.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, with configurable output width and brightness threshold

## Facts

- Endpoint: POST https://glyphfor9e.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-6688cede
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_IlD374-1ARJ1Qif9CHto3

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-6688cede -d '<json body>'
```

Example prompt: Convert this image of my company logo into braille art — use a width of 80 characters and a threshold of 128 so lighter details are captured cleanly.

## When to prefer this

Choose this endpoint when you specifically need Unicode Braille dot art output from an image — ideal for terminal displays, braille-compatible renderers, or stylized text art in braille character sets. Prefer over ASCII art endpoints when the target medium supports Unicode Braille block characters (U+2800–U+28FF) and you want higher dot density than ASCII can provide.

## Known failure modes

- Invalid or malformed base64 image string returns an error
- Unsupported image format (not PNG, JPEG, or WEBP) may fail
- Width value too large may produce oversized output or timeout
- Threshold out of 0-255 range may be rejected
- Payment failure or insufficient USDC balance blocks the call
- Very small or very low-contrast images may produce empty or blank braille output

## 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 'data' field containing the braille art string, plus the output dimensions (width and height in braille characters), and a 'success' boolean indicating whether the conversion succeeded.

## 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-6688cede/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from glyphfor9e.vercel.app](https://www.zero.xyz/host/glyphfor9e.vercel.app/llms.txt)
