Catalog/encoding-nato-phonetic

Encoding

NATO phonetic alphabet API

Spells text into the NATO/ICAO phonetic alphabet (A->Alfa, 1->One) or decodes spelling words back to characters, preserving spaces. Answers 'How do I spell this in NATO phonetic?', 'Decode these phonetic words.'

Price$0.01per request
MethodPOST
Route/v1/encoding/nato-phonetic
StatusLive
MIME typeapplication/json
Rate limit120/minute
Cache0s public
natophoneticicaospelling-alphabetencodedecodealfa-bravoencoding
API URLhttps://x402.hexl.dev/v1/encoding/nato-phonetic
Integration docs
Example request
{
  "value": "AB1"
}
Example response
{
  "operation": "encode",
  "result": "Alfa Bravo One",
  "tokens": [
    "Alfa",
    "Bravo",
    "One"
  ],
  "interpretation": "Spelled 'AB1' in the NATO phonetic alphabet."
}
Input schema
{
  "type": "object",
  "required": [
    "value"
  ],
  "properties": {
    "value": {
      "type": "string",
      "examples": [
        "AB1"
      ]
    },
    "operation": {
      "type": "string",
      "enum": [
        "encode",
        "decode"
      ]
    }
  }
}
Output schema
{
  "type": "object",
  "additionalProperties": true
}