getComment
Retrieve a specific Hacker News comment by entering its unique ID. Enables direct access to individual discussion points within the platform, facilitating focused analysis or reference.
Instructions
Get a single comment by ID
Input Schema
Name | Required | Description | Default |
---|---|---|---|
id | Yes | The ID of the comment |
Input Schema (JSON Schema)
{
"properties": {
"id": {
"description": "The ID of the comment",
"type": "number"
}
},
"required": [
"id"
],
"type": "object"
}