hackernews-stories monitoring type to track Hacker News stories that match your keywords. Stories are fetched via the Algolia HN Search API and sorted by date.
How it works
- Create a saved search with
monitoring_type: "hackernews-stories"and your keywords - Trigify checks Hacker News on your configured frequency (
DAILY,WEEKLY,MONTHLY, orQUARTERLY;HOURLYis available on Enterprise and Custom plans only) - New stories matching your keywords appear in your search results with author, URL, text, timestamps, and comment counts
- Optionally trigger workflows on new stories for alerts, enrichment, or integrations
Supported filters
| Field | Type | Description |
|---|---|---|
keywords | string[] | Keywords to search for (OR logic between keywords) |
keywords_and | string[] | All of these keywords must appear (AND logic) |
keywords_not | string[] | Exclude stories containing these keywords |
time_frame | string | How far back to search: past-24h, past-week, past-month, past-year, all-time |
max_results | number | Maximum stories to return per run (default: 50) |
frequency | string | How often to check: DAILY, WEEKLY, MONTHLY, QUARTERLY; HOURLY is Enterprise/Custom only |
Story types
Hacker News stories are automatically categorised:| Type | Description |
|---|---|
story | Standard link submissions |
show_hn | Show HN posts — projects and demos shared by the community |
ask_hn | Ask HN posts — questions to the community |
Create a Hacker News search
Response
GET /v1/searches/{id}/results returns Hacker News stories in Trigify’s standard search result shape:
| Field | Description |
|---|---|
id | Result identifier |
source | Always hackernews for Hacker News results |
author.name | HN username of the submitter |
author.username | HN username/handle |
author.profile_url | Link to the submitter’s HN profile |
content.text | Story text content for Ask HN / Show HN / text posts |
content.url | External story URL, or the HN discussion URL for text posts |
engagement.comments | Number of comments |
published_at | When the story was posted |
collected_at | When the API returned the result |
Example: Monitor competitor mentions
JavaScript example
Python example
Notes
- HackerNews monitoring uses the Algolia HN Search API (
search_by_dateendpoint) - Keywords use OR logic by default. Use
keywords_andfor AND logic - Use
keywords_notto exclude irrelevant results (e.g. job posts) - Stories without an external URL (Ask HN, text posts) link to the HN discussion page
engagement.commentsmaps to the Hacker News comment count- Hacker News points are not currently exposed in the REST search results response
HOURLYfrequency requires an Enterprise or Custom planjob_titlesfilter is not applicable for HackerNews searches