# Gather Open Source Releases from Hacker News

**Use case:** 

Collect stories about open source project releases shared on Hacker News. Retrieve data including titles, authors, URLs, and points.

## Input

```json
{
  "query": "open source release github",
  "itemType": "story",
  "sortBy": "date",
  "minPoints": 100,
  "maxItems": 200
}
```

## Output

```json
{
  "title": {
    "label": "Title",
    "format": "text"
  },
  "author": {
    "label": "Author",
    "format": "text"
  },
  "points": {
    "label": "Points",
    "format": "number"
  },
  "numComments": {
    "label": "Comments",
    "format": "number"
  },
  "createdAt": {
    "label": "Created",
    "format": "date"
  },
  "url": {
    "label": "Link",
    "format": "link"
  },
  "hnUrl": {
    "label": "HN Item",
    "format": "link"
  }
}
```

## About this Actor

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