Download OpenAPI specification:Download
Returns options related to languages, like what languages are available
{- "available": {
- "grammar": {
- "se": "davvisámegiella",
- "bg": "български"
}, - "speller": {
- "se": "davvisámegiella"
}, - "hyphenation": {
- "se": "davvisámegiella"
}
}
}
Returns grammar check results for the supplied text and language
languageCode required | string Example: se The specified language |
text required | string |
{- "text": "string"
}
[- {
- "text": "Bealljeheamit leat, nu movt Norgga Bealljehemiidlihttu oaidná, duvdojuvvon olggobeallai diehtojuohkinservodaga, miidagaha ahte bealljeheamit dávjá ožžot unnit dieđuid servodat dilálašvuođain.",
- "errs": [
- {
- "error_text": "servodat dilálašvuođain",
- "start_index": 167,
- "end_index": 190,
- "error_code": "msyn-compound",
- "description": "servodat dilálašvuođain berrešii leat oktan sátnin.",
- "suggestions": [
- "servodatdilálašvuođain"
]
}
]
}
]
Returns spelling check results for the supplied text and language
languageCode required | string Example: se The specified language |
word | string |
{- "word": "string"
}
{- "text": "oainá páhkat",
- "results": [
- {
- "word": "oainá",
- "isCorrect": false,
- "suggestions": {
- "value": "oaidná",
- "weight": 18.432617
}
}
]
}
Returns hyphenation results for the supplied text and language
languageCode required | string Example: se The specified language |
word | string |
{- "word": "string"
}
[- {
- "word": "ođasmahtinministtar",
- "hyphenations": [
- {
- "value": "o^đas^maht^tin#mi^nist^tar",
- "weight": 60
}
]
}
]