# Quora URL Scraping

**Use case:** 

Turn a public Quora URL into structured data. Use a question, profile, topic, space, post, or Quora search URL.

## Input

```json
{
  "targets": [
    "https://www.quora.com/How-do-I-learn-Python"
  ],
  "searchType": "question",
  "dateRange": "any",
  "maxDiscoveryResultsPerQuery": 2,
  "maxResults": 2
}
```

## Output

```json
{
  "contentType": {
    "label": "Type",
    "format": "text"
  },
  "title": {
    "label": "Title",
    "format": "text"
  },
  "url": {
    "label": "Quora URL",
    "format": "link"
  },
  "matchedInput": {
    "label": "Matched input",
    "format": "text"
  },
  "discoveryRank": {
    "label": "Discovery rank",
    "format": "number"
  },
  "description": {
    "label": "Description",
    "format": "text"
  },
  "text": {
    "label": "Post text",
    "format": "text"
  },
  "answers": {
    "label": "Answers",
    "format": "array"
  },
  "followerCount": {
    "label": "Followers",
    "format": "number"
  },
  "memberCount": {
    "label": "Members",
    "format": "number"
  },
  "postCount": {
    "label": "Posts",
    "format": "number"
  },
  "createdAt": {
    "label": "Created at",
    "format": "date"
  }
}
```

## About this Actor

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