# Scrape Hashnode AI Articles

**Use case:** 

Collect public Hashnode articles from the AI tag with titles, authors, URLs, excerpts, and publish dates.

## Input

```json
{
  "tags": [
    "ai"
  ],
  "startUrls": [
    {
      "url": "https://hashnode.com/n/ai"
    }
  ],
  "maxItems": 50,
  "includeArticleDetails": false
}
```

## Output

```json
{
  "tag": {
    "label": "Tag",
    "format": "text"
  },
  "title": {
    "label": "Title",
    "format": "text"
  },
  "articleUrl": {
    "label": "Article URL",
    "format": "link"
  },
  "authorName": {
    "label": "Author",
    "format": "text"
  },
  "authorHandle": {
    "label": "Handle",
    "format": "text"
  },
  "datePublished": {
    "label": "Published",
    "format": "date"
  },
  "estimatedReadTimeMinutes": {
    "label": "Read min",
    "format": "number"
  },
  "wordCount": {
    "label": "Words",
    "format": "number"
  },
  "excerpt": {
    "label": "Excerpt",
    "format": "text"
  },
  "imageUrl": {
    "label": "Cover image",
    "format": "link"
  },
  "feedUrl": {
    "label": "Feed URL",
    "format": "link"
  },
  "scrapedAt": {
    "label": "Scraped at",
    "format": "date"
  }
}
```

## About this Actor

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