I am study wikipedia api,

some demo api call

so what is the pageid? how to change it into real page url?

I mean <page pageid="18630637" ns="0" title="Translation" />, how to change 18630637 into http://en.wikipedia.org/wiki/Translation?

link|improve this question

feedback

3 Answers

up vote 4 down vote accepted

The pageid is the MediaWiki's internal article ID. You can use the the API's info property to get the full URL from pageid:

http://en.wikipedia.org/w/api.php?action=query&prop=info&pageids=18630637&inprop=url
link|improve this answer
I wrote a new answer below, maybe a comment would have been enough... You don't need two API calls, one is enough. Just add "&prop=info&inprop=url" to your original URL: en.wikipedia.org/w/… – Jona Christopher Sahnwaldt Mar 20 at 19:11
feedback

Oh, and you can also get the full page URL in your initial API call if you add "&prop=info&inprop=url":

http://en.wikipedia.org/w/api.php?action=query&generator=search&gsrsearch=meaning&srprop=size%7Cwordcount%7Ctimestamp%7Csnippet&prop=info&inprop=url

link|improve this answer
feedback

You can just use a URL like this:

http://en.wikipedia.org/wiki?curid=18630637

This is the shortest form, others are also possible:

http://en.wikipedia.org/wiki/Translation?curid=18630637

http://en.wikipedia.org/w/index.php?curid=18630637

Note that MediaWiki ignores the page title if you specify a curid, so even

http://en.wikipedia.org/wiki/FooBar?curid=18630637

leads to the same page.

Even shorter: http://en.wikipedia.org/?curid=18630637

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.