I'm trying to find out if there's a wikipedia api (I Think it is related to the mediawiki?).

If so, I would like to know how I would tell wikipedia to give me an article about the new york yankees for example.

What would the REST url be for this example?

All the docs on this subject seem fairly complicated.

link|improve this question

76% accept rate
3  
The "if it exists" part is also covered here: stackoverflow.com/questions/627594/is-there-a-wikipedia-api. But I think the "how to use it" part is a legitimate question... sort of. – Jonik Jun 8 '09 at 12:14
feedback

3 Answers

up vote 29 down vote accepted

You really really need to spend some time reading the documentation, as this took me a moment to look and click on the link to fix it. :/ but out of sympathy i'll provide you a link that maybe you can learn to use.

http://en.wikipedia.org/w/api.php?action=query&prop=revisions&titles=New_York_Yankees&rvprop=timestamp|user|comment|content

That's the variabled you will be looking to get. Your best bet is to know the page you will be after and replace the Wikipedia link part into the title i.e.:

http://en.wikipedia.org/wiki/New_York_Yankees [Take the part after the wiki/]

-->

http://en.wikipedia.org/w/api.php?action=query&prop=revisions&titles=New_York_Yankees&rvprop=timestamp|user|comment|content

[Place it in the title variable of the GET request.

The URL above can do with tweaking to get the different sections you do or do not want. So read the documentation :)

link|improve this answer
7  
+1 for an actual example, instead of just dumping links (even though the example is also just a link... :) – Jonik Jun 8 '09 at 12:11
1  
thanks for giving the example. helps! – chris Jun 8 '09 at 20:13
feedback

See http://www.mediawiki.org/wiki/API

Specifically for Wikipedia API is located at http://en.wikipedia.org/w/api.php

link|improve this answer
yea, i cant figure out how to do my example after reading that. any ideas? – chris Jun 8 '09 at 11:34
Perhaps you should spend more than 5 minutes reading the documentation. – Matthew Flaschen Jun 8 '09 at 11:35
no, i seriously can't figure that document out. i don't know how to get specific page data using that api. – chris Jun 8 '09 at 11:37
2  
You actually can't. To get raw article source you should access the articles this way: mediawiki.org/w/index.php?title=API&action=raw – drdaeman Jun 8 '09 at 12:26
feedback

The answers here helped me arrive at a solution, but I discovered more info in the process which may be of advantage to others who find this question. I figure most people simply want to use the API to quickly get content off the page. Here is how I'm doing that:

Using Revisions:

//working url:
http://en.wikipedia.org/w/api.php?action=query&prop=revisions&titles=Threadless&rvprop=content&format=json&rvsection=0&rvparse=1

//Explanation
//Base Url:
http://en.wikipedia.org/w/api.php?action=query

//tell it to get revisions:
&prop=revisions

//define page titles separated by pipes. In the example i used t-shirt company threadless
&titles=whatever|the|title|is

//specify that we want the page content
&rvprop=content

//I want my data in JSON, default is XML
&format=json

//lets you choose which section you want. 0 is the first one.
&rvsection=0

//tell wikipedia to parse it into html for you
&rvparse=1

Using Extracts (better/easier for what i'm doing)

//working url:
http://en.wikipedia.org/w/api.php?action=query&prop=extracts&titles=Threadless&format=json&exintro=1

//only explaining new parameters
//instead of revisions, we'll set prop=extracts
&prop=extracts

//if we just want the intro, we can use exintro. Otherwise it shows all sections
&exintro=1

All the info requires reading through the API documentation as was mentioned, but I hope these examples will help the majority of the people who come here for a quick fix.

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.