I want to build a simple application that looks up words against Wiktionary to see if they exist. Is there a standard API supported by the Wiktionary software that would let me do this? Alternatively, is there any way I can pull down the dictionary data that backs a Wiktionary? There are many international variants who's data I would love to put a different front-end around.
|
Yes: Wiktionary API Example of a query for a page that exists: Example of a query for a page that doesn't:
The first link gives examples on other types of formats that are probably easier for you to parse |
|||||
|
|
There are a few caveats in just checking that Wiktionary has a page with the name you are looking for: Caveat #1: All Wiktionaries including the English Wiktionary actually have the goal of including every word in every language, so if you simply use above API call you will know that the word you are asking about is a word in at least one language, but not necessarily English: http://en.wiktionary.org/w/api.php?action=query&titles=dicare Caveat #2: Perhaps a redirect exists from one word to another word. It might be from an alternative spelling, but it might be from an error of some kind. The API call above will not differentiate between a redirect and an article: http://en.wiktionary.org/w/api.php?action=query&titles=profilemetry Caveat #3: Some Wiktionaries including the English Wiktionary include "common misspellings": http://en.wiktionary.org/w/api.php?action=query&titles=fourty If these are not included in what you want, you will have to load and parse the wikitext itself, which is not a trivial task. |
|||||||||||
|
|
You can download a dump of Wikitionary data. There's more information in the FAQ. For your purposes, the definitions dump is probably a better choice than the xml dump. |
|||||
|
|
To keep it really simple, extract the words from the dump like that:
|
|||
|
You might want to try JWKTL out. I just found out about it ;) http://en.wikipedia.org/wiki/Ubiquitous_Knowledge_Processing_Lab#Wiktionary_API |
||||
|