How to use wikipedia api if it exists? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-18T06:54:30Z http://stackoverflow.com/feeds/question/964454 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/964454/how-to-use-wikipedia-api-if-it-exists -1 How to use wikipedia api if it exists? chris 2009-06-08T11:29:07Z 2009-06-08T12:12:45Z <p>Hi,</p> <p>I'm trying to find out if there's a wikipedia api (I Think it is related to the mediawiki?). </p> <p>If so, I would like to know how I would tell wikipedia to give me an article about the new york yankees for example.</p> <p>What would the REST url be for this example?</p> <p>All the docs on this subject seem fairly complicated.</p> http://stackoverflow.com/questions/964454/how-to-use-wikipedia-api-if-it-exists/964466#964466 3 Answer by drdaeman for How to use wikipedia api if it exists? drdaeman 2009-06-08T11:32:30Z 2009-06-08T11:32:30Z <p>See <a href="http://www.mediawiki.org/wiki/API" rel="nofollow">http://www.mediawiki.org/wiki/API</a></p> <p>Specifically for Wikipedia API is located at <a href="http://en.wikipedia.org/w/api.php" rel="nofollow">http://en.wikipedia.org/w/api.php</a></p> http://stackoverflow.com/questions/964454/how-to-use-wikipedia-api-if-it-exists/964597#964597 9 Answer by Shadi Almosri for How to use wikipedia api if it exists? Shadi Almosri 2009-06-08T12:07:38Z 2009-06-08T12:12:45Z <p>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.</p> <p><a href="http://en.wikipedia.org/w/api.php?action=query&amp;prop=revisions&amp;titles=New_York_Yankees&amp;rvprop=timestamp|user|comment|content" rel="nofollow">http://en.wikipedia.org/w/api.php?action=query&amp;prop=revisions&amp;titles=New_York_Yankees&amp;rvprop=timestamp|user|comment|content</a></p> <p>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.:</p> <p><a href="http://en.wikipedia.org/wiki/New_York_Yankees" rel="nofollow">http://en.wikipedia.org/wiki/New_York_Yankees</a> [Take the part after the wiki/]</p> <p>--></p> <p><a href="http://en.wikipedia.org/w/api.php?action=query&amp;prop=revisions&amp;titles=New_York_Yankees&amp;rvprop=timestamp|user|comment|content" rel="nofollow">http://en.wikipedia.org/w/api.php?action=query&amp;prop=revisions&amp;titles=New_York_Yankees&amp;rvprop=timestamp|user|comment|content</a></p> <p>[Place it in the title variable of the GET request.</p> <p>The URL above can do with tweaking to get the different sections you do or do not want. So read the documentation :)</p>