search-by-time-range
Find HackerNews posts from specific time periods using Unix timestamps to filter results by date range.
Instructions
Search for posts within a specific time range (Unix timestamps)
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| endTime | Yes | End time in Unix timestamp (seconds) | |
| hitsPerPage | No | Number of results per page (default: 20) | |
| page | No | Page number for pagination (default: 0) | |
| query | No | Search query text (optional) | |
| startTime | Yes | Start time in Unix timestamp (seconds) | |
| tags | No | Filter tags (e.g., "story", "comment") |
Input Schema (JSON Schema)
{
"properties": {
"endTime": {
"description": "End time in Unix timestamp (seconds)",
"type": "number"
},
"hitsPerPage": {
"description": "Number of results per page (default: 20)",
"type": "number"
},
"page": {
"description": "Page number for pagination (default: 0)",
"type": "number"
},
"query": {
"description": "Search query text (optional)",
"type": "string"
},
"startTime": {
"description": "Start time in Unix timestamp (seconds)",
"type": "number"
},
"tags": {
"description": "Filter tags (e.g., \"story\", \"comment\")",
"type": "string"
}
},
"required": [
"startTime",
"endTime"
],
"type": "object"
}