On my Wikipedia user page, I run a Wikipedia script that displays my statistics (number of pages edited, number of new pages, monthly activity, etc.).

I'd like to put this information on my blog.

Is there an API that would allow me to do something like this?

link|improve this question

55% accept rate
feedback

5 Answers

up vote 60 down vote accepted

MediaWiki's API is running on Wikipedia (docs). You can also use the Special:Export feature to dump data and parse it yourself.

More information.

link|improve this answer
1  
en.wikipedia.org/w/api.php – ZJR Mar 9 '11 at 15:11
feedback

Wikipedia is built on MediaWiki, and here's the MediaWiki API.

link|improve this answer
feedback

If you want to extract structured data from Wikipedia, you may consider using DbPedia http://dbpedia.org/

It provides means to query data using given criteria using SPARQL and returns data from parsed Wikipedia infobox templates

Here is a quick example how it could be done in .NET http://www.kozlenko.info/blog/2010/07/20/executing-sparql-query-on-wikipedia-in-net/

There are some SPARQL libraries available for multiple platforms to make queries easier

link|improve this answer
feedback

JWPL - Java-based Wikipedia Library -- An application programming interface for Wikipedia

http://code.google.com/p/jwpl/

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.