# Google Reddit site search scraper

**Use case:** 

Extract Google results from site:reddit.com searches to find discussions, comments, snippets, and URLs for audience research.

## Input

```json
{
  "queries": [
    "site:reddit.com/r/SaaS customer onboarding",
    "site:reddit.com/r/marketinganalytics attribution tools"
  ],
  "maxResultsPerQuery": 30,
  "country": "us",
  "language": "en",
  "includePeopleAlsoAsk": false,
  "includeRelatedSearches": true
}
```

## Output

```json
{
  "query": {
    "label": "Query",
    "format": "string"
  },
  "position": {
    "label": "#",
    "format": "integer"
  },
  "title": {
    "label": "Title",
    "format": "string"
  },
  "url": {
    "label": "URL",
    "format": "string"
  },
  "displayUrl": {
    "label": "Display URL",
    "format": "string"
  },
  "snippet": {
    "label": "Snippet",
    "format": "string"
  },
  "resultType": {
    "label": "Type",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [Google Search Scraper — Organic SERP, PAA & Related](https://apify.com/automation-lab/google-search-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/automation-lab/google-search-scraper) to learn more, explore other use cases, and run it yourself.