# Answers scoring 2,000 and above

**Use case:** 

Only the very highest-scoring answers on the site — the canonical explanations people link to for years.

## Input

```json
{
  "dataset": "answers",
  "site": "serverfault",
  "maxItems": 300,
  "sortBy": "votes",
  "order": "desc",
  "query": "async await deadlock",
  "titleContains": "memory leak",
  "tagged": [
    "python",
    "pandas"
  ],
  "notTagged": [
    "homework"
  ],
  "minScore": 2000,
  "minAnswers": 3,
  "acceptedOnly": true,
  "unansweredOnly": true,
  "closedOnly": true,
  "user": 22656,
  "tagNameContains": "script",
  "userNameContains": "jon",
  "minReputation": 100000,
  "lastNDays": 30,
  "dateFrom": "2026-01-01",
  "dateTo": "2026-12-31",
  "includeBody": true,
  "includeAnswers": true,
  "apiKey": "***"
}
```

## Output

```json
{
  "itemId": {
    "label": "Item ID",
    "format": "string"
  },
  "questionId": {
    "label": "Question ID",
    "format": "integer"
  },
  "score": {
    "label": "Score",
    "format": "integer"
  },
  "isAccepted": {
    "label": "Is accepted",
    "format": "boolean"
  },
  "createdAt": {
    "label": "Created",
    "format": "string"
  },
  "ownerDisplayName": {
    "label": "Author",
    "format": "string"
  },
  "ownerReputation": {
    "label": "Author reputation",
    "format": "integer"
  },
  "link": {
    "label": "URL",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [StackOverflow Scraper · Questions, Answers, Tags & Users](https://apify.com/reapx/stackoverflow-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/reapx/stackoverflow-scraper) to learn more, explore other use cases, and run it yourself.