# Build a SERP Monitoring Pipeline (Google Search)

**Use case:** 

Capture daily Google SERPs - title, URL, snippet, position, and featured snippets - for rank-tracking pipelines. Pipe into Postgres, diff rankings, and fire Sla

## Input

```json
{
  "queries": [
    "best crm software"
  ],
  "maxResults": 10,
  "maxResultsPerQuery": 10,
  "countryCode": "us",
  "languageCode": "en",
  "searchType": "web",
  "timeFilter": "any"
}
```

## Output

```json
{
  "title": {
    "label": "Title",
    "format": "text"
  },
  "url": {
    "label": "URL",
    "format": "link"
  },
  "description": {
    "label": "Description",
    "format": "text"
  },
  "position": {
    "label": "Position",
    "format": "text"
  },
  "type": {
    "label": "Result Type",
    "format": "text"
  },
  "featured_snippet": {
    "label": "Featured Snippet",
    "format": "text"
  },
  "query": {
    "label": "Query",
    "format": "text"
  }
}
```

## About this Actor

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