Documentation

API URL


POST /check

Headers
Code
Content-Type: application/json
Body Parameters


Example Request

Code
{
  "text": "helo frend",
  "lang": "en",
  "suggestions": true
}

Successful Response

Status
HTML
200 OK
Body
Code
{
  "language": "en",
  "issues": [
    "helo",
    "frend"
  ],
  "suggestions": {
    "helo": [
      "hello",
      "help",
      "hero",
      "held",
      "helm"
    ],
    "frend": [
      "friend",
      "trend",
      "fend",
      "rend",
      "bend"
    ]
  },
  "grammarHints": []
}

Error Response

Example
Code
400 INVALID_TEXT – If text is missing or not a string
500 SERVER_ERROR – On unhandled internal error

Last Updated:  May 4, 2026