API:Lists
| This page is part of the MediaWiki Action API documentation. |
| Please help improve this technical documentation! Take our MediaWiki Action API Technical Documentation User Feedback Survey before 6 January – Note: The survey uses Google Forms. See Privacy Statement – Thanks! |
Lists differ from properties in two aspects - instead of appending data to the elements in the pages element, each list has its own separated branch in the query element.
To use the list API, specify action=query&list=list1|list2|... in the URL.
Also, list output is limited by number of items, and may be continued using the query-continue element.
Unless indicated otherwise, modules listed on this page can be used as generators.
Submodules[edit]
- Browse all in a single page
- allcategories
- alldeletedrevisions
- allfileusages
- allimages
- alllinks
- allpages
- allredirects
- allrevisions
- alltransclusions
- allusers
- backlinks
- blocks
- categorymembers
- deletedrevs
- embeddedin
- exturlusage
- filearchive
- imageusage
- iwbacklinks
- langbacklinks
- logevents
- pagepropnames
- pageswithprop
- prefixsearch
- protectedtitles
- querypage
- random
- recentchanges
- search
- tags
- usercontribs
- users
- watchlist
- watchlistraw
Limits[edit]
All list queries return a limited number of results.
This limit is 10 by default, and can be set as high as 500 for regular users, or 5000 for users with the apihighlimits right (typically bots and sysops).
The limit parameter for a given module consists of the module prefix followed by limit, so ptlimit is the maximum number of protectedtitles returned, and cmlimit is the maximum number of categorymembers returned.
Some modules impose stricter limits under certain conditions.
If you're not sure which limit applies to you and just want as many results as possible, set the limit to max.
In that case, a <limits> element will be returned, specifying the limits used.
Warnings
If you set the limit to a value higher than the maximum, a warning will be thrown, which looks like:
| Code | Info |
|---|---|
| allpages | aplimit may not be over 500 (set to 1000) for users. |
ap can be replaced with any other module prefix.
The ap prefix corresponds to the list=allpages parameter
Example[edit]
Getting the maximum amount of revisions with content and backlinks for w:Winnipeg, Manitoba
| Result |
|---|
<?xml version="1.0" encoding="utf-8"?>
<api>
<query>
<pages>
<page pageid="6842860" ns="0" title="Winnipeg, Manitoba">
<revisions>
<rev>#REDIRECT [[Winnipeg]]
{{R from Canadian settlement name}}</rev>
<rev>#REDIRECT [[Winnipeg]]</rev>
</revisions>
</page>
</pages>
<backlinks>
<bl pageid="924" ns="0" title="A. A. Milne" />
<bl pageid="5959" ns="0" title="Canadian Pacific Railway" />
<!-- ... -->
<bl pageid="708754" ns="2" title="User:ChrisErbach" />
<bl pageid="802133" ns="2" title="User:Earl Andrew/54nl) 80X" />
</backlinks>
</query>
<limits revisions="50" backlinks="500" />
<query-continue>
<backlinks blcontinue="0|Winnipeg,_Manitoba|994168" />
</query-continue>
</api>
|
| This page or project is maintained by Core Platform Team.
Get help:
|