Google Trends API

v3.0.0
OpenAPI 3.1.0
GET

/api/v3/trends/top

Get top trending topics with news and time series

Returns the top trending topics from Google Trends main page, including news and time series data.

Request Parameters

geostring

Response Body

200List of top trending topics
topTrends
:|array of object*
Example Response
{
  "topTrends": [
    {
      "keyword": "machine learning",
      "articles": [
        {
          "title": "Latest Technology News",
          "url": "https://example.com/tech-news",
          "publisher": "TechCrunch",
          "timestamp": "2024-01-15T10:30:00Z",
          "thumbnailUrl": "https://example.com/thumbnail.jpg"
        }
      ],
      "scores": [
        85,
        90,
        95,
        100,
        95,
        90,
        85
      ]
    }
  ]
}