# Hacker News RSS Feed — Front Page

**Use case:** 

Fetch and parse the Hacker News RSS feed. Story titles, links, and publication dates in clean JSON format.

## Input

```json
{
  "feed_url": "https://news.ycombinator.com/rss",
  "max_results": 30
}
```

## Output

```json
{
  "title": {
    "label": "Title",
    "format": "text"
  },
  "link": {
    "label": "Link",
    "format": "link"
  },
  "description": {
    "label": "Description",
    "format": "text"
  },
  "author": {
    "label": "Author",
    "format": "text"
  },
  "pub_date": {
    "label": "Published",
    "format": "date"
  },
  "guid": {
    "label": "GUID",
    "format": "text"
  },
  "categories": {
    "label": "Categories",
    "format": "array"
  }
}
```

## About this Actor

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