Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I've the following problem. I need to find verbs in a string using JavaScript. I would like to know, if there is something like (JAWS), the Java API for Wordnet, but for JavaScript.

More specifically, i'm searching for some kind of RESTful webservice able to return the list of verbs in a text or webpage.

If you know something useful, please don't hesitate to post your answers.

share|improve this question
1  
You could find all the words ending in "ing" or have "to " before them, plus common ones like "are" and "is" – Alley Aug 28 '11 at 21:00
Problem is that I need all verbs, comprising irregular verbs etc.. More than an algorithm, i need a database :) – user278064 Aug 28 '11 at 21:04

1 Answer

up vote 5 down vote accepted

Have a look at the Natural Language Processing APIs. They seem to have an API. There is even a service for larger amounts of requests (has a free plan as well).

It is based on simple POST requests and returns JSON, so it would be easy to use in JavaScript.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.