Google Trends News API
Our Google Trends News API lets you extract news articles associated with a specific trending search, as shown when you click on a trending topic on the Google Trends Trending Now page. The API is accessed through the following endpoint: /search?engine=google_trends_news
.
A user may query the following: https://serpapi.com/search?engine=google_trends_news
utilizing a GET
request. Head to the playground for a live and interactive demo.
API Parameters
Search Query
page_token
Required
Parameter defines the token to fetch the news of trending searches. Use news_page_token
from our Google Trends Trending Now API — see the example.
Serpapi Parameters
no_cache
Optional
Parameter will force SerpApi to fetch the Google Trends News results even if a cached version is already present. A cache is served only if the query and all parameters are exactly the same. Cache expires after 1h. Cached searches are free, and are not counted towards your searches per month. It can be set to false
(default) to allow results from the cache, or true
to disallow results from the cache. no_cache and async parameters should not be used together.
async
Optional
Parameter defines the way you want to submit your search to SerpApi. It can be set to false
(default) to open an HTTP connection and keep it open until you got your search results, or true
to just submit your search to SerpApi and retrieve them later. In this case, you'll need to use our Searches Archive API to retrieve your results. async and no_cache parameters should not be used together. async should not be used on accounts with Ludicrous Speed enabled.
zero_trace
Optional
Enterprise only. Parameter enables ZeroTrace mode. It can be set to false
(default) or true
. Enable this mode to skip storing search parameters, search files, and search metadata on our servers. This may make debugging more difficult.
API Results
JSON Results
JSON output includes structured data for directions results.
A search status is accessible through search_metadata.status
. It flows this way: Processing
-> Success
|| Error
. If a search has failed, error
will contain an error message. search_metadata.id
is the search ID inside SerpApi.
HTML Results
This API does not have html response, just a text. search_metadata.prettify_html_file
contains prettified version of result. It is displayed in playground.
API Examples
Typical example

{
"search_metadata": {
"id": "68404993fe1c6b284c59b99c",
"status": "Success",
"json_endpoint": "https://serpapi.com//searches/36160935bb2d4a79/68404993fe1c6b284c59b99c.json",
"created_at": "2025-06-04 13:26:43 UTC",
"processed_at": "2025-06-04 13:26:43 UTC",
"google_trends_news_url": "https://trends.google.com/_/TrendsUi/data/batchexecute?rpcids=w4opAf",
"raw_html_file": "https://serpapi.com//searches/36160935bb2d4a79/68404993fe1c6b284c59b99c.html",
"prettify_html_file": "https://serpapi.com//searches/36160935bb2d4a79/68404993fe1c6b284c59b99c.prettify",
"total_time_taken": 1.8
},
"search_parameters": {
"engine": "google_trends_news",
"page_token": "ytw5IHica1xTlFpYmlpcEp-SWJJ4h0Fk8rlHZjtaF6XmLQoNnnzuQe2mjzD23e_OK2DshzOTnsHY970UbsHVG9eVwNj30ha2wNh35n9ZBFef-eI-3Jyd9Yfg4pO42uDm-Pc5wsX7X1rB2Rv2T4WxH2XU_IOrX2d5E86uUvoOV__tgweMfTv07Qy43tS1yyFsAHIrjak"
},
"news": [
{
"title": "What made Mount Etna’s latest eruption so rare",
"link": "https://apnews.com/article/mount-etna-eruption-italy-sicily-1adafac765158138817a2c4319ce1468",
"source": "AP News",
"date": "5 hours ago",
"thumbnail": "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcSm3eBwmSRxBkh2PFag2W7NxZPyy7q7-PoxLndal2nLbyv91D_GVoXoR8E58dM"
},
{
"title": "Video Millions across the country on alert for dangerous weather",
"link": "https://abcnews.go.com/GMA/News/video/millions-country-alert-dangerous-weather-122481241",
"source": "ABC News",
"date": "2 hours ago",
"thumbnail": "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcTbQ1XRoFf5Q6JUP1KqzIhEi4p8ac0cnveVjDKlEOY9SaBx_eFcbArxjPc-I8Y"
},
{
"title": "Passenger sees Mount Etna erupting from plane window",
"link": "https://www.bbc.com/news/articles/c331lzxmx3no",
"source": "BBC",
"date": "1 day ago",
"thumbnail": "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcTCuvREgVL-vI7ACgt7F-_kzb3rvVzSQJU3ALQHtAMooNugenb9M6hAUJQYkts"
},
...
]
}
JSON structure overview
{
...
"news": [
{
"title": "String - The title of the news article.",
"link": "String - The URL of the news article.",
"source": "String - The source of the news article.",
"date": "String - The date and time when the news article was published.",
"thumbnail": "String - The URL of the thumbnail image for the news article."
},
...
],
...
}