get_page_citations
Retrieve citation lists for specific Grokipedia pages to verify sources and support research with optional limit controls.
Instructions
Get the citations list for a specific page.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| slug | Yes | Unique slug identifier of page to retrieve citations from | |
| limit | No | Maximum number of citations to return (optional, returns all if not specified) |
Input Schema (JSON Schema)
{
"properties": {
"limit": {
"anyOf": [
{
"minimum": 1,
"type": "integer"
},
{
"type": "null"
}
],
"default": null,
"description": "Maximum number of citations to return (optional, returns all if not specified)",
"title": "Limit"
},
"slug": {
"description": "Unique slug identifier of page to retrieve citations from",
"title": "Slug",
"type": "string"
}
},
"required": [
"slug"
],
"type": "object"
}