# Google Trends Keyword Extractor

**Use case:** 

Extract Google Trends keyword interest, related queries, and regional data for SEO research and content planning.

## Input

```json
{
  "mode": "keyword",
  "geo": "US",
  "keywords": [
    "ai agents",
    "web scraping",
    "data extraction"
  ],
  "timeRange": "today 12-m",
  "category": 0,
  "property": "",
  "outputType": "flat"
}
```

## Output

```json
{
  "type": {
    "label": "Type",
    "format": "text"
  },
  "keyword": {
    "label": "Keyword",
    "format": "text"
  },
  "date": {
    "label": "Date",
    "format": "text"
  },
  "value": {
    "label": "Value",
    "format": "number"
  },
  "country": {
    "label": "Country",
    "format": "text"
  },
  "traffic": {
    "label": "Traffic",
    "format": "text"
  },
  "query": {
    "label": "Query",
    "format": "text"
  },
  "region": {
    "label": "Region",
    "format": "text"
  },
  "relatedType": {
    "label": "Related Type",
    "format": "text"
  },
  "newsTitle": {
    "label": "News Title",
    "format": "text"
  },
  "newsUrl": {
    "label": "News URL",
    "format": "link"
  }
}
```

## About this Actor

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