Google Trends Trending Now Realtime API

The Google Trends Trending Now Realtime API scrapes the realtime search trends section of Google Trends Trending Now page. It scrapes id, title, link, queries, explore links, chart links and articles. In addition, serpapi_pagination has all the pages that enable retrieving all the realtime search trends, read more about next_page_token.

API Parameters

cat

Optional

Parameter defines the category of the results you want to retrieve.

Available options:
all - All categories (default).
b - Business.
e - Entertainment.
m - Health.
t - Sci/Tech.
s - Sports.
h - Top stories.

next_page_token

Optional

Parameter defines the next page token, which is used for retrieving the next page of results.

Notes:
When querying the API, the first response will provide access to all available pages. However, it's important to note that Google realtime search trends do not follow conventional pagination practices. Not to worry, though, as we have abstracted this complexity for you. Here's the caveat: only the first page will contain pagination information. Subsequent requests for the next page will not display pagination details.

To ensure you retrieve all pages of data, your code should be designed to handle the following process: start by fetching the first response, and then use the provided pagination token to navigate through the subsequent pages.

JSON structure overview

{
  ...
  "realtime_searches": [
    {
      "id": "String - ID of the search",
      "title": "String - Highlighted title from the articles",
      "link": "String - Link of the search in Google Trends Trending Now page",
      "queries": "Array - List of queries of the search",
      "explore_links": "Array - Link of Google Trends Explore page of the queries, which consists of link and serpapi_link",
      "sparkline_chart_link": "String - Link of the sparkline chart data in JSON",
      "articles": [
        {
          "title": "String - Title of the article",
          "link": "String - Direct link of the article",
          "snippet": "String - Snippet of the article",
          "source": "String - Source of the article",
          "date": "String - Date of the article published date",
          "thumbnail": "String - Thumbnail of the article"
        }
      ]
    }
  ]
  "serpapi_pagination": {
    "next_page_token": "String - Token that enable retrieval of next page",
    "next": "String - Link to the next page of Google Trends Trending Now results in JSON by SerpApi"
  }
}

API Examples

Example with geo: US and cat: all

Example with geo: US and cat: all

JSON Example

