> ## Documentation Index
> Fetch the complete documentation index at: https://mindcase.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Google Trending Daily

> Pull today's trending searches from Google Trends — keywords with traffic estimates, related news, and pictures, for 40+ countries

`$0.8 / 1k trends`

Pull today's trending searches from Google Trends — keywords with traffic estimates, related news, and pictures, for 40+ countries

## Endpoint

`POST /api/v1/agents/google/trends-daily/run`

## Parameters

<ParamField body="geo" type="string" default="US">
  **Dropdown** · Country to pull trends from.

  [View all 42 options →](/agents/google/trends-daily/values#geo)
</ParamField>

<ParamField body="daysBack" type="integer" default={1}>
  **Number** · How many past days of trends to fetch. Google's Trending Now feed surfaces \~10 fresh trends per day per country, so daysBack=7 gives you \~70 historical trends, daysBack=30 gives \~300.
</ParamField>

<ParamField body="maxResults" type="integer" default={50}>
  **Number** · Total trending searches to return (capped by daysBack × \~10/day per country). Use 0 for all available.
</ParamField>

<ParamField body="date" type="date">
  **Date picker** · Optional — anchor date for the trends window. Leave blank to use today.
</ParamField>

## Response columns

| Field                | Display name         | Type   |
| -------------------- | -------------------- | ------ |
| `displayQuery`       | Display Query        | text   |
| `date`               | Date                 | text   |
| `country`            | Country              | text   |
| `approxTraffic`      | Approx Traffic       | text   |
| `trafficValue`       | Traffic Value        | number |
| `score`              | Score                | number |
| `topNewsTitle`       | Top News Title       | text   |
| `topNewsUrl`         | Top News URL         | url    |
| `topNewsSource`      | Top News Source      | text   |
| `picture`            | Picture              | url    |
| `newsArticleTitle`   | News Article Title   | text   |
| `newsArticleUrl`     | News Article URL     | url    |
| `newsArticleSource`  | News Article Source  | text   |
| `newsArticlePicture` | News Article Picture | url    |
| `timestamp`          | Timestamp            | text   |

## Example

<CodeGroup>
  ```bash curl theme={null}
  curl -X POST https://api.mindcase.co/api/v1/agents/google/trends-daily/run \
    -H "Authorization: Bearer mk_live_abc123def456" \
    -H "Content-Type: application/json" \
    -d '{
    "params": {
      "geo": "US",
      "language": "en-US",
      "daysBack": 1,
      "maxResults": 10
    }
  }'
  ```

  ```python Python theme={null}
  import requests

  resp = requests.post(
      "https://api.mindcase.co/api/v1/agents/google/trends-daily/run",
      headers={"Authorization": "Bearer mk_live_abc123def456"},
      json={"params": {
      "geo": "US",
      "language": "en-US",
      "daysBack": 1,
      "maxResults": 10
  }},
  )
  data = resp.json()
  ```
</CodeGroup>

### Example response

```json Response theme={null}
{
  "job_id": "job_7f3a2b1c",
  "status": "completed",
  "data": [
    {
      "displayQuery": "smci stock",
      "date": "2026-05-04T14:20:00.000Z",
      "country": "US",
      "approxTraffic": "500+",
      "trafficValue": 500,
      "score": 25,
      "topNewsTitle": "Super Micro (SMCI) Q1 Earnings Report Preview: What To Look For",
      "topNewsUrl": "https://finance.yahoo.com/markets/stocks/articles/super-micro-smci-q1-earnings-062855794.html",
      "topNewsSource": "Yahoo Finance",
      "picture": "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcSV5l3kK2arZPnF3eB4qcieUvNsf0Ja8ycDY22yz1tN0Ago1fpzPOsUfaTvlbk",
      "newsArticleTitle": null,
      "newsArticleUrl": null,
      "newsArticleSource": null,
      "newsArticlePicture": null,
      "timestamp": "2026-05-04T14:20:00.000Z"
    }
  ]
}
```
