User:Martyav/Sandbox/API:Lists
Appearance
| This page is part of the MediaWiki Action API documentation. |
GET Request to list items that match select criteria
API documentation
[edit]Lists return information gathered from across the site, rather than the content from any one, particular page. To request a list, you pass the list parameter of your query string a valid list submodule, such as allimages or usercontribs. A list query is written like so: action=query&list=list1|list2.
List queries always have a limit on the number of items returned. To view more items, append the values inside the result's continue element to the original request. Please see individual list API pages for more concrete examples of how to use lists:
- 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
Additional notes
[edit]- Most list submodules can be used as generators, unless otherwise noted.
- List query limits:
- Results for list queries always have a limit; the default limit is 10. The results limit can be set as high as 500 for regular users, or 5000 for users with the
apihighlimitsright (typically bots and sysops). Some modules impose stricter limits under certain conditions (more details). - 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, alimitselement will be returned, specifying the limits used. - The limit parameter for a given module consists of the module prefix followed by
limit, soptlimitis the maximum number ofprotectedtitlesreturned, andcmlimitis the maximum number ofcategorymembersreturned.
- Results for list queries always have a limit; the default limit is 10. The results limit can be set as high as 500 for regular users, or 5000 for users with the
See also
[edit]- Documentation on query module contains a brief description of all list submodules, their corresponding parameters, and values. A fuller description of list submodules is available at API:Lists/All.
- API:Properties is a similar API, for accessing properties of pages. Unlike list queries, which return a separate branch in the
queryelement, property queries append data to thepageselement.