# Hacker News Best Stories Digest by Score

**Use case:** 

Generate a curated Hacker News digest of high-scoring best stories above a points threshold — ideal for newsletters and aggregators.

## Input

```json
{
  "mode": "beststories",
  "maxItems": 50,
  "includeComments": false,
  "maxCommentDepth": 3,
  "flattenComments": false,
  "minScore": 100,
  "minComments": 0,
  "domainFilter": [],
  "searchQuery": "",
  "searchTags": [],
  "sortSearchBy": "relevance",
  "username": "",
  "includeUserProfiles": false
}
```

## Output

```json
{
  "id": {
    "label": "ID",
    "format": "number"
  },
  "type": {
    "label": "Type",
    "format": "text"
  },
  "title": {
    "label": "Title",
    "format": "text"
  },
  "by": {
    "label": "Author",
    "format": "text"
  },
  "score": {
    "label": "Points",
    "format": "number"
  },
  "descendants": {
    "label": "Comments",
    "format": "number"
  },
  "createdAt": {
    "label": "Posted",
    "format": "date"
  },
  "url": {
    "label": "Link",
    "format": "link"
  },
  "domain": {
    "label": "Domain",
    "format": "text"
  },
  "hnUrl": {
    "label": "HN thread",
    "format": "link"
  }
}
```

## About this Actor

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