# 💻 Stack Exchange Scraper — Questions, Scores & Tags

**Use case:** 

No-code, cheap Stack Overflow API. Scrape question data: title, tags, score, views, answers, accepted answer, author, reputation, body — cheapest per item.

## Input

```json
{
  "site": "stackoverflow",
  "tags": [
    "python"
  ],
  "sortBy": "votes",
  "minScore": 0,
  "maxItems": 100,
  "proxyConfiguration": {
    "useApifyProxy": false
  }
}
```

## Output

```json
{
  "questionId": {
    "label": "Question Id",
    "format": "number"
  },
  "title": {
    "label": "Title",
    "format": "text"
  },
  "tags": {
    "label": "Tags",
    "format": "text"
  },
  "score": {
    "label": "Score",
    "format": "number"
  },
  "viewCount": {
    "label": "View Count",
    "format": "number"
  },
  "answerCount": {
    "label": "Answer Count",
    "format": "number"
  },
  "isAnswered": {
    "label": "Is Answered",
    "format": "boolean"
  },
  "acceptedAnswerId": {
    "label": "Accepted Answer Id",
    "format": "number"
  },
  "ownerName": {
    "label": "Owner Name",
    "format": "text"
  },
  "ownerReputation": {
    "label": "Owner Reputation",
    "format": "number"
  },
  "ownerLink": {
    "label": "Owner Link",
    "format": "link"
  },
  "creationDate": {
    "label": "Creation Date",
    "format": "date"
  },
  "lastActivityDate": {
    "label": "Last Activity Date",
    "format": "date"
  },
  "link": {
    "label": "Link",
    "format": "link"
  },
  "body": {
    "label": "Body",
    "format": "text"
  }
}
```

## About this Actor

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