# Google Trends Search Scraper with Structured Data

**Use case:** 

Use Google Trends Scraper — Interest, Regions & Queries for google trends with structured, source-linked results for AI-agent research, comparison,.

## Input

```json
{
  "keywords": [
    "google trends search"
  ],
  "geo": "US",
  "timeframe": "today 12-m",
  "property": "web",
  "category": 0,
  "dataTypes": [
    "interest_over_time",
    "related_queries"
  ],
  "trendingSearchesGeo": "US",
  "maxResults": 25,
  "outputFormat": "flat"
}
```

## Output

```json
{
  "type": {
    "label": "Record Type",
    "format": "string"
  },
  "keyword": {
    "label": "Keyword",
    "format": "string"
  },
  "date": {
    "label": "Date",
    "format": "string"
  },
  "value": {
    "label": "Interest Value",
    "format": "number"
  },
  "geo": {
    "label": "Geography",
    "format": "string"
  },
  "geo_name": {
    "label": "Region Name",
    "format": "string"
  },
  "related_query": {
    "label": "Related Query",
    "format": "string"
  },
  "topic_title": {
    "label": "Topic Title",
    "format": "string"
  },
  "title": {
    "label": "Trending Search Title",
    "format": "string"
  },
  "traffic": {
    "label": "Traffic (Formatted)",
    "format": "string"
  },
  "is_rising": {
    "label": "Is Rising",
    "format": "boolean"
  },
  "scraped_at": {
    "label": "Scraped At",
    "format": "string"
  },
  "source_url": {
    "label": "Source URL",
    "format": "string"
  }
}
```

## About this Actor

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