get_page_sections
Extract all section headers from Grokipedia articles to quickly navigate content and identify key topics within any page using the article's unique slug identifier.
Instructions
Get a list of all section headers in an article.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| slug | Yes | Unique slug identifier of page to list sections for |
Input Schema (JSON Schema)
{
"properties": {
"slug": {
"description": "Unique slug identifier of page to list sections for",
"title": "Slug",
"type": "string"
}
},
"required": [
"slug"
],
"type": "object"
}