# PostgreSQL Questions Scraper from Stack Overflow

**Use case:** 

Collect data on PostgreSQL-related questions from Stack Overflow. Get insights based on votes and answers in CSV or JSON format.

## Input

```json
{
  "site": "stackoverflow",
  "tagged": "postgresql",
  "sort": "votes",
  "maxQuestions": 150
}
```

## Output

```json
{
  "title": {
    "label": "Title",
    "format": "string"
  },
  "tags": {
    "label": "Tags",
    "format": "array"
  },
  "score": {
    "label": "Score",
    "format": "integer"
  },
  "viewCount": {
    "label": "View Count",
    "format": "integer"
  },
  "answerCount": {
    "label": "Answer Count",
    "format": "integer"
  },
  "isAnswered": {
    "label": "Is Answered",
    "format": "boolean"
  },
  "author": {
    "label": "Author",
    "format": "string"
  },
  "createdAt": {
    "label": "Created At",
    "format": "string"
  }
}
```

## About this Actor

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