# Hacker News Top Stories — Daily Feed

**Use case:** 

Get the top stories from Hacker News front page. Titles, points, authors, comment counts, and direct links.

## Input

```json
{
  "section": "top",
  "max_results": 30
}
```

## Output

```json
{
  "title": {
    "label": "Title",
    "format": "string"
  },
  "url": {
    "label": "URL",
    "format": "string"
  },
  "points": {
    "label": "Points",
    "format": "integer"
  },
  "author": {
    "label": "Author",
    "format": "string"
  },
  "comments": {
    "label": "Comments",
    "format": "integer"
  },
  "hn_url": {
    "label": "HN Link",
    "format": "string"
  },
  "created_at": {
    "label": "Created At",
    "format": "string"
  }
}
```

## About this Actor

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