{
  ...
  "realtime_searches": [
    {
      "id": "US_lnk_6HxciQAAAAC0dM_en",
      "title": "NBC Sunday Night Football, Carrie Underwood, Waiting All Day for Sunday Night, NBC, NFL",
      "link": "https://trends.google.com/trends/trendingsearches/realtime?id=US_lnk_6HxciQAAAAC0dM_en&category=all&geo=US#US_lnk_6HxciQAAAAC0dM_en",
      "queries": [
        "NBC Sunday Night Football",
        "Carrie Underwood",
        "Waiting All Day for Sunday Night",
        "NBC",
        "NFL"
      ],
      "explore_links": [
        {
          "link": "https://trends.google.com/trends/explore?q=/g/11b6d3f__n&date=now+7-d&geo=US",
          "serpapi_link": "https://serpapi.com/search.json?data_type=TIMESERIES&date=now+7-d&engine=google_trends&geo=US&q=%2Fg%2F11b6d3f__n&tz=420"
        },
        {
          "link": "https://trends.google.com/trends/explore?q=/m/058s57&date=now+7-d&geo=US",
          "serpapi_link": "https://serpapi.com/search.json?data_type=TIMESERIES&date=now+7-d&engine=google_trends&geo=US&q=%2Fm%2F058s57&tz=420"
        },
        {
          "link": "https://trends.google.com/trends/explore?q=/m/059yj&date=now+7-d&geo=US",
          "serpapi_link": "https://serpapi.com/search.json?data_type=TIMESERIES&date=now+7-d&engine=google_trends&geo=US&q=%2Fm%2F059yj&tz=420"
        },
        ...
      ],
      "sparkline_chart_link": "https://trends.google.com/trends/api/widgetdata/sparkline?hl=en&tz=-480&id=US_lnk_6HxciQAAAAC0dM_en",
      "articles": [
        {
          "title": "NFL Just Gave a Major Update About the Sunday Night Football Theme Song",
          "link": "https://www.countryliving.com/life/entertainment/a44711524/carrie-underwood-sunday-night-football-theme-song-2023/",
          "source": "Country Living Magazine",
          "snippet": "Are you ready for some football... and Carrie Underwood? Carrie announced that for the 11th year in a row, she will star in the open for...",
          "date": "1 day ago",
          "thumbnail": "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcRNBV9nqAsVDkfKUMjVl-WcDyof0wQmCSm_rUmuQzI2EoOVXLvFwKTvh8ecVcw"
        },
        {
          "title": "NFL Just Gave a Major Update About the Sunday Night Football Theme Song",
          "link": "https://www.yahoo.com/lifestyle/nfl-just-gave-major-sunday-125900969.html",
          "source": "Yahoo",
          "snippet": "Are you ready for some football... and Carrie Underwood? Carrie announced that for the 11th year in a row, she will star in the open for...",
          "date": "1 day ago"
        },
        {
          "title": "See Carrie Underwood's 'Sunday Night Football' Evolution",
          "link": "https://countrynow.com/see-carrie-underwoods-sunday-night-football-evolution/",
          "source": "Country Now",
          "snippet": "Here's a look back at Carrie Underwood through the years of Sunday Night Football. She will return for the 11th consecutive year in 2023.",
          "date": "9 hours ago"
        },
        ...
      ]
    },
    {
      "id": "US_lnk_XAHFiQAAAACZCM_en",
      "title": "Jim Brown, Cleveland Browns, Running back, Pro Football Hall of Fame, American football, Ray Lewis",
      "link": "https://trends.google.com/trends/trendingsearches/realtime?id=US_lnk_XAHFiQAAAACZCM_en&category=all&geo=US#US_lnk_XAHFiQAAAACZCM_en",
      "queries": [
        "Jim Brown",
        "Cleveland Browns",
        "Running back",
        "Pro Football Hall of Fame",
        "American football",
        "Ray Lewis"
      ],
      "explore_links": [
        {
          "link": "https://trends.google.com/trends/explore?q=/m/01nzmp&date=now+7-d&geo=US",
          "serpapi_link": "https://serpapi.com/search.json?data_type=TIMESERIES&date=now+7-d&engine=google_trends&geo=US&q=%2Fm%2F01nzmp&tz=420"
        },
        {
          "link": "https://trends.google.com/trends/explore?q=/m/01r3hr&date=now+7-d&geo=US",
          "serpapi_link": "https://serpapi.com/search.json?data_type=TIMESERIES&date=now+7-d&engine=google_trends&geo=US&q=%2Fm%2F01r3hr&tz=420"
        },
        {
          "link": "https://trends.google.com/trends/explore?q=/m/01xvb&date=now+7-d&geo=US",
          "serpapi_link": "https://serpapi.com/search.json?data_type=TIMESERIES&date=now+7-d&engine=google_trends&geo=US&q=%2Fm%2F01xvb&tz=420"
        },
        ...
      ],
      "sparkline_chart_link": "https://trends.google.com/trends/api/widgetdata/sparkline?hl=en&tz=-480&id=US_lnk_XAHFiQAAAACZCM_en",
      "articles": [
        {
          "title": "Browns, Pro Football Hall of Fame commemorate Jim Brown - ESPN",
          "link": "https://www.espn.com/nfl/story/_/id/38128663/browns-pro-football-hall-fame-commemorate-jim-brown",
          "source": "ESPN",
          "snippet": "The Browns and Pro Football Hall of Fame commemorated legendary running back Jim Brown with a \"Celebration of Life\" on Thursday.",
          "date": "6 hours ago",
          "thumbnail": "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcQvvBPhu9hqeG5i7j6kvPGrgq1EegmaNtcAe3icalbRNN6oxTyUB_PTk9vNa10"
        },
        {
          "title": "1 PM: 'The Life and Legacy of Jim Brown'",
          "link": "https://www.news5cleveland.com/sports/browns/1pm-the-life-and-legacy-of-jim-brown",
          "source": "WEWS",
          "snippet": "At 1 p.m. Thursday, the Browns, the NFL and the Hall of Fame will celebrate the life and legacy of Jim Brown, the unstoppable running back...",
          "date": "10 hours ago"
        },
        {
          "title": "Jim Brown remembered as \"man among men\" during tribute to Browns late Hall \nof Fame running back",
          "link": "https://www.yahoo.com/lifestyle/jim-brown-remembered-man-among-222915362.html",
          "source": "Yahoo News",
          "snippet": "On the last of his many visits to Jim Brown's home in Los Angeles, Ray Lewis recalled the legendary running back being as powerful as ever.",
          "date": "2 hours ago"
        },
        ...
      ]
    },
    {
      "id": "US_lnk_Ir33iAAAAADVtM_en",
      "title": "Cleveland Browns, Raymond Ventrone, NFL Preseason, Jakeem Grant, Return specialist, Special Teams Coordinator",
      "link": "https://trends.google.com/trends/trendingsearches/realtime?id=US_lnk_Ir33iAAAAADVtM_en&category=all&geo=US#US_lnk_Ir33iAAAAADVtM_en",
      "queries": [
        "Cleveland Browns",
        "Raymond Ventrone",
        "NFL Preseason",
        "Jakeem Grant",
        "Return specialist",
        "Special Teams Coordinator"
      ],
      "explore_links": [
        {
          "link": "https://trends.google.com/trends/explore?q=/g/11cmnntx5x&date=now+7-d&geo=US",
          "serpapi_link": "https://serpapi.com/search.json?data_type=TIMESERIES&date=now+7-d&engine=google_trends&geo=US&q=%2Fg%2F11cmnntx5x&tz=420"
        },
        {
          "link": "https://trends.google.com/trends/explore?q=/m/01xvb&date=now+7-d&geo=US",
          "serpapi_link": "https://serpapi.com/search.json?data_type=TIMESERIES&date=now+7-d&engine=google_trends&geo=US&q=%2Fm%2F01xvb&tz=420"
        },
        {
          "link": "https://trends.google.com/trends/explore?q=/m/026mnzk&date=now+7-d&geo=US",
          "serpapi_link": "https://serpapi.com/search.json?data_type=TIMESERIES&date=now+7-d&engine=google_trends&geo=US&q=%2Fm%2F026mnzk&tz=420"
        },
        ...
      ],
      "sparkline_chart_link": "https://trends.google.com/trends/api/widgetdata/sparkline?hl=en&tz=-480&id=US_lnk_Ir33iAAAAADVtM_en",
      "articles": [
        {
          "title": "Cleveland Browns Bubba Ventrone: Preseason games a ‘big evaluation tool’ \nfor special teams",
          "link": "https://www.dawgsbynature.com/2023/8/2/23817899/cleveland-browns-bubba-ventrone-preseason-games-big-evaluation-tool-special-teams",
          "source": "Dawgs By Nature",
          "snippet": "The Cleveland Browns had a lot go wrong in the 2022 season. While the defense carried much of the blame with far too many breakdowns,...",
          "date": "1 day ago",
          "thumbnail": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSodaklDKYqNwBdfkpqG1huH2Rub2i5bkIIKK8u5PlF3PcV1NoKsIthNTiAeIM"
        },
        {
          "title": "Daryl Ruiter: Garrett continues to beat Wills like a drum",
          "link": "https://www.audacy.com/923thefan/sports/cleveland-browns/daryl-ruiter-garrett-continues-to-beat-wills-like-a-drum",
          "source": "Audacy",
          "snippet": "Daryl Ruiter made his weekly visit on Overtime with Jonathan Peterlin to chime in on the latest with the Cleveland Browns.",
          "date": "1 day ago"
        },
        {
          "title": "Cleveland Browns' New Special Teams Coordinator Evaluating and Improving \nduring Preseason",
          "link": "https://bvmsports.com/2023/08/02/cleveland-browns-new-special-teams-coordinator-evaluating-and-improving-during-preseason/",
          "source": "BVM Sports",
          "snippet": "Cleveland Browns special teams coordinator Bubba Ventrone discusses the importance of preseason games as evaluation tools for the team's...",
          "date": "1 day ago"
        },
        ...
      ]
    },
    ...
  ],
  "serpapi_pagination": {
    "pages": [
      {
        "next_page_token": "WyJVU19sbmtfcEJ4ZmhnQUFBQUQ3R01fZW4iLCJVU19sbmtfdjBzTWlBQUFBQUN6UU1fZW4iLCJVU19sbmtfSVhKTGlRQUFBQUJxZU1fZW4iLCJVU19sbmtfeWdIRmlRQUFBQUFQQ01fZW4iLCJVU19sbmtfOHhvSmlBQUFBQUQ2RU1fZW4iLCJVU19sbmtfY3VKZ2lRQUFBQUFTNk1fZW4iLCJVU19sbmtfMWpjS2lRQUFBQURjUE1fZW4iLCJVU19sbmtfZWNyRGlRQUFBQUM2d01fZW4iLCJVU19sbmtfTTFTV2lRQUFBQUNsWE1fZW4iLCJVU19sbmtfMFFGUmlRQUFBQUNBQ01fZW4iLCJVU19sbmtfZTYzY2lRQUFBQUNucE1fZW4iLCJVU19sbmtfMFByVWlBQUFBQUFFOE1fZW4iLCJVU19sbmtfdFZaa2lBQUFBQURSWE1fZW4iLCJVU19sbmtfMWtfT2lRQUFBQUFZUk1fZW4iLCJVU19sbmtfOUtMYmlRQUFBQUF2cU1fZW4iLCJVU19sbmtfLU9WVWlRQUFBQUNzN01fZW4iLCJVU19sbmtfYTB5c2lRQUFBQURIUk1fZW4iLCJVU19sbmtfN0lrcWlRQUFBQURHZ01fZW4iLCJVU19sbmtfRXlnMmlRQUFBQUFsSU1fZW4iLCJVU19sbmtfamEtX2lRQUFBQUF5cE1fZW4iXQ==",
        "next": "https://serpapi.com/search.json?cat=all&engine=google_trends_trending_now&frequency=realtime&geo=US&hl=en&next_page_token=WyJVU19sbmtfcEJ4ZmhnQUFBQUQ3R01fZW4iLCJVU19sbmtfdjBzTWlBQUFBQUN6UU1fZW4iLCJVU19sbmtfSVhKTGlRQUFBQUJxZU1fZW4iLCJVU19sbmtfeWdIRmlRQUFBQUFQQ01fZW4iLCJVU19sbmtfOHhvSmlBQUFBQUQ2RU1fZW4iLCJVU19sbmtfY3VKZ2lRQUFBQUFTNk1fZW4iLCJVU19sbmtfMWpjS2lRQUFBQURjUE1fZW4iLCJVU19sbmtfZWNyRGlRQUFBQUM2d01fZW4iLCJVU19sbmtfTTFTV2lRQUFBQUNsWE1fZW4iLCJVU19sbmtfMFFGUmlRQUFBQUNBQ01fZW4iLCJVU19sbmtfZTYzY2lRQUFBQUNucE1fZW4iLCJVU19sbmtfMFByVWlBQUFBQUFFOE1fZW4iLCJVU19sbmtfdFZaa2lBQUFBQURSWE1fZW4iLCJVU19sbmtfMWtfT2lRQUFBQUFZUk1fZW4iLCJVU19sbmtfOUtMYmlRQUFBQUF2cU1fZW4iLCJVU19sbmtfLU9WVWlRQUFBQUNzN01fZW4iLCJVU19sbmtfYTB5c2lRQUFBQURIUk1fZW4iLCJVU19sbmtfN0lrcWlRQUFBQURHZ01fZW4iLCJVU19sbmtfRXlnMmlRQUFBQUFsSU1fZW4iLCJVU19sbmtfamEtX2lRQUFBQUF5cE1fZW4iXQ%3D%3D"
      },
      {
        "next_page_token": "WyJVU19sbmtfdzV0bGlRQUFBQUNta01fZW4iLCJVU19sbmtfRkNuYWlRQUFBQURPSU1fZW4iLCJVU19sbmtfNndCZ2lRQUFBQUNMQ01fZW4iLCJVU19sbmtfYV8zbWlBQUFBQUNOOU1fZW4iLCJVU19sbmtfZTFnM2lRQUFBQUJNVU1fZW4iLCJVU19sbmtfVzhfWGlRQUFBQUNNeE1fZW4iLCJVU19sbmtfN2tPdWlBQUFBQUJBU01fZW4iLCJVU19sbmtfSTQtZWlRQUFBQUM5aE1fZW4iLCJVU19sbmtfeHR1eWlRQUFBQUIwME1fZW4iLCJVU19sbmtfUDZpc2lBQUFBQUNUb01fZW4iLCJVU19sbmtfNnpSR2lRQUFBQUN0UE1fZW4iLCJVU19sbmtfNVQwRGlRQUFBQURtTk1fZW4iLCJVU19sbmtfTGhqS2lRQUFBQURrRU1fZW4iLCJVU19sbmtfOWFScmlRQUFBQUNlck1fZW4iLCJVU19sbmtfaGxIY2lRQUFBQUJhV01fZW4iLCJVU19sbmtfdENOWGlRQUFBQURqS01fZW4iLCJVU19sbmtfSVpmdGhnQUFBQURNa01fZW4iLCJVU19sbmtfYWw4eGlRQUFBQUJiVk1fZW4iLCJVU19sbmtfUXhwM2lRQUFBQUEwRU1fZW4iLCJVU19sbmtfclNjWmlRQUFBQUMwTE1fZW4iXQ==",
        "next": "https://serpapi.com/search.json?cat=all&engine=google_trends_trending_now&frequency=realtime&geo=US&hl=en&next_page_token=WyJVU19sbmtfdzV0bGlRQUFBQUNta01fZW4iLCJVU19sbmtfRkNuYWlRQUFBQURPSU1fZW4iLCJVU19sbmtfNndCZ2lRQUFBQUNMQ01fZW4iLCJVU19sbmtfYV8zbWlBQUFBQUNOOU1fZW4iLCJVU19sbmtfZTFnM2lRQUFBQUJNVU1fZW4iLCJVU19sbmtfVzhfWGlRQUFBQUNNeE1fZW4iLCJVU19sbmtfN2tPdWlBQUFBQUJBU01fZW4iLCJVU19sbmtfSTQtZWlRQUFBQUM5aE1fZW4iLCJVU19sbmtfeHR1eWlRQUFBQUIwME1fZW4iLCJVU19sbmtfUDZpc2lBQUFBQUNUb01fZW4iLCJVU19sbmtfNnpSR2lRQUFBQUN0UE1fZW4iLCJVU19sbmtfNVQwRGlRQUFBQURtTk1fZW4iLCJVU19sbmtfTGhqS2lRQUFBQURrRU1fZW4iLCJVU19sbmtfOWFScmlRQUFBQUNlck1fZW4iLCJVU19sbmtfaGxIY2lRQUFBQUJhV01fZW4iLCJVU19sbmtfdENOWGlRQUFBQURqS01fZW4iLCJVU19sbmtfSVpmdGhnQUFBQURNa01fZW4iLCJVU19sbmtfYWw4eGlRQUFBQUJiVk1fZW4iLCJVU19sbmtfUXhwM2lRQUFBQUEwRU1fZW4iLCJVU19sbmtfclNjWmlRQUFBQUMwTE1fZW4iXQ%3D%3D"
      },
      {
        "next_page_token": "WyJVU19sbmtfSjJPVGlBQUFBQUMwYU1fZW4iLCJVU19sbmtfcTRUVGlRQUFBQUI0ak1fZW4iLCJVU19sbmtfR2lVS2lBQUFBQUFRTE1fZW4iLCJVU19sbmtfY2c4d2lRQUFBQUJDQk1fZW4iLCJVU19sbmtfd0JuTGlRQUFBQUFMRU1fZW4iLCJVU19sbmtfbDhIb2lBQUFBQUJfeU1fZW4iLCJVU19sbmtfLWVTc2lBQUFBQUJWN01fZW4iLCJVU19sbmtfYzBQRWlRQUFBQUMzU01fZW4iLCJVU19sbmtfM2pkWGlBQUFBQUNKUE1fZW4iLCJVU19sbmtfNkhUTmlRQUFBQUFsZk1fZW4iLCJVU19sbmtfTDhCUmlRQUFBQUIteU1fZW4iLCJVU19sbmtfaERUU2lRQUFBQUJXUE1fZW4iLCJVU19sbmtfbEdRdWlRQUFBQUM2Yk1fZW4iLCJVU19sbmtfcWtWYmh3QUFBQUR4UU1fZW4iLCJVU19sbmtfNjFKT2lRQUFBQUNsV01fZW4iLCJVU19sbmtfaGhrOWlRQUFBQUM3RU1fZW4iLCJVU19sbmtfU3hQSmlRQUFBQUNDR01fZW4iLCJVU19sbmtfd1BiNGh3QUFBQUE0OE1fZW4iLCJVU19sbmtfU0w3UGh3QUFBQUNIdU1fZW4iLCJVU19sbmtfTHFrN2lBQUFBQUFWb01fZW4iXQ==",
        "next": "https://serpapi.com/search.json?cat=all&engine=google_trends_trending_now&frequency=realtime&geo=US&hl=en&next_page_token=WyJVU19sbmtfSjJPVGlBQUFBQUMwYU1fZW4iLCJVU19sbmtfcTRUVGlRQUFBQUI0ak1fZW4iLCJVU19sbmtfR2lVS2lBQUFBQUFRTE1fZW4iLCJVU19sbmtfY2c4d2lRQUFBQUJDQk1fZW4iLCJVU19sbmtfd0JuTGlRQUFBQUFMRU1fZW4iLCJVU19sbmtfbDhIb2lBQUFBQUJfeU1fZW4iLCJVU19sbmtfLWVTc2lBQUFBQUJWN01fZW4iLCJVU19sbmtfYzBQRWlRQUFBQUMzU01fZW4iLCJVU19sbmtfM2pkWGlBQUFBQUNKUE1fZW4iLCJVU19sbmtfNkhUTmlRQUFBQUFsZk1fZW4iLCJVU19sbmtfTDhCUmlRQUFBQUIteU1fZW4iLCJVU19sbmtfaERUU2lRQUFBQUJXUE1fZW4iLCJVU19sbmtfbEdRdWlRQUFBQUM2Yk1fZW4iLCJVU19sbmtfcWtWYmh3QUFBQUR4UU1fZW4iLCJVU19sbmtfNjFKT2lRQUFBQUNsV01fZW4iLCJVU19sbmtfaGhrOWlRQUFBQUM3RU1fZW4iLCJVU19sbmtfU3hQSmlRQUFBQUNDR01fZW4iLCJVU19sbmtfd1BiNGh3QUFBQUE0OE1fZW4iLCJVU19sbmtfU0w3UGh3QUFBQUNIdU1fZW4iLCJVU19sbmtfTHFrN2lBQUFBQUFWb01fZW4iXQ%3D%3D"
      },
      ...
    ]
  }
}