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.

link|improve this question

78% accept rate
feedback

5 Answers

up vote 14 down vote accepted

Yes: Wiktionary API

Example of a query that exists: http://en.wiktionary.org/w/api.php?action=query&titles=test

Example of a query that doesn't: http://en.wiktionary.org/w/api.php?action=query&titles=testx

The first link gives examples on other types of formats that are probably easier for you to parse

link|improve this answer
1  
Thanks; the API itself is not what I was hoping for but the link you provided is what I was looking for. – Armentage May 14 '10 at 2:19
feedback

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.

link|improve this answer
1  
What I really wanted to do was take a full dump of the data on one of the non-English Wikitionary sites, and then turn the contents into something I could use locally. It seems silly now, but I was hoping that I could request the list of all words, and then pull down their defitions/translations one at a time as needed. – Armentage Dec 5 '10 at 17:51
1  
The fix to Caveat #2 is simple: add &prop=info to the query and check the response for redirect attribute. – svick Apr 30 at 11:17
@svick: Yes it's true #2 is easier to circumvent when using the API but these basic caveats also cover trying to parse the Wiktionary data dump files, even though this question doesn't ask about that approach. – hippietrail Apr 30 at 11:26
feedback

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.

link|improve this answer
feedback

To keep it really simple, extract the words from the dump like that:

bzcat pages-articles.xml.bz2 | grep '<title>[^[:space:][:punct:]]*</title>' | sed 's:.*<title>\(.*\)</title>.*:\1:' > words
link|improve this answer
how do I get a copy of pages-articles.xml.bz2? – Armentage Apr 10 at 13:27
It's just a generic name I used to describe the dumps of the form LANGwiktionary-DATE-pages-articles.xml.bz2 . Go to link, then click LANGwiktionary (LANG e.g. 'en', 'de'...). – benroth Apr 11 at 7:52
feedback

You might want to try JWKTL out. I just found out about it ;)

http://en.wikipedia.org/wiki/Ubiquitous_Knowledge_Processing_Lab#Wiktionary_API

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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