get-posts-by-author
Retrieve all posts, stories, and comments from a specific HackerNews author. Filter results by content type and manage pagination to browse user contributions efficiently.
Instructions
Get all posts (stories, comments, etc.) by a specific author
Input Schema
Name | Required | Description | Default |
---|---|---|---|
hitsPerPage | No | Number of results per page (default: 20) | |
page | No | Page number for pagination (default: 0) | |
tags | No | Filter by type (e.g., "story", "comment") | |
username | Yes | The username of the author |
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"
},
"tags": {
"description": "Filter by type (e.g., \"story\", \"comment\")",
"type": "string"
},
"username": {
"description": "The username of the author",
"type": "string"
}
},
"required": [
"username"
],
"type": "object"
}