# Show HN AI Launches of the Last 30 Days — Hacker News

**Use case:** 

Top Show HN posts about AI from the last 30 days, ranked by points: title, URL, domain, author, points, comment count and link to the HN discussion. For founders, investors and product teams studying which launches got traction. Change the query to your niche (e.g. "database") or sinceDays to widen the window, and schedule it monthly.

## Input

```json
{
  "query": "AI",
  "queries": [],
  "kind": "show_hn",
  "sort": "points",
  "searchIn": "title",
  "typoTolerance": false,
  "minPoints": 0,
  "minComments": 0,
  "sinceDays": 30,
  "maxItems": 30,
  "includeComments": false,
  "maxCommentsPerStory": 20,
  "commentsDepth": 2,
  "includeAuthorProfile": false,
  "textMaxLength": 2000,
  "dedupeByUrl": false,
  "fields": []
}
```

## Output

```json
{
  "title": {
    "label": "Title",
    "format": "string"
  },
  "points": {
    "label": "Points",
    "format": "integer"
  },
  "numComments": {
    "label": "Comments",
    "format": "integer"
  },
  "author": {
    "label": "Author",
    "format": "string"
  },
  "createdAt": {
    "label": "Date",
    "format": "string"
  },
  "domain": {
    "label": "Domain",
    "format": "string"
  },
  "url": {
    "label": "URL",
    "format": "string"
  },
  "hnUrl": {
    "label": "HN",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [Hacker News Search — Stories, Comments & Live Front Page](https://apify.com/yadroo/hackernews-search.md) with a specific input configuration. Visit the [Actor detail page](https://apify.com/yadroo/hackernews-search.md) to learn more, explore other use cases, and run it yourself.


## How to integrate an Actor?

This Task's input is already configured above. Use it as-is rather than inventing a new one.

Do not guess an integration path. Every one of them is in the agent quickstart at https://apify.com/agents.md: the Apify MCP server, Agent Skills with the Apify CLI, the JavaScript and Python clients, the REST API, and the account-free path for an agent with no human to sign in. It also carries the rule on stating cost before the first paid run.

For full API examples (JavaScript, Python, CLI, MCP, OpenAPI), see this Task's Actor page: https://apify.com/yadroo/hackernews-search.md

Each client library has reference documentation the quickstart does not restate: [JavaScript/TypeScript](https://docs.apify.com/api/client/js/docs.md) (`npm install apify-client`) and [Python](https://docs.apify.com/api/client/python/docs.md) (`pip install apify-client`).
