I've been trying to come up with a solution to get links/pages (dunno what it's called) from a MediaWiki category page using simple jQuery. I'm been reading the API docs but don't really know what to look for.

If you look at this page you'll see release dates for video games.. that's the information I want to obtain. And this is as far as I got:

var title="Upcoming_video_games";

$.getJSON("http://en.wikipedia.org/w/api.php?action=query&list=allpages&titles="+title+"&format=json&callback=?", function(data) {
    console.log(data);
});

Does someone know how to do this? Any help is appreciated.

TIA

link|improve this question

It looks like the actual release date is not on that page. Do you want to dive into each page to find the release date, or do you just want the list of games on the category page? – Andrew Whitaker May 6 '11 at 1:19
@Andrew: Oh I see. The basic information I want is release date, name and console, so yeah, probably dive into each page. But how would that affect the performance? – Kristoffer Lundberg May 6 '11 at 6:42
Negatively: You will have to follow links on the categories page to each article, and then extract the information you need. – Andrew Whitaker May 6 '11 at 12:50
You could try DbPedia. – Tgr May 6 '11 at 22:07
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.