Guest

Does the Wikipedia API support searches for a specific template

By: a guest on Feb 23rd, 2012  |  syntax: None  |  size: 0.85 KB  |  hits: 9  |  expires: Never
download  |  raw  |  embed  |  report abuse
Copied
  1. <api>
  2.  <query>
  3.   <pages>
  4.    <page pageid="736" ns="0" title="Albert Einstein">
  5.     <templates>
  6.      ...
  7.      <tl ns="10" title="Template:Persondata"/>
  8.      ...
  9.     </templates>
  10.    </page>
  11.   </pages>
  12.  </query>
  13.  <query-continue>
  14.   <templates tlcontinue="736|10|Reflist"/>
  15.  </query-continue>
  16. </api>
  17.        
  18. curl 'http://en.wikipedia.org/w/api.php?action=query&list=embeddedin&eititle=Template:Persondata&eilimit=5&format=xml'
  19.        
  20. <?xml version="1.0"?>
  21. <api>
  22.   <query>
  23.     <embeddedin>
  24.       <ei pageid="307" ns="0" title="Abraham Lincoln" />
  25.       <ei pageid="308" ns="0" title="Aristotle" />
  26.       <ei pageid="339" ns="0" title="Ayn Rand" />
  27.       <ei pageid="340" ns="0" title="Alain Connes" />
  28.       <ei pageid="344" ns="0" title="Allan Dwan" />
  29.     </embeddedin>
  30.   </query>
  31.   <query-continue>
  32.     <embeddedin eicontinue="10|Persondata|595" />
  33.   </query-continue>
  34. </api>