get_page_history
Retrieve revision history for a Wizzypedia page by specifying the title and optionally limiting the number of revisions. Facilitates tracking changes and updates on wiki pages.
Instructions
Get revision history of a page
Input Schema
Name | Required | Description | Default |
---|---|---|---|
limit | No | Maximum number of revisions to return (default: 10) | |
title | Yes | Title of the page |
Input Schema (JSON Schema)
{
"properties": {
"limit": {
"default": 10,
"description": "Maximum number of revisions to return (default: 10)",
"type": "number"
},
"title": {
"description": "Title of the page",
"type": "string"
}
},
"required": [
"title"
],
"type": "object"
}