# AI Stories on Hacker News

**Use case:** 

Find Hacker News stories about artificial intelligence with titles, scores, comment counts, domains, dates, and discussion URLs.

## Input

```json
{
  "mode": "search",
  "feed": "top",
  "query": "artificial intelligence",
  "searchType": "story",
  "maxResults": 10,
  "minScore": 1,
  "minComments": 0,
  "includeKeywords": [],
  "excludeKeywords": [],
  "authors": [],
  "domain": "",
  "fromDate": "",
  "toDate": "",
  "includeComments": false,
  "maxCommentsPerItem": 20,
  "commentDepth": 3,
  "includeDeadOrDeleted": false
}
```

## Output

```json
{
  "id": {
    "label": "ID",
    "format": "number"
  },
  "type": {
    "label": "Type",
    "format": "text"
  },
  "title": {
    "label": "Title",
    "format": "text"
  },
  "url": {
    "label": "URL",
    "format": "link"
  },
  "domain": {
    "label": "Domain",
    "format": "text"
  },
  "author": {
    "label": "Author",
    "format": "text"
  },
  "score": {
    "label": "Score",
    "format": "number"
  },
  "commentCount": {
    "label": "Comments",
    "format": "number"
  },
  "createdAt": {
    "label": "Published",
    "format": "date"
  },
  "feed": {
    "label": "Feed",
    "format": "text"
  },
  "query": {
    "label": "Query",
    "format": "text"
  },
  "hnUrl": {
    "label": "HN discussion",
    "format": "link"
  }
}
```

## About this Actor

This example demonstrates how to use [Hacker News Intelligence Scraper](https://apify.com/fascinating_lentil/hacker-news-intelligence-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/fascinating_lentil/hacker-news-intelligence-scraper) to learn more, explore other use cases, and run it yourself.