# New Stories Hacker News

**Use case:** 

Extract Hacker News data filtered by New Stories. Export structured results ready for analysis, lead generation, or research.

## Input

```json
{
  "storyType": "new",
  "maxItems": 10
}
```

## Output

```json
{
  "title": {
    "label": "📌 Title",
    "format": "text"
  },
  "url": {
    "label": "🔗 URL",
    "format": "link"
  },
  "id": {
    "label": "🆔 ID",
    "format": "text"
  },
  "score": {
    "label": "⬆️ Score",
    "format": "text"
  },
  "author": {
    "label": "👤 Author",
    "format": "text"
  },
  "commentCount": {
    "label": "💬 Comments",
    "format": "text"
  },
  "rank": {
    "label": "🏆 Rank",
    "format": "text"
  },
  "type": {
    "label": "🏷 Type",
    "format": "text"
  },
  "domain": {
    "label": "🌐 Domain",
    "format": "text"
  },
  "postedAt": {
    "label": "📅 Posted",
    "format": "date"
  },
  "scrapedAt": {
    "label": "🕒 Scraped",
    "format": "date"
  },
  "error": {
    "label": "❌ Error",
    "format": "text"
  }
}
```

## About this Actor

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