search-by-url
Find HackerNews posts that link to a specific URL. Use this tool to discover discussions and comments related to any webpage or online resource.
Instructions
Search for HackerNews posts that link to a specific URL
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| hitsPerPage | No | Number of results per page (default: 20) | |
| page | No | Page number for pagination (default: 0) | |
| url | Yes | The URL to search for |
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"
},
"url": {
"description": "The URL to search for",
"type": "string"
}
},
"required": [
"url"
],
"type": "object"
}