# Server Fault Stack Exchange Questions Search

**Use case:** 

Extract Stack Exchange Questions Search data filtered by Server Fault. Export structured results ready for analysis, lead generation, or research.

## Input

```json
{
  "maxItems": 10,
  "query": "python async",
  "site": "serverfault",
  "tags": "",
  "sort": "activity",
  "minScore": 0
}
```

## Output

```json
{
  "ownerProfileImage": {
    "label": "User",
    "format": "image"
  },
  "title": {
    "label": "Title",
    "format": "text"
  },
  "score": {
    "label": "Score",
    "format": "number"
  },
  "viewCount": {
    "label": "Views",
    "format": "number"
  },
  "answerCount": {
    "label": "Answers",
    "format": "number"
  },
  "tagsText": {
    "label": "Tags",
    "format": "text"
  },
  "ownerName": {
    "label": "Asked By",
    "format": "text"
  },
  "creationDate": {
    "label": "Asked",
    "format": "text"
  },
  "isAnswered": {
    "label": "Answered",
    "format": "boolean"
  },
  "url": {
    "label": "URL",
    "format": "link"
  }
}
```

## About this Actor

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