get-item
Retrieve specific HackerNews items including stories, comments, and polls using their unique ID number to access detailed content information.
Instructions
Get a specific HackerNews item (story, comment, poll, etc.) by its ID
Input Schema
Name | Required | Description | Default |
---|---|---|---|
id | Yes | The ID of the item to retrieve |
Input Schema (JSON Schema)
{
"properties": {
"id": {
"description": "The ID of the item to retrieve",
"type": "number"
}
},
"required": [
"id"
],
"type": "object"
}