POST
/
api2
/
v1
/
spellCheck
/
suggest
Suggest a word
curl --request POST \
  --url https://cloud.memsource.com/web/api2/v1/spellCheck/suggest \
  --header 'Content-Type: application/json' \
  --data '{
  "lang": "<string>",
  "words": [
    "<string>"
  ],
  "referenceTexts": [
    "<string>"
  ]
}'
{
  "suggestResults": [
    {
      "word": "<string>",
      "suggestions": [
        {
          "word": "<string>",
          "distance": 123
        }
      ]
    }
  ]
}

Body

application/json

Response

200
application/json

successful operation

The response is of type object.