Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is there a public API which would let me lookup definitions for words ? I've been searching for this for a bit but it's getting mixed up with the dictionary datastructure. I'm planing on using it in a c# app.

Thanks

share|improve this question
Google is your friend. Use define: word. – Margus Mar 2 '11 at 19:59
4  
@Margus I was looking for a public api. don't want to parse html whose format is not fixed. – Bala R Mar 2 '11 at 20:04

closed as off topic by casperOne Nov 14 '12 at 12:49

Questions on Stack Overflow are expected to relate to programming or software development within the scope defined in the FAQ. Consider editing the question or leaving comments for improvement if you believe the question can be reworded to fit within the scope. Read more about closed questions here.

2 Answers

up vote 6 down vote accepted

The best I was able to find to serve my purpose was google's api from the post titled On Google's Unofficial Dictionary API. It returns JSON for a query like

http://www.google.com/dictionary/json?callback=dict_api.callbacks.id100&q=coffee&sl=en&tl=en

where coffee is the keyword.

share|improve this answer

If you are language agnostic, you could try

Ruby WordNet

http://deveiate.org/projects/Ruby-WordNet/

and check out the WordNet project in general,

http://wordnet.princeton.edu/

for .NET...

http://opensource.ebswift.com/WordNet.Net/

share|improve this answer
Sorry, I should have mentioned I'm working on a c# application. – Bala R Mar 1 '11 at 21:37
answer updated. – Orbit Mar 1 '11 at 21:40
Doesn't look like a public web API. I have a database-based solution currently but i'm trying to move away from it as it's need to be constantly updated. – Bala R Mar 2 '11 at 3:21

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