Download OpenAPI specification:Download
Documentation of the OX Software GmbH SpellCheck service Http API.
Check spelling of the given paragraphs, using the given locales.
| paragraph | Array of objects Paragraphs consisting of texts to check spelling for. |
| noReplacements | boolean Default: false Optional property to specify if replacments should be retrieved and returned for the current request. Default is set to false, so that replacements are returned if not specified. |
The spelling result for the given paragraphs, using the given locales.
{- "paragraph": [
- {
- "locale": "string",
- "word": "string"
}
], - "noReplacements": false
}{- "spellResult": [
- {
- "length": 0,
- "locale": "string",
- "start": 0,
- "word": "string",
- "replacements": [
- "string"
]
}
]
}Check spelling of the given text using the given locale.
| locale | string The locale to be used to check the spelling of the given text. |
| text | string The text to check spelling for, using the given locale and required language encoding of the used dictionary. |
| offset | integer Offset that is added to the appropriate character position within the response for detected, misspelled words. |
| noReplacements | boolean Default: false Optional property to specify if replacments should be retrieved and returned for the current request. Default is set to false, so that replacements are returned if not specified. |
The spelling result for the given text, using the given locale.
{- "locale": "string",
- "text": "string",
- "offset": 0,
- "noReplacements": false
}{- "spellResult": [
- {
- "length": 0,
- "locale": "string",
- "start": 0,
- "word": "string",
- "replacements": [
- "string"
]
}
]
}Getting the current health status of the SpellCheck service.
The health status of the SpellCheck service.
{- "health": {
- "serverAPI": 0,
- "serverAPIText": "string",
- "serverId": "string",
- "serverName": "string",
- "serverStatus": "string"
}
}Checking if a word is misspelled, using the given locale.
| locale | string The locale to be used to check the spelling of the given word. |
| word | string The word to check spelling for, using the given locale and required language encoding of the used dictionary. |
The boolean result of the spell check operation, using the given locale.
{- "locale": "string",
- "word": "string"
}{- "spellResult": true
}Retrieving the suggested replacements for a given word, using the given locale.
| locale | string The locale to be used to check the spelling of the given word. |
| word | string The word to check spelling for, using the given locale and required language encoding of the used dictionary. |
The suggested replacements for a misspelled word, using the given locale.
{- "locale": "string",
- "word": "string"
}{- "spellResult": [
- "string"
]
}Retrieving all locales that are supported to be used for spell check requests.
The supported locales for all spell check related requests.
{- "spellResult": [
- {
- "locale": "string",
- "encoding": "string"
}
]
}