# Scrape Server Fault DevOps Questions

**Use case:** 

Scrape public Server Fault Docker and Kubernetes questions with tags, scores, links, answer counts, and timestamps for DevOps research.

## Input

```json
{
  "sites": [
    "serverfault"
  ],
  "tags": [
    "docker"
  ],
  "query": "kubernetes",
  "sort": "relevance",
  "maxItems": 8,
  "minScore": 0,
  "includeAnswers": false
}
```

## Output

```json
{
  "site": {
    "label": "Site",
    "format": "text"
  },
  "questionId": {
    "label": "Question ID",
    "format": "number"
  },
  "title": {
    "label": "Title",
    "format": "text"
  },
  "url": {
    "label": "Question URL",
    "format": "link"
  },
  "tags": {
    "label": "Tags",
    "format": "array"
  },
  "ownerDisplayName": {
    "label": "Owner",
    "format": "text"
  },
  "score": {
    "label": "Score",
    "format": "number"
  },
  "answerCount": {
    "label": "Answers",
    "format": "number"
  },
  "viewCount": {
    "label": "Views",
    "format": "number"
  },
  "isAnswered": {
    "label": "Answered",
    "format": "boolean"
  },
  "acceptedAnswerId": {
    "label": "Accepted answer",
    "format": "number"
  },
  "creationDate": {
    "label": "Created",
    "format": "date"
  },
  "lastActivityDate": {
    "label": "Last activity",
    "format": "date"
  },
  "lastEditDate": {
    "label": "Last edit",
    "format": "date"
  },
  "contentLicense": {
    "label": "License",
    "format": "text"
  },
  "answers": {
    "label": "Answers",
    "format": "object"
  }
}
```

## About this Actor

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