Catalog/text-initials

Text

Initials / acronym API

Derives initials and an acronym from a phrase, optionally skipping small words. Answers 'what is the acronym of this phrase?', 'how do I get the initials of a name or organization?'.

Price$0.01per request
MethodPOST
Route/v1/text/initials
StatusLive
MIME typeapplication/json
Rate limit120/minute
Cache0s public
textinitialsacronymabbreviationnametransformfirst-lettersmonogram
API URLhttps://x402.hexl.dev/v1/text/initials
Integration docs
Example request
{
  "text": "North Atlantic Treaty Organization"
}
Example response
{
  "initials": "N.A.T.O",
  "acronym": "NATO",
  "wordCount": 4
}
Input schema
{
  "type": "object",
  "required": [
    "text"
  ],
  "properties": {
    "text": {
      "type": "string",
      "examples": [
        "North Atlantic Treaty Organization"
      ]
    },
    "uppercase": {
      "type": "boolean"
    },
    "skipSmallWords": {
      "type": "boolean"
    }
  }
}
Output schema
{
  "type": "object",
  "additionalProperties": true
}