logo

Trending Now

Get real-time trending searches from Google Trends

Returns currently trending search topics from Google Trends, the same data shown on trends.google.com/trending.

Endpoint: GET https://api.scrape.do/plugin/google/trending


Parameters

Required

ParameterTypeDescription
tokenstringYour Scrape.do API token
geostringCountry code (e.g., US, GB, DE, TR)

Optional

ParameterTypeDefaultDescription
hlstringenLanguage code (e.g., en, es, fr, de)
hoursinteger24Time window. Valid options: 4, 24, 48, 168 (7 days)
catinteger0Category ID to filter trends. See Category IDs below
sortstringrelevanceSort order. Options: relevance, search_volume, recency, title
statusstringallFilter by trend status. Options: all, active

Category IDs

catCategory
0All categories
1Autos and Vehicles
2Beauty and Fashion
3Business and Finance
4Entertainment
5Food and Drink
6Games
7Health
8Hobbies and Leisure
9Jobs and Education
10Law and Government
11Other
13Pets and Animals
14Politics
15Science
16Shopping
17Sports
18Technology
19Travel and Transportation
20Climate

There is no category 12. IDs match Google's internal values.


Example Requests

# All trending topics in the US, last 24 hours
curl "https://api.scrape.do/plugin/google/trending?token=YOUR_TOKEN&geo=US"

# Sports trends in the UK, last 48 hours
curl "https://api.scrape.do/plugin/google/trending?token=YOUR_TOKEN&geo=GB&cat=17&hours=48"

# Active entertainment trends sorted by search volume
curl "https://api.scrape.do/plugin/google/trending?token=YOUR_TOKEN&geo=US&cat=4&sort=search_volume&status=active"

# Trending in Germany, last 7 days, in German
curl "https://api.scrape.do/plugin/google/trending?token=YOUR_TOKEN&geo=DE&hl=de&hours=168"

# Technology trends, most recent first
curl "https://api.scrape.do/plugin/google/trending?token=YOUR_TOKEN&geo=US&cat=18&sort=recency"

Response

{
  "search_parameters": {
    "geo": "US",
    "hl": "en",
    "hours": 24,
    "cat": 0,
    "sort": "relevance",
    "status": "all"
  },
  "trends": [
    {
      "title": "lakers vs warriors",
      "search_volume": 200000,
      "growth_percentage": 1000,
      "started_at": 1775782200,
      "status": "active",
      "related_queries": [
        "lakers vs warriors",
        "lakers vs golden state warriors",
        "warriors vs lakers",
        "steph curry",
        "lebron james"
      ],
      "category_ids": [17],
      "trend_url": "https://trends.google.com/trends/explore?q=lakers+vs+warriors&geo=US"
    },
    {
      "title": "Solar Eclipse",
      "search_volume": 200000,
      "growth_percentage": 1200,
      "started_at": 1775720000,
      "ended_at": 1775811200,
      "status": "ended",
      "related_queries": [
        "solar eclipse 2026",
        "eclipse time"
      ],
      "category_ids": [15],
      "trend_url": "https://trends.google.com/trends/explore?q=Solar+Eclipse&geo=US"
    }
  ]
}

Response Fields

search_parameters

Echoes the request parameters used, including defaults applied.

FieldTypeDescription
titlestringThe trending search topic
search_volumeintegerApproximate search volume
growth_percentageintegerPercentage growth in search interest
started_atintegerUnix timestamp when the trend started
ended_atintegerUnix timestamp when the trend ended. Omitted if still active
statusstringactive or ended
related_queriesstring[]Related search queries. May be empty
category_idsinteger[]Category IDs this trend belongs to. May be empty
trend_urlstringLink to explore this trend on Google Trends

On this page