# agent402.tools Braille Converter

> agent402.tools Braille Converter is a paid API for AI agents from agent402.tools, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-14).

Converts plain text to Unicode Braille (Grade 1/uncontracted) or decodes Braille Unicode back to plain text, supporting letters, digits, and common punctuation.

## Facts

- Endpoint: POST https://agent402.tools/api/braille-convert
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/agent402-tools-braille-converter-1e84c942
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_yuu5og7H_ugxx3L61IncH

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 agent402-tools-braille-converter-1e84c942 -d '<json body>'
```

Example prompt: Can you convert the text 'Hello World! 123' into Unicode Braille characters using Grade 1 uncontracted Braille?

## When to prefer this

Choose this endpoint when you need a deterministic, CPU-side conversion between plain text and Unicode Braille (Grade 1 / uncontracted). Ideal for accessibility tooling, generating Braille-encoded content, or decoding Braille Unicode strings back to human-readable text without any AI inference or ambiguity.

## Known failure modes

- Input text contains unsupported characters not in Grade 1 Braille mapping — may return partial result or error
- Input is empty string — likely returns empty output or validation error
- decode flag set to true but input is not valid Braille Unicode — may return garbled output or error
- Request body malformed or missing required 'text' field — returns 400 or similar error

## How this service works

Convert text to Unicode Braille characters (Grade 1 / uncontracted) or decode Braille back to text. Supports letters, digits, and common punctuation. Deterministic, pure CPU.

## Output

Returns the input text encoded as Unicode Braille characters (or decoded plain text if decode mode is enabled). The output is deterministic and CPU-based, covering letters, digits, and common punctuation.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "text": {
   "type": "string",
   "description": "text to encode, or Braille Unicode string to decode"
  },
  "decode": {
   "type": "boolean",
   "description": "If true, decode Braille to text (default: false)"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "mode": "encode",
  "result": "⠓⠑⠇⠇⠕",
  "original": "hello"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agent402-tools-braille-converter-1e84c942/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agent402.tools](https://www.zero.xyz/host/agent402.tools/llms.txt)
