get_page
Retrieve complete page information from Grokipedia including metadata, content preview, and citation summaries using a unique slug identifier.
Instructions
Get complete page information including metadata, content preview, and citations summary.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| slug | Yes | Unique slug identifier of the page to retrieve | |
| max_content_length | No | Maximum length of content to return (default: 5000) |
Input Schema (JSON Schema)
{
"properties": {
"max_content_length": {
"default": 5000,
"description": "Maximum length of content to return (default: 5000)",
"minimum": 100,
"title": "Max Content Length",
"type": "integer"
},
"slug": {
"description": "Unique slug identifier of the page to retrieve",
"title": "Slug",
"type": "string"
}
},
"required": [
"slug"
],
"type": "object"
}