# Get today's Google Trends Trending Now

**Use case:** 

Pull real-time Trending Now searches for a country: title, rank, approximate traffic, publish time and the related news articles for each trend.

## Input

```json
{
  "mode": "trending",
  "searchTerms": [
    "bitcoin",
    "ethereum"
  ],
  "geo": "US",
  "timeRange": "today 12-m",
  "searchType": "web",
  "category": 0,
  "dataTypes": [
    "interestOverTime",
    "interestByRegion",
    "relatedQueries"
  ],
  "regionResolution": "",
  "language": "en-US",
  "maxItems": 100,
  "monitorMode": false,
  "monitorKey": "default",
  "maxConcurrency": 3,
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}
```

## Output

```json
{
  "title": {
    "label": "Trending search",
    "format": "text"
  },
  "geo": {
    "label": "Country",
    "format": "text"
  },
  "rank": {
    "label": "Rank",
    "format": "number"
  },
  "approxTraffic": {
    "label": "Traffic",
    "format": "text"
  },
  "approxTrafficNumber": {
    "label": "Traffic #",
    "format": "number"
  },
  "newsArticleCount": {
    "label": "# news",
    "format": "number"
  },
  "pubDate": {
    "label": "Started",
    "format": "text"
  },
  "trendsUrl": {
    "label": "Trends URL",
    "format": "link"
  }
}
```

## About this Actor

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