# Zhihu article scraper example

**Use case:** 

Extract a public Zhihu Zhuanlan article into clean text, Markdown, HTML, author, topic, image, date, and engagement fields.

## Input

```json
{
  "startUrls": [
    {
      "url": "https://zhuanlan.zhihu.com/p/2055333119083992479"
    }
  ],
  "maxItems": 1,
  "maxConcurrency": 1,
  "proxyConfiguration": {
    "useApifyProxy": false
  }
}
```

## Output

```json
{
  "articleId": {
    "label": "Article ID",
    "format": "string"
  },
  "title": {
    "label": "Title",
    "format": "string"
  },
  "url": {
    "label": "Article URL",
    "format": "string"
  },
  "authorName": {
    "label": "Author",
    "format": "string"
  },
  "excerpt": {
    "label": "Excerpt",
    "format": "string"
  },
  "topics": {
    "label": "Topics",
    "format": "array"
  },
  "createdAt": {
    "label": "Published",
    "format": "string"
  },
  "updatedAt": {
    "label": "Updated",
    "format": "string"
  },
  "voteupCount": {
    "label": "Votes",
    "format": "integer"
  },
  "commentCount": {
    "label": "Comments",
    "format": "integer"
  },
  "favoriteCount": {
    "label": "Favorites",
    "format": "integer"
  },
  "contentText": {
    "label": "Article text",
    "format": "string"
  },
  "sourceUrl": {
    "label": "Source URL",
    "format": "string"
  },
  "scrapedAt": {
    "label": "Scraped at",
    "format": "string"
  }
}
```

## About this Actor

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