MediaWiki API help
This is an auto-generated MediaWiki API documentation page.
Documentation and examples: https://www.mediawiki.org/wiki/API
list=checkuserlog (cul)
- This module requires read rights.
- Source: CheckUser
- License: GPL-2.0-or-later
Get entries from the CheckUser log.
Parameters:
- culuser
- Username of the CheckUser. 
- cultarget
- Checked user, IP address, or CIDR range. 
- cullimit
- Limit of rows. 
- No more than 500 (5,000 for bots) allowed.
- Type: integer or max
- Default: 10
- culdir
- In which direction to enumerate: - newer
- List oldest first. Note: culstart has to be before culend.
- older
- List newest first (default). Note: culstart has to be later than culend.
 
- One of the following values: newer, older
- Default: older
- culfrom
- The timestamp to start enumerating from. 
- Type: timestamp (allowed formats)
- culto
- The timestamp to end enumerating. 
- Type: timestamp (allowed formats)
- culcontinue
- When more results are available, use this to continue. 
Examples:
- Show checks of User:Example
- api.php?action=query&list=checkuserlog&culuser=Example&cullimit=25 [open in sandbox]
- Show checks of 192.0.2.0/24 after 2011-10-15T23:00:00Z
- api.php?action=query&list=checkuserlog&cultarget=192.0.2.0/24&culfrom=2011-10-15T23:00:00Z [open in sandbox]