# Google Trends Scraper — Real-Time Trending Topics with News

**Use case:** 

Turn any Google Trends URL into structured data: keyword, search volume, status, related queries, and news articles per trend. No proxy or setup required.

## Input

```json
{
  "urls": [
    "https://trends.google.com/trending?geo=GR&hours=24",
    "https://trends.google.com/trending?geo=RU&hours=24"
  ],
  "maxResults": 50
}
```

## Output

```json
{
  "keyword": {
    "label": "Keyword",
    "format": "string"
  },
  "geo": {
    "label": "Country",
    "format": "string"
  },
  "status": {
    "label": "Status",
    "format": "string"
  },
  "startedAt": {
    "label": "Started At (Unix)",
    "format": "integer"
  },
  "endedAt": {
    "label": "Ended At (Unix)",
    "format": "integer"
  },
  "searchVolume": {
    "label": "Search Volume",
    "format": "integer"
  },
  "relativeVolume": {
    "label": "Relative Volume",
    "format": "integer"
  },
  "relatedQueries": {
    "label": "Related Queries",
    "format": "array"
  },
  "categories": {
    "label": "Categories",
    "format": "array"
  },
  "newsArticles": {
    "label": "News Articles",
    "format": "array"
  }
}
```

## About this Actor

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