Reputation: 1232
We are discussing a project where we need to identify if a word is a noun, verb, pronoun etc. At the same time, we need to check a sentence if that is correct (grammatically).
This is a huge task to do from scratch, so I am wondering if there is any service/api available for this?
The application will be android based either native or phonegap based, so api compatible with the major languages will help immensely.
Upvotes: 0
Views: 1258
Reputation: 1664
LanguageTool has an HTTPS API (disclosure: I'm the LanguageTool maintainer) for text checking. The part-of-speech information is available via its Java API, not via HTTP.
Upvotes: 1