# Phonetic Alphabet & Code Transcoder

> Phonetic Alphabet & Code Transcoder is a paid API for AI agents from api.24klabs.ai, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-13).

Converts text to/from NATO phonetic alphabet, Morse code, binary, or Grade-1 Braille in either direction

## Facts

- Endpoint: POST https://api.24klabs.ai/api/v1/phonetic-transcode
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/phonetic-alphabet-code-transcoder-53c9895e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_4tHHHL9QAr4yYLohajKne

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 phonetic-alphabet-code-transcoder-53c9895e -d '<json body>'
```

Example prompt: Can you spell out 'DELTA7' in NATO phonetic alphabet for me? I need to read it over the phone clearly.

## When to prefer this

Use this endpoint when you need deterministic, bidirectional transcoding between plain text and a specific encoding scheme (NATO phonetic, Morse, binary, or Braille) — especially useful for accessibility tools, radio/telephony communication helpers, educational apps, or encoding/decoding utilities. Prefer this over manual lookup tables or LLM-based spelling when accuracy and consistency are required.

## Known failure modes

- Unsupported characters for the selected scheme (e.g. non-ASCII for Morse)
- Invalid or missing scheme parameter returns 400
- Invalid direction parameter returns error
- Empty input text returns error
- Characters outside Grade-1 Braille standard may fail

## How this service works

Transcode text to or from the NATO phonetic alphabet, Morse code, binary, or Grade-1 Braille. Select scheme and direction.

## Output

Returns the transcoded string in the requested encoding scheme (NATO phonetic, Morse code, binary, or Grade-1 Braille), with the conversion applied in the specified direction (to or from the scheme).

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "op": {
   "type": "string"
  },
  "text": {
   "type": "string"
  },
  "scheme": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "result": "... --- ..."
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/phonetic-alphabet-code-transcoder-53c9895e/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.24klabs.ai](https://www.zero.xyz/host/api.24klabs.ai/llms.txt)
