# Ask Ubuntu Q&A Scraper

**Use case:** 

Grab hot questions and answers from Ask Ubuntu. Extract Linux and Ubuntu Q&A data for support tools, datasets and knowledge bases.

## Input

```json
{
  "maxItems": 3,
  "site": "askubuntu",
  "sort": "hot",
  "includeAnswers": true
}
```

## Output

```json
{
  "questionId": {
    "label": "Question Id",
    "format": "number"
  },
  "title": {
    "label": "Title",
    "format": "text"
  },
  "link": {
    "label": "Link",
    "format": "link"
  },
  "score": {
    "label": "Score",
    "format": "number"
  },
  "viewCount": {
    "label": "View Count",
    "format": "number"
  },
  "answerCount": {
    "label": "Answer Count",
    "format": "number"
  },
  "isAnswered": {
    "label": "Is Answered",
    "format": "text"
  },
  "creationDate": {
    "label": "Creation Date",
    "format": "text"
  },
  "lastActivityDate": {
    "label": "Last Activity Date",
    "format": "text"
  },
  "bodyMarkdown": {
    "label": "Body Markdown",
    "format": "text"
  },
  "body": {
    "label": "Body",
    "format": "text"
  },
  "acceptedAnswerId": {
    "label": "Accepted Answer Id",
    "format": "text"
  },
  "scrapedAt": {
    "label": "Scraped At",
    "format": "text"
  }
}
```

## About this Actor

This example demonstrates how to use [Stack Exchange Q&A Scraper](https://apify.com/parseforge/stack-exchange-qa-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/parseforge/stack-exchange-qa-scraper) to learn more, explore other use cases, and run it yourself.