mediawiki_batch_get_pages_info
Retrieve metadata such as size, last edit time, categories, and protection status for multiple wiki pages in a single API call. Ideal for gathering info on up to 50 pages without fetching full content.
Instructions
Get metadata for MULTIPLE pages in a single API call.
USE WHEN: You need info (last edit, size, categories) for 2+ pages without their content.
NOT FOR: Single page (use mediawiki_get_page_info). Not for content (use mediawiki_batch_get_pages).
PARAMETERS:
titles: Array of page titles (required, max 50)
RETURNS: Metadata (size, last edit, categories, protection) per page. Missing pages reported with exists=false.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| titles | Yes | List of page titles to get info for (max 50) |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| pages | Yes | ||
| total_count | Yes | ||
| exists_count | Yes | ||
| missing_count | Yes |