# NATO Phonetic Alphabet Encoder/Decoder

> NATO Phonetic Alphabet Encoder/Decoder 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 NATO phonetic alphabet words (e.g. 'AB' → 'Alpha | Bravo') or decodes NATO phonetic words back to original text, supporting letters and digits.

## Facts

- Endpoint: POST https://agent402.tools/api/nato-phonetic
- 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/nato-phonetic-alphabet-encoder-decoder-1b0198c2
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_tW4I_Cil1D3L0gxtevZfD

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 nato-phonetic-alphabet-encoder-decoder-1b0198c2 -d '<json body>'
```

Example prompt: Spell out 'N7X-42B' using the NATO phonetic alphabet — like November, Seven, X-ray — so I can read it over the phone without confusion.

## When to prefer this

Use this endpoint when you need a deterministic, CPU-only conversion between plain text and NATO phonetic alphabet — ideal for reading out codes, serial numbers, passwords, or call signs over voice channels. Prefer this over manual lookup tables or LLM guessing for exact, standard NATO mappings.

## Known failure modes

- Unsupported characters (e.g. special symbols, accented letters) may be skipped or cause an error
- Malformed phonetic input during decode may return incorrect or partial results
- Empty text input may return an empty or error response
- Payment of $0.001 USDC required per call; missing payment results in 402 error

## How this service works

Convert text to the NATO phonetic alphabet (Alpha, Bravo, Charlie...) or decode phonetic words back to text. Letters and digits supported. Word boundaries marked with " | ". Deterministic, pure CPU.

## Output

A string of NATO phonetic words representing each character in the input, with word boundaries marked by ' | ' between characters. For decode mode, returns the original text reconstructed from phonetic words.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "text": {
   "type": "string",
   "description": "Text to encode, or NATO phonetic string to decode"
  },
  "decode": {
   "type": "boolean",
   "description": "If true, decode NATO phonetic words back to text (default: false)"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "mode": "encode",
  "result": "Sierra Oscar Sierra | Four Two",
  "original": "SOS 42"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/nato-phonetic-alphabet-encoder-decoder-1b0198c2/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)
