I want to know: is there any API or a query interface through which I can access Wikipedia data?

link|improve this question
feedback

3 Answers

Mediawiki, the wiki platform that wikipedia uses does have an HTTP based API. See MediaWiki API.

For example, to get pages with the title stackoverflow, you call

http://en.wikipedia.org/w/api.php?action=query&titles=Stackoverflow

There are some (incomplete) Java wrappers around the API - see the Client Code - Java section of the API page for more detail.

link|improve this answer
feedback

I had the same question and the closest I came to an out-of-the-box solution is bliki, hosted at http://code.google.com/p/gwtwiki/. I also wrote an article at Integrating Stuff to help you get started with it: http://www.integratingstuff.com/2012/04/06/hook-into-wikipedia-using-java-and-the-mediawiki-api/

link|improve this answer
feedback

Watchout this page they are soon releasing apis :)

http://wikipedia-lab.org/en/index.php/Wikipedia%5FAPI#Getting%5FStarted%5F.28Java.29

link|improve this answer
feedback

Your Answer

 
or
required, but never shown