getStoryWithComments
Retrieve a Hacker News story along with its associated comments by providing the story ID, enabling enhanced content review and discussion analysis.
Instructions
Get a story with its comments
Input Schema
Name | Required | Description | Default |
---|---|---|---|
id | Yes | The ID of the story |
Input Schema (JSON Schema)
{
"properties": {
"id": {
"description": "The ID of the story",
"type": "number"
}
},
"required": [
"id"
],
"type": "object"
}