hn_comments
Retrieve comments for a Hacker News story by specifying its ID or index from the latest fetched story list for quick access to discussions.
Instructions
Get comments for a story (by story ID or index from last story list)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
story_id | No | The ID of the story to get comments for | |
story_index | No | The index (1-based) of the story from the last fetched list |
Input Schema (JSON Schema)
{
"properties": {
"story_id": {
"description": "The ID of the story to get comments for",
"type": "number"
},
"story_index": {
"description": "The index (1-based) of the story from the last fetched list",
"minimum": 1,
"type": "number"
}
},
"type": "object"
}