get-polls
Retrieve recent polls from HackerNews to analyze community opinions and discussions. Supports pagination for browsing through multiple pages of poll results.
Instructions
Get latest polls posted to HackerNews
Input Schema
Name | Required | Description | Default |
---|---|---|---|
hitsPerPage | No | Number of results per page (default: 20) | |
page | No | Page number for pagination (default: 0) |
Input Schema (JSON Schema)
{
"properties": {
"hitsPerPage": {
"description": "Number of results per page (default: 20)",
"type": "number"
},
"page": {
"description": "Page number for pagination (default: 0)",
"type": "number"
}
},
"type": "object"
}