get-show-hn
Retrieve user-submitted project showcases from HackerNews to discover new tools, applications, and innovations shared by the developer community.
Instructions
Get latest "Show HN" posts where users showcase their projects
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| hitsPerPage | No | Number of results per page (default: 20) | |
| page | No | Page number for pagination (default: 0) |
Input Schema (JSON Schema)
{
"properties": {
"hitsPerPage": {
"description": "Number of results per page (default: 20)",
"type": "number"
},
"page": {
"description": "Page number for pagination (default: 0)",
"type": "number"
}
},
"type": "object"
}