•  
  1. Endpoints
    • Spell check – https://smart-spell-check.com/api/spelling
    • Punctuation check – https://smart-spell-check.com/api/punctuation
  2.  Authentication
    • Basic Authentication
    • Bearer Authentication
    • OAuth2 (Bearer Token)
  3. Methods and parameters
    • Spell check:
      spelling (required) string (path)
      Request body:
      {
          „text“: „“,
          „addedWords“: []
      }


      * the field „text“ is the text that will be checked and its value must contain up to 2000 characters
      ** the field „addedWords“ is an array of words will be skipped from checking and is optional
    • Punctuation check:
      punctuation (required) string (path)
      Request body:
      {
          „text“: „“
      }


      * the field „text“ is the text that will be checked and its value must contain up to 2000 characters

4. Client-side scripting snippets

    • Spell check:
    • Punctuation check:

5. Response codes

    • 200 successful operation
    • 403 access denied (forbidden)