Spelling & Grammar

Semantex spell and grammar operations' request on provided content

Spelling & Grammar Check

Perform spelling and grammar check on the given content (recommend for short content). Support English, French and Spanish.

Securityapi_key
Request
query Parameters
lang
required
string

The two letter language code

Example: lang=en
text
required
string

The text content with UTF-8 text representation

Example: text=I'm going to the markte
Responses
200

200 response

400

400 response

403

The request is forbidden (Please input a valid API key)

get/text/nlp/spellcheck
Request samples
Response samples
application/json
{
  • "status": {
    },
  • "result": {
    }
}

Spelling & Grammar Check

Perform spelling and grammar check on the given content (recommend for long content). Support English, French and Spanish.

Securityapi_key
Request
Request Body schema: application/json
required
text
required
string non-empty

The text content with UTF-8 text representation

lang
required
string

The two letter language code

Enum: "en" "fr" "es"
Responses
200

200 response

400

400 response

403

The request is forbidden (Please input a valid API key)

post/text/nlp/spellcheck
Request samples
application/json
{
  • "text": "I'm going to the markte",
  • "lang": "en"
}
Response samples
application/json
{
  • "status": {
    },
  • "result": {
    }
}