# Quora Topic Research Workflow

**Use case:** 

Build repeatable topic research datasets from Quora questions and answers for SEO briefs, FAQs, and audience insights.

## Input

```json
{
  "startUrls": [
    {
      "url": "https://www.quora.com/What-is-machine-learning"
    }
  ],
  "searchQuery": "startup marketing",
  "maxQuestions": 50,
  "scrapeAnswers": true,
  "maxAnswersPerQuestion": 3,
  "cookies": "",
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  }
}
```

## Output

```json
{
  "questionId": {
    "label": "Question ID",
    "format": "text"
  },
  "title": {
    "label": "Title",
    "format": "text"
  },
  "url": {
    "label": "URL",
    "format": "link"
  },
  "topics": {
    "label": "Topics",
    "format": "text"
  },
  "followerCount": {
    "label": "Followers",
    "format": "number"
  },
  "answerCount": {
    "label": "Answers",
    "format": "number"
  },
  "viewCount": {
    "label": "Views",
    "format": "number"
  },
  "scrapedAt": {
    "label": "Scraped At",
    "format": "text"
  }
}
```

## About this Actor

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