# Scrape Google Trends data for any keyword

**Use case:** 

Interest over time, interest by region, related queries & topics, and daily trending searches for any keyword — clean JSON, and it survives Google's 429s.

## Input

```json
{
  "searchTerms": [
    "bitcoin"
  ],
  "timeRange": "today 12-m",
  "geo": "US",
  "category": 0,
  "property": "",
  "includeInterestOverTime": true,
  "includeInterestByRegion": true,
  "includeRelatedQueries": true,
  "includeRelatedTopics": true,
  "regionResolution": "AUTO",
  "trendingNow": false,
  "trendingGeos": [
    "US"
  ],
  "concurrency": 5,
  "language": "en-US",
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  }
}
```

## Output

```json
{
  "term": {
    "label": "Search term"
  },
  "query": {
    "label": "Trending query"
  },
  "geo": {
    "label": "Location"
  },
  "timeRange": {
    "label": "Time range"
  },
  "averageInterest": {
    "label": "Avg interest"
  },
  "approxTraffic": {
    "label": "Traffic"
  },
  "scrapedAt": {
    "label": "Scraped at"
  }
}
```

## About this Actor

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