# NATO Phonetic Alphabet Converter

> NATO Phonetic Alphabet Converter is a paid API for AI agents from x402-zoo.lolagent.workers.dev, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-14).

Converts any text string into its NATO phonetic alphabet spelling (e.g. 'ABC' → 'Alfa Bravo Charlie')

## Facts

- Endpoint: GET https://x402-zoo.lolagent.workers.dev/api/nato-alphabet
- 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-converter-4d6c76f3
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_D0w71dsl1wMwF-l50prL8

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-converter-4d6c76f3
```

Example prompt: Can you spell out 'X4K9B' using the NATO phonetic alphabet — like Alfa Bravo Charlie style — so I can read it over the phone?

## When to prefer this

Use this endpoint when you need to convert arbitrary text into NATO phonetic alphabet form for voice readback, radio communication, spelling clarification over phone calls, or any workflow where letter-by-letter phonetic disambiguation is required. It is a simple, deterministic, low-latency conversion with no side effects.

## Known failure modes

- Missing required 'text' query parameter returns an error
- Empty string input may return an empty or trivial response
- Very long input strings may be truncated or rejected
- Non-ASCII or special characters may not have NATO equivalents and could be skipped or returned as-is
- Payment failure (402) if USDC payment is not provided or insufficient

## How this service works

Convert text into NATO phonetic spelling using Alfa Bravo Charlie for voice and spelling workflows.

## Output

A sequence of NATO phonetic alphabet words corresponding to each letter and character in the input text — for example, input 'ABC' returns 'Alfa Bravo Charlie'. Non-letter characters may be passed through or described in plain terms.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "text"
     ],
     "properties": {
      "text": {
       "type": "string"
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/nato-phonetic-alphabet-converter-4d6c76f3/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402-zoo.lolagent.workers.dev](https://www.zero.xyz/host/x402-zoo.lolagent.workers.dev/llms.txt)
