search
Find Hacker News stories and comments by entering a query, filtering by content type, and adjusting pagination settings for precise results.
Instructions
Search for stories and comments on Hacker News
Input Schema
Name | Required | Description | Default |
---|---|---|---|
hitsPerPage | No | The number of results per page | |
page | No | The page number | |
query | Yes | The search query | |
type | No | The type of content to search for | all |
Input Schema (JSON Schema)
{
"properties": {
"hitsPerPage": {
"default": 20,
"description": "The number of results per page",
"type": "number"
},
"page": {
"default": 0,
"description": "The page number",
"type": "number"
},
"query": {
"description": "The search query",
"type": "string"
},
"type": {
"default": "all",
"description": "The type of content to search for",
"enum": [
"all",
"story",
"comment"
],
"type": "string"
}
},
"required": [
"query"
],
"type": "object"
}