# Monitor Zhihu Question Answers on a Schedule

**Use case:** 

Run a repeatable multi-question workflow that captures visible Zhihu answers and engagement metrics for comparison in a spreadsheet or data pipeline.

## Input

```json
{
  "startUrls": [
    {
      "url": "https://www.zhihu.com/question/2067235011804320517"
    },
    {
      "url": "https://www.zhihu.com/question/2063895390546563948"
    }
  ],
  "includeHotList": true,
  "maxQuestions": 2,
  "maxAnswersPerQuestion": 2,
  "maxItems": 4,
  "proxyConfiguration": {
    "useApifyProxy": false
  }
}
```

## Output

```json
{
  "questionTitle": {
    "label": "Question",
    "format": "string"
  },
  "answerContentText": {
    "label": "Answer",
    "format": "string"
  },
  "authorName": {
    "label": "Author",
    "format": "string"
  },
  "answerVoteupCount": {
    "label": "Upvotes",
    "format": "number"
  },
  "answerCommentCount": {
    "label": "Comments",
    "format": "number"
  },
  "questionAnswerCount": {
    "label": "Question answers",
    "format": "number"
  },
  "answerCreatedAt": {
    "label": "Answer created",
    "format": "string"
  },
  "questionUrl": {
    "label": "Question URL",
    "format": "string"
  },
  "answerUrl": {
    "label": "Answer URL",
    "format": "string"
  },
  "scrapedAt": {
    "label": "Scraped at",
    "format": "string"
  }
}
```

## About this Actor

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