# Quora Scraper for AI Questions

**Use case:** 

Scrape Quora questions and answers about artificial intelligence for market research and content ideation.

## Input

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

## Output

```json
{
  "type": {
    "label": "Type",
    "format": "text"
  },
  "title": {
    "label": "Question",
    "format": "text"
  },
  "url": {
    "label": "URL",
    "format": "link"
  },
  "authorName": {
    "label": "Author",
    "format": "text"
  },
  "upvotes": {
    "label": "Upvotes",
    "format": "number"
  },
  "answerCount": {
    "label": "Answers",
    "format": "number"
  },
  "text": {
    "label": "Answer Text",
    "format": "text"
  },
  "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.