# Quora Question URL Answer Extractor

**Use case:** 

Extract answers, authors, upvotes, and question metadata from specific Quora question URLs.

## Input

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

## Output

```json
{
  "questionTitle": {
    "label": "Question",
    "format": "text"
  },
  "questionUrl": {
    "label": "Question URL",
    "format": "link"
  },
  "answerId": {
    "label": "Answer ID",
    "format": "text"
  },
  "text": {
    "label": "Answer Text",
    "format": "text"
  },
  "authorName": {
    "label": "Author",
    "format": "text"
  },
  "authorUrl": {
    "label": "Author URL",
    "format": "link"
  },
  "authorBio": {
    "label": "Author Bio",
    "format": "text"
  },
  "upvotes": {
    "label": "Upvotes",
    "format": "number"
  },
  "numComments": {
    "label": "Comments",
    "format": "number"
  },
  "isTopAnswer": {
    "label": "Top Answer",
    "format": "boolean"
  },
  "createdAt": {
    "label": "Created",
    "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.