Google Trends API

v3.0.0
OpenAPI 3.1.0
GET

/api/v3/trends

Get daily trending search topics

Returns a list of daily trending search topics provided by Google Trends.

Request Parameters

geostring

Response Body

200List of trending topics
trends
:trend items|array of object*
Example Response
{
  "trends": [
    {
      "keyword": "artificial intelligence",
      "trafficStats": "10K searches",
      "source": "Google Trends",
      "publishedAt": "2024-01-15T10:30:00Z",
      "articles": [
        {
          "title": "Breaking News: Major Event",
          "url": "https://example.com/article",
          "image": "https://example.com/image.jpg",
          "source": "CNN"
        }
      ]
    }
  ]
}