Google News API

Our Google News API allows you to scrape results from the Google News search page. The API is accessed through the following endpoint: /search?engine=google_news.

A user may query the following: https://serpapi.com/search?engine=google_news utilizing a GET request. Head to the playground for a live and interactive demo.

API Parameters

Search Query

q

Optional

Parameter defines the query you want to search. You can use anything that you would use in a regular Google News search. e.g. site:, when:.

Parameter can't be used together with publication_token, story_token, and topic_token parameters.

Localization

gl

Optional

Parameter defines the country to use for the Google News search. It's a two-letter country code. (e.g., us for the United States (default), uk for United Kingdom, or fr for France). Head to the Google countries page for a full list of supported Google News countries.

hl

Optional

Parameter defines the language to use for the Google News search. It's a two-letter language code. (e.g., en for English, es for Spanish, or fr for French). Head to the Google languages page for a full list of supported Google languages.

Advanced Google News Parameters

topic_token

Optional

Parameter defines the Google News topic token. It is used for accessing the news results for a specific topic (e.g., "World", "Business", "Technology").

The token can be found in our JSON response or the URL of the Google News page (in the URL, it is a string of characters preceded by /topics/).

Parameter can't be used together with q, story_token, and publication_token parameters.

publication_token

Optional

Parameter defines the Google News publication token. It is used for accessing the news results from a specific publisher (e.g., "CNN", "BBC", "The Guardian").

The token can be found in our JSON response or the URL of the Google News page (in the URL, it is a string of characters preceded by /publications/).

Parameter can't be used together with q, story_token, and topic_token parameters.

section_token

Optional

Parameter defines the Google News section token. It is used for accessing the sub-section of a specific topic. (e.g., "Business -> Economy").

The token can be found in our JSON response or the URL of the Google News page (in the URL, it is a string of characters preceded by /sections/)

Parameter can only be used in combination with topic_token or publication_token parameters.

story_token

Optional

Parameter defines the Google News story token. It is used for accessing the news results with full coverage of a specific story.

The token can be found in our JSON response or the URL of the Google News page (in the URL, it is a string of characters preceded by /stories/)

Parameter can't be used together with q, topic_token, and publication_token parameters.

so

Optional

Parameter defines the sorting method. Results can be sorted by relevance or by date. By default, the results are sorted by relevance.
List of supported values are:

0 - Relevance
1 - Date

Parameter can only be used in combination with story_token parameter.

Serpapi Parameters

engine

Required

Set parameter to google_news to use the Google News API engine.

no_cache

Optional

Parameter will force SerpApi to fetch the Google 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_key

Required

Parameter defines the SerpApi private key to use.

output

Optional

Parameter defines the final output you want. It can be set to json (default) to get a structured JSON of the results, or html to get the raw html retrieved.

API Results

JSON Results

JSON output includes structured data for News 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 the HTML response, just a text. search_metadata.prettify_html_file contains prettified version of the result. It is displayed in the playground.

API Examples

JSON structure overview

{
  "top_stories_link": {
    "topic_token": "String - Token used for retrieving news results from a specific topic",
    "serpapi_link": "String - URL to the SerpApi search"
  },
  "title": "String - Page title",
  "news_results": [
    {
      "position": "Integer - News result position",
      "title": "String - News result title",
      "snippet": "String - News result snippet",
      "source": {
        "title": "String - Title of the source",
        "name": "String - Name of the source",
        "icon": "String - Link to the source icon",
        "authors": [
          "String - Name of the author"
        ]
      },
      "author": {
        "thumbnail": "String - Link to the author's thumbnail",
        "name": "String - Name of the author",
        "handle": "String - X (Twitter) username"
      },
      "link": "String - News result link",
      "thumbnail": "String - News result thumbnail link",
      "thumbnail_small": "String - News result low-resolution thumbnail link",
      "type": "String - News result type (e.g., 'Opinion', 'Local coverage')",
      "video": "Boolean - Returns 'true' if the result is a video",
      "topic_token": "String - Token used for retrieving news results from a specific topic",
      "story_token": "String - Token used for retrieving news results from a specific story",
      "serpapi_link": "String - URL to the SerpApi search",
      "date": "String - Date when the news result was posted",
      "related_topics": [
        {
          "position": "Integer - Related topic position",
          "name": "String - Name of the related topic",
          "topic_token": "String - Token used for retrieving news results from a specific topic",
          "serpapi_link": "String - URL to the SerpApi search"
        },
        ...
      ]
      "highlight": {
        // Can contain the same data as 'news_results' except 'related_topics', `stories` and 'highlight'
      },
      "stories": [
        {
          // Can contain the same data as 'news_results' except 'related_topics', `highlight` and 'stories'
        },
        ...
      ],
    },
    ...
  ],
  "menu_links": [
    {
      "title": "String - Text of the menu item",
      "topic_token": "String - Token used for retrieving news results from a specific topic",
      "serpapi_link": "String - URL to the SerpApi search"
    },
    ...
  ],
  "sub_menu_links": [
    {
      "title": "String - Text of the sub-menu item",
      "section_token": "String - Token used for retrieving news results from a specific section",
      "topic_token": "String - Token used for retrieving news results from a specific topic",
      "serpapi_link": "String - URL to the SerpApi search"
    },
    ...
  ]
}

Example with search query q: Pizza

Example with search query q: Pizza

JSON Example

{
  "search_metadata": {
    "id": "6734b33796b8f8a59b244ae1",
    "status": "Success",
    "json_endpoint": "https://serpapi.com/searches/87b042ba1547994d/6734b33796b8f8a59b244ae1.json",
    "created_at": "2024-11-13 14:09:59 UTC",
    "processed_at": "2024-11-13 14:09:59 UTC",
    "google_news_url": "https://news.google.com/search?q=pizza&hl=en&gl=US",
    "raw_html_file": "https://serpapi.com/searches/87b042ba1547994d/6734b33796b8f8a59b244ae1.html",
    "total_time_taken": 1.62
  },
  "search_parameters": {
    "engine": "google_news",
    "gl": "us",
    "hl": "en",
    "q": "pizza"
  },
  "news_results": [
    {
      "position": 1,
      "title": "Industrial Taphouse owners opening Steampunk Pizza in Ashland",
      "source": {
        "name": "RichmondBizSense",
        "icon": "https://encrypted-tbn0.gstatic.com/faviconV2?url=https://richmondbizsense.com&client=NEWS_360&size=96&type=FAVICON&fallback_opts=TYPE,SIZE,URL",
        "authors": [
          "Mike Platania"
        ]
      },
      "link": "https://richmondbizsense.com/2024/11/12/industrial-taphouse-owners-opening-steampunk-pizza-in-ashland/",
      "thumbnail": "https://richmondbizsense.com/wp-content/uploads/2024/11/steampunk-pizza1-Cropped.jpg",
      "thumbnail_small": "https://news.google.com/api/attachments/CC8iI0NnNDVjM3BhYjFwZlJreG1aV05ZVFJDb0FSaXNBaWdCTWdB",
      "date": "11/12/2024, 09:03 AM, +0200 EET"
    },
    {
      "position": 2,
      "title": "A Top LA Pizzeria Makes a Big Move to the Westside Next Year",
      "source": {
        "name": "Eater LA",
        "icon": "https://lh3.googleusercontent.com/Etyvq1qAM7RUdeLuULrKii11AFXQoHHgNx5bKBWLlByYuMa91G3F-EC2J0Qv_xQSCVh8agge",
        "authors": [
          "Matthew Kang"
        ]
      },
      "link": "https://la.eater.com/2024/11/11/24293844/pizzeria-sei-william-joo-moving-palms-los-angeles",
      "thumbnail": "https://cdn.vox-cdn.com/thumbor/VasMxoW8YdbQK21KtDos_W_3ar8=/0x0:4032x3024/1200x800/filters:focal(1873x937:2517x1581)/cdn.vox-cdn.com/uploads/chorus_image/image/73716446/PXL_20220216_204449626.PORTRAIT.0.jpg",
      "thumbnail_small": "https://news.google.com/api/attachments/CC8iK0NnNWlORlZtT0RWM1VsTnpObTV4VFJDM0FSaVRBaWdCTWdhQkFZejBBQTA",
      "date": "11/12/2024, 01:27 AM, +0200 EET"
    },
    {
      "position": 3,
      "title": "Best Bites | Homemade sauce and loaded toppings makes this pizza place a favorite in Appleton",
      "source": {
        "name": "Post-Crescent",
        "icon": "https://encrypted-tbn0.gstatic.com/faviconV2?url=https://www.postcrescent.com&client=NEWS_360&size=96&type=FAVICON&fallback_opts=TYPE,SIZE,URL",
        "authors": [
          "Jelissa Burns"
        ]
      },
      "link": "https://www.postcrescent.com/story/life/food/2024/11/13/stucs-pizza-is-known-for-its-award-winning-pizza-and-calzones/75823785007/",
      "thumbnail": "https://www.postcrescent.com/gcdn/authoring/authoring-images/2024/10/25/PAPN/75841461007-apc-stucs-pizza-1010240313-djp-1.jpg?width=660&height=440&fit=crop&format=pjpg&auto=webp",
      "thumbnail_small": "https://news.google.com/api/attachments/CC8iK0NnNXBWMDF3WmtZM1JtWktUMFJUVFJDM0FSaVRBaWdCTWdZQlI0eUduZ2c",
      "date": "11/13/2024, 01:01 PM, +0200 EET"
    },
    ...
  ],
  "menu_links": [
    {
      "title": "U.S.",
      "topic_token": "CAAqIggKIhxDQkFTRHdvSkwyMHZNRGxqTjNjd0VnSmxiaWdBUAE",
      "serpapi_link": "https://serpapi.com/search.json?engine=google_news&gl=us&topic_token=CAAqIggKIhxDQkFTRHdvSkwyMHZNRGxqTjNjd0VnSmxiaWdBUAE"
    },
    ...
  ]
}

Example with Technology as a topic

Example with Technology as a topic

JSON Example

{
  "search_metadata": {
    "id": "673daa1296b8f8d40bd7cda7",
    "status": "Success",
    "json_endpoint": "https://serpapi.com/searches/5be508ad7ffb081f/673daa1296b8f8d40bd7cda7.json",
    "created_at": "2024-11-20 09:21:22 UTC",
    "processed_at": "2024-11-20 09:21:22 UTC",
    "google_news_url": "https://news.google.com/topics/CAAqJggKIiBDQkFTRWdvSUwyMHZNRGRqTVhZU0FtVnVHZ0pWVXlnQVAB?hl=en&gl=US",
    "raw_html_file": "https://serpapi.com/searches/5be508ad7ffb081f/673daa1296b8f8d40bd7cda7.html",
    "total_time_taken": 2.05
  },
  "search_parameters": {
    "engine": "google_news",
    "gl": "us",
    "hl": "en",
    "topic_token": "CAAqJggKIiBDQkFTRWdvSUwyMHZNRGRqTVhZU0FtVnVHZ0pWVXlnQVAB"
  },
  "title": "Technology",
  "news_results": [
    {
      "position": 1,
      "highlight": {
        "title": "Apple Releases Urgent Updates to Patch Actively Exploited Zero-Day Vulnerabilities",
        "source": {
          "name": "The Hacker News",
          "icon": "https://lh3.googleusercontent.com/0AvueYYz9BZDq0Kam2Tm36_CiqqKigCM9N0qGneiflgxGbkiMN_c88oiG51jC9ywIC8d_BMV",
          "authors": [
            "Ravie Lakshmanan"
          ]
        },
        "link": "https://thehackernews.com/2024/11/apple-releases-urgent-updates-to-patch.html",
        "thumbnail": "https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjD5XLqCBlMlu8dFR_aRirjkb36_6qyPuVt9k8sWVCOhAmpUDSOkaZBL5xpMIwhLpofolfB4rMs0Ob8eR8WmCZa9WkMdi7EyYwqyOG15Liq-DYmbaEkAEtCJcj0PDbn5d2luTjiVK4nx8DBVcO-CwpGWS6q0lZ_Plg2paBqC_FiID2Ikm5TC6qLEqxGonmO/s728-rw-e365/apple-pdates.png",
        "thumbnail_small": "https://news.google.com/api/attachments/CC8iK0NnNXVkbnByWjNwSFh6SXdTMUpuVFJEOEFoallCU2dLTWdZdFpKQ3VyUVk",
        "date": "11/20/2024, 06:37 AM, +0200 EET"
      },
      "stories": [
        {
          "position": 1,
          "title": "Apple Confirms Zero-Day Attacks Hitting macOS Systems",
          "source": {
            "name": "SecurityWeek",
            "icon": "https://encrypted-tbn3.gstatic.com/faviconV2?url=https://www.securityweek.com&client=NEWS_360&size=96&type=FAVICON&fallback_opts=TYPE,SIZE,URL",
            "authors": [
              "Ryan Naraine"
            ]
          },
          "link": "https://www.securityweek.com/apple-confirms-zero-day-attacks-hitting-intel-based-macs/",
          "thumbnail": "https://www.securityweek.com/wp-content/uploads/2023/01/Apple-iOS-macOS-Patches.jpg",
          "thumbnail_small": "https://news.google.com/api/attachments/CC8iL0NnNDFVR3hYTkZOdFQydzFWVTVCVFJDcUF4alJCU2dLTWdtVkFvWVNRU1NpSXdN",
          "story_token": "CAAqNggKIjBDQklTSGpvSmMzUnZjbmt0TXpZd1NoRUtEd2liMGQ3Z0RCRnloODhMZlJqQWhDZ0FQAQ",
          "serpapi_link": "https://serpapi.com/search.json?engine=google_news&gl=us&story_token=CAAqNggKIjBDQklTSGpvSmMzUnZjbmt0TXpZd1NoRUtEd2liMGQ3Z0RCRnloODhMZlJqQWhDZ0FQAQ",
          "date": "11/19/2024, 10:45 PM, +0200 EET"
        },
        {
          "position": 2,
          "title": "iOS 18.1.1—Update Now Warning Issued To All iPhone Users",
          "source": {
            "name": "Forbes",
            "icon": "https://lh3.googleusercontent.com/NIjzR9QHtZJllEvJIVkODXFQ7_rbx1BMBXx2rNUbttjuu9YWLIp2_juQaI9jJ2rDtzi6snbZ",
            "authors": [
              "Kate O'flaherty"
            ]
          },
          "link": "https://www.forbes.com/sites/kateoflahertyuk/2024/11/20/ios-1811-update-now-warning-issued-to-all-iphone-users/",
          "thumbnail": "https://imageio.forbes.com/specials-images/imageserve/673d9709a7a706f0921017fd/Apple-s-iOS-18-1-1-update-displayed-on-an-iPhone-16-screen/960x0.png?format=png&width=960",
          "thumbnail_small": "https://news.google.com/api/attachments/CC8iK0NnNVJXWGxXVGs4dFkySlBiRmQ2VFJEWkF4aUlCU2dLTWdhQkJZeW1qZ3c",
          "story_token": "CAAqNggKIjBDQklTSGpvSmMzUnZjbmt0TXpZd1NoRUtEd2liMGQ3Z0RCRnloODhMZlJqQWhDZ0FQAQ",
          "serpapi_link": "https://serpapi.com/search.json?engine=google_news&gl=us&story_token=CAAqNggKIjBDQklTSGpvSmMzUnZjbmt0TXpZd1NoRUtEd2liMGQ3Z0RCRnloODhMZlJqQWhDZ0FQAQ",
          "date": "11/20/2024, 10:14 AM, +0200 EET"
        },
        {
          "position": 3,
          "title": "Apple says Mac users targeted in zero-day cyberattacks",
          "source": {
            "name": "TechCrunch",
            "icon": "https://lh3.googleusercontent.com/YU3Zt-UhXeMKfv2S4O8DBE5mgjPf17NSuKEy1qe_tZM-K79CQJe5T5xp055KYVAVWXXJDcRF",
            "authors": [
              "Zack Whittaker"
            ]
          },
          "link": "https://techcrunch.com/2024/11/19/apple-says-mac-users-targeted-in-zero-day-cyberattacks/",
          "thumbnail": "https://techcrunch.com/wp-content/uploads/2017/12/apple_imac_pro_002.jpg",
          "thumbnail_small": "https://news.google.com/api/attachments/CC8iK0NnNTVVR3R2U0Zaa09XZG1Zek5pVFJERUF4aW1CU2dLTWdZWlJJS1BKUWc",
          "story_token": "CAAqNggKIjBDQklTSGpvSmMzUnZjbmt0TXpZd1NoRUtEd2liMGQ3Z0RCRnloODhMZlJqQWhDZ0FQAQ",
          "serpapi_link": "https://serpapi.com/search.json?engine=google_news&gl=us&story_token=CAAqNggKIjBDQklTSGpvSmMzUnZjbmt0TXpZd1NoRUtEd2liMGQ3Z0RCRnloODhMZlJqQWhDZ0FQAQ",
          "date": "11/20/2024, 01:45 AM, +0200 EET"
        }
      ],
      "story_token": "CAAqNggKIjBDQklTSGpvSmMzUnZjbmt0TXpZd1NoRUtEd2liMGQ3Z0RCRnloODhMZlJqQWhDZ0FQAQ",
      "serpapi_link": "https://serpapi.com/search.json?engine=google_news&gl=us&story_token=CAAqNggKIjBDQklTSGpvSmMzUnZjbmt0TXpZd1NoRUtEd2liMGQ3Z0RCRnloODhMZlJqQWhDZ0FQAQ"
    },
    ...
  ],
  "menu_links": [
    {
      "title": "U.S.",
      "topic_token": "CAAqIggKIhxDQkFTRHdvSkwyMHZNRGxqTjNjd0VnSmxiaWdBUAE",
      "serpapi_link": "https://serpapi.com/search.json?engine=google_news&gl=us&topic_token=CAAqIggKIhxDQkFTRHdvSkwyMHZNRGxqTjNjd0VnSmxiaWdBUAE"
    },
    ...
  ],
  "sub_menu_links": [
    {
      "title": "Latest",
      "section_token": "CAQqKggAKiYICiIgQ0JBU0Vnb0lMMjB2TURkak1YWVNBbVZ1R2dKVlV5Z0FQAQ",
      "topic_token": "CAAqJggKIiBDQkFTRWdvSUwyMHZNRGRqTVhZU0FtVnVHZ0pWVXlnQVAB",
      "serpapi_link": "https://serpapi.com/search.json?engine=google_news&gl=us&section_token=CAQqKggAKiYICiIgQ0JBU0Vnb0lMMjB2TURkak1YWVNBbVZ1R2dKVlV5Z0FQAQ&topic_token=CAAqJggKIiBDQkFTRWdvSUwyMHZNRGRqTVhZU0FtVnVHZ0pWVXlnQVAB"
    },
    ...
  ]
}

Example for a full coverage page

Example for a full coverage page

JSON Example

{
  "search_metadata": {
    "id": "65538efade9834b33185eb37",
    "status": "Success",
    "json_endpoint": "https://serpapi.com/searches/34eaf87949612adb/65538efade9834b33185eb37.json",
    "created_at": "2023-11-14 15:15:06 UTC",
    "processed_at": "2023-11-14 15:15:06 UTC",
    "google_news_url": "https://news.google.com/stories/CAAqNggKIjBDQklTSGpvSmMzUnZjbmt0TXpZd1NoRUtEd2pqdU9UWENSRXNnR1puWWJtdzZ5Z0FQAQ?hl=en&gl=US",
    "raw_html_file": "https://serpapi.com/searches/34eaf87949612adb/65538efade9834b33185eb37.html",
    "total_time_taken": 2.3
  },
  "search_parameters": {
    "engine": "google_news",
    "gl": "us",
    "hl": "en",
    "story_token": "CAAqNggKIjBDQklTSGpvSmMzUnZjbmt0TXpZd1NoRUtEd2pqdU9UWENSRXNnR1puWWJtdzZ5Z0FQAQ"
  },
  "title": "News about CPI, October, and inflation",
  "news_results": [
    {
      "position": 1,
      "title": "Top news",
      "stories": [
        {
          "position": 1,
          "title": "Inflation was flat in October from the prior month, core CPI hits two-year low",
          "snippet": "The CPI, which measures a broad basket of commonly used goods and services, increased 3.2% from a year ago despite being unchanged for the...",
          "source": {
            "name": "CNBC",
            "icon": "https://lh3.googleusercontent.com/UEQEAUAyUNeb8PjnoA90xCxg3IIQc2RWP_EJNe4ljoowvxl8nR62HAdD_NTXlOFzSv1HEHfC",
            "authors": [
              "Jeff Cox"
            ]
          },
          "link": "https://www.cnbc.com/2023/11/14/cpi-inflation-report-october-2023.html",
          "thumbnail": "https://lh5.googleusercontent.com/proxy/-uOaIuMdW6-O6ZV0YyAeycX9kvORXkRdAA2Phg7fbZ5sUX99VMKdI8bO9aesM7R4wEElgdmby03hXaCoEO5bdeCTPzMo-wREYynj6GfGrm14F8MuQnMrHL9oB3B7flC9Eo0MCPfUWekTbizWvpH_t8f5BnDAnNzHI3-_x1Ad-YVsQH8k0gn-9gOFWF9bVuFVpV8sho6RNJiLr3TSkEACEWU",
          "thumbnail_small": "<URL to low-resolution thumbnail>",
          "date": "11/14/2023, 02:31 PM, +0100 CET"
        },
        ...
      ]
    },
    {
      "position": 2,
      "title": "By the numbers",
      "stories": [
        {
          "position": 1,
          "title": "US stocks and bonds jump after inflation falls to 3.2%",
          "snippet": "US inflation fell more than expected to 3.2 per cent in October, the first decline in four months, prompting Treasury yields to fall sharply...",
          "source": {
            "name": "Financial Times",
            "icon": "https://lh3.googleusercontent.com/281oPpXmEcGU9cV4N2LudyLEG2aBqbqG2iDoMoXUXKl-SWD4AUdO5652KVTGNmcduSWZB_7j",
            "authors": [
              "Colby Smith",
              "Nicholas Megaw"
            ]
          },
          "link": "https://www.ft.com/content/7928101a-262f-475c-ac32-ac962f8925fb",
          "thumbnail": "https://lh4.googleusercontent.com/proxy/Omfiu_jfi1XtEe29yZuBBV6jxIevajO1-YkYQKfdQ3jH1xCnrTWAVQRqMgoh5DqA91751aqbypzZwFlRR8840DLRjOtqKw3Oncj2w_RPBxauxNb7E9qAB8oCuFPOafdtqBKLjjmhqovCqsWlcu1tw3tqYw_5d6H65HVZ_J6efU-o1BUvVJRaPaLgyYtvCNjTPI5aNiM4dm0GrtUKSljFu48T3TXoV71rVwK9yapEYVVA9D5TGu3TYoedxZeuwPb9dNpEmZ7pBfOH7JbMLtXRBtR5UKvutRoZAoozlCKljNL29mPlO6L8BzhhyHtKEYuNY8-1tx23SNMklmY",
          "thumbnail_small": "<URL to low-resolution thumbnail>",
          "date": "11/14/2023, 03:38 PM, +0100 CET"
        },
        ...
      ]
    },
    {
      "position": 3,
      "title": "Posts on X",
      "stories": [
        {
          "position": 1,
          "snippet": "Dollar was steady as traders awaited another batch of inflation data from the United States that is expected to offer further clues this week on whether the Federal Reserve has more work to do to tame price pressures.\n\n#Dollar #UnitedStates #Inflation \n\nwww.zeebiz.com/markets/currency/news-dollar-firm-ahead-of-us-inflation-data-yen-near-one-year-low-264081",
          "author": {
            "thumbnail": "https://pbs.twimg.com/profile_images/1072023698985705473/YftYvcTj_normal.jpg",
            "thumbnail_small": "<URL to low-resolution thumbnail>",
            "name": "Zee Business",
            "handle": "ZeeBusiness"
          },
          "link": "https://twitter.com/ZeeBusiness/status/1723900983573614825",
          "date": "11/13/2023, 04:09 AM, +0100 CET"
        },
        ...
      ],
      "link": "https://twitter.com/RepDarrenSoto/status/1724441285828731029"
    },
    {
      "position": 4,
      "title": "Frequently asked questions",
      "stories": [
        {
          "position": 1,
          "title": "When is the October CPI report?",
          "snippet": "The consumer price index reading for October will be reported on Nov. 14 by \nthe Bureau of Labor Statistics.",
          "source": {
            "title": "October CPI Data: The Key Points From Today's Inflation Report - Barrons",
            "name": "Barron's",
            "icon": "https://encrypted-tbn1.gstatic.com/faviconV2?url=https://www.barrons.com&client=NEWS_360&size=96&type=FAVICON&fallback_opts=TYPE,SIZE,URL"
          },
          "link": "https://www.barrons.com/articles/october-cpi-inflation-report-data-today-155d53f1",
          "date": "11/14/2023, 03:32 PM, +0100 CET"
        },
        ...
      ]
    },
    {
      "position": 5,
      "title": "10-year Treasury yield tumbles below 4.5% on cool October inflation report",
      "snippet": "U.S. Treasury yields fell on Tuesday as key inflation figures showed a surprisingly soft change in prices last month. The 10-year Treasury...",
      "source": {
        "name": "CNBC",
        "icon": "https://lh3.googleusercontent.com/UEQEAUAyUNeb8PjnoA90xCxg3IIQc2RWP_EJNe4ljoowvxl8nR62HAdD_NTXlOFzSv1HEHfC",
        "authors": [
          "Lisa Kailai Han",
          "Jesse Pound",
          "Sophie Kiderlin"
        ]
      },
      "link": "https://www.cnbc.com/2023/11/14/us-treasury-yields-investors-look-to-key-inflation-data.html",
      "thumbnail": "https://lh3.googleusercontent.com/proxy/2KnYfWGU2HTaJh4m2kGlH9g5KzFwV_CR3Yh8CA4QYf9OKsG7d06U6J--6GvfUEwCTb4-87zQncqczVKE-U4WG_YRoAmHjl3B9D7r2gnGWIS0qu1zMuG_4I5JMWv1rjxxPe6xS1eKxzPkW2GwDOG5s1kzVTwm12bY_C2pUi0U9SvR4aA-pS4limEduZcq1CyjLhcRln_nA9P_-apYbTqFRVZ3-wCnBrgZe-Xv8dwMfJg",
      "thumbnail_small": "<URL to low-resolution thumbnail>",
      "date": "11/14/2023, 10:14 AM, +0100 CET"
    },
    ...
  ],
  "menu_links": [
    {
      "title": "U.S.",
      "topic_token": "CAAqIggKIhxDQkFTRHdvSkwyMHZNRGxqTjNjd0VnSmxiaWdBUAE",
      "serpapi_link": "https://serpapi.com/search.json?engine=google_news&gl=us&topic_token=CAAqIggKIhxDQkFTRHdvSkwyMHZNRGxqTjNjd0VnSmxiaWdBUAE"
    },
    ...
  ]
}

Example for a publications page

Example for a publications page

JSON Example

{
  "search_metadata": {
    "id": "673da0ee96b8f8d40bd7cda6",
    "status": "Success",
    "json_endpoint": "https://serpapi.com/searches/16ed4c2bf20bea55/673da0ee96b8f8d40bd7cda6.json",
    "created_at": "2024-11-20 08:42:22 UTC",
    "processed_at": "2024-11-20 08:42:22 UTC",
    "google_news_url": "https://news.google.com/publications/CAAqBwgKMKHL9QowkqbaAg?hl=en&gl=US",
    "raw_html_file": "https://serpapi.com/searches/16ed4c2bf20bea55/673da0ee96b8f8d40bd7cda6.html",
    "total_time_taken": 1.82
  },
  "search_parameters": {
    "engine": "google_news",
    "gl": "us",
    "hl": "en",
    "publication_token": "CAAqBwgKMKHL9QowkqbaAg"
  },
  "title": "CNN",
  "news_results": [
    {
      "position": 1,
      "title": "Trump names Linda McMahon as his pick for Education secretary",
      "source": {
        "name": "CNN",
        "icon": "https://lh3.googleusercontent.com/8zdvTbISHUn-4iHkauW-_yQSGPD9BMrx9EWfqTIhiVm2YMYqhHC1HJWNDQoSOkMk0MRPYKxjIg",
        "authors": [
          "Kristen Holmes",
          "Kaitlan Collins",
          "John Towfighi"
        ]
      },
      "link": "https://www.cnn.com/2024/11/19/politics/linda-mcmahon-education-secretary-trump/index.html",
      "thumbnail": "https://media.cnn.com/api/v1/images/stellar/prod/linda-mcmahon-2024-07-18t232657z-1175398264-hp1ek7i1t4ur7-rtrmadp-3-usa-election-republicans-convention.jpg?c=16x9&q=h_833,w_1480,c_fill",
      "thumbnail_small": "https://news.google.com/api/attachments/CC8iK0NnNVVVV1ZVZVMwdFFVTlpkelYzVFJDZkF4amlCU2dLTWdhQlE1YkZuZ2c",
      "date": "11/20/2024, 04:58 AM, +0200 EET"
    },
    {
      "position": 2,
      "title": "Italian village offers $1 homes to Americans upset by the US election result",
      "source": {
        "name": "CNN",
        "icon": "https://lh3.googleusercontent.com/8zdvTbISHUn-4iHkauW-_yQSGPD9BMrx9EWfqTIhiVm2YMYqhHC1HJWNDQoSOkMk0MRPYKxjIg",
        "authors": [
          "Silvia Marchetti"
        ]
      },
      "link": "https://www.cnn.com/2024/11/19/travel/italian-village-ollolai-wants-americans-election-one-dollar-homes/index.html",
      "thumbnail": "https://media.cnn.com/api/v1/images/stellar/prod/unknown-20241118150307581.jpg?c=original",
      "thumbnail_small": "https://news.google.com/api/attachments/CC8iI0NnNW1hWGRwTmxJNE1sbExhMmxYVFJERUF4aW1CU2dLTWdB",
      "date": "11/20/2024, 03:59 AM, +0200 EET"
    },
    {
      "position": 3,
      "title": "Son of Norway’s Crown Princess arrested on suspicion of rape",
      "source": {
        "name": "CNN",
        "icon": "https://lh3.googleusercontent.com/8zdvTbISHUn-4iHkauW-_yQSGPD9BMrx9EWfqTIhiVm2YMYqhHC1HJWNDQoSOkMk0MRPYKxjIg",
        "authors": [
          "Catherine Nicholls"
        ]
      },
      "link": "https://www.cnn.com/2024/11/19/europe/norway-hoiby-arrested-intl/index.html",
      "thumbnail": "https://media.cnn.com/api/v1/images/stellar/prod/gettyimages-2165187213.jpg?c=16x9&q=h_833,w_1480,c_fill",
      "thumbnail_small": "https://news.google.com/api/attachments/CC8iI0NnNVJhemRLVlZBNWJFMDRlRWQwVFJDZkF4amlCU2dLTWdB",
      "date": "11/19/2024, 02:07 PM, +0200 EET"
    },
    ...
  ],
  "menu_links": [
    {
      "title": "U.S.",
      "topic_token": "CAAqIggKIhxDQkFTRHdvSkwyMHZNRGxqTjNjd0VnSmxiaWdBUAE",
      "serpapi_link": "https://serpapi.com/search.json?engine=google_news&gl=us&topic_token=CAAqIggKIhxDQkFTRHdvSkwyMHZNRGxqTjNjd0VnSmxiaWdBUAE"
    },
    ...
  ],
  "sub_menu_links": [
    {
      "title": "For You",
      "section_token": "CAQqEAgAKgcICjChy_UKMJKm2gIw2o-mBQ",
      "publication_token": "CAAqBwgKMKHL9QowkqbaAg",
      "serpapi_link": "https://serpapi.com/search.json?engine=google_news&gl=us&publication_token=CAAqBwgKMKHL9QowkqbaAg&section_token=CAQqEAgAKgcICjChy_UKMJKm2gIw2o-mBQ"
    },
    ...
  ]
}

Example for a publications page with Business subsection

Example for a publications page with Business subsection

JSON Example

{
  "search_metadata": {
    "id": "673d9ebe96b8f8d4090982a1",
    "status": "Success",
    "json_endpoint": "https://serpapi.com/searches/3589dc20b4e4257f/673d9ebe96b8f8d4090982a1.json",
    "created_at": "2024-11-20 08:33:02 UTC",
    "processed_at": "2024-11-20 08:33:02 UTC",
    "google_news_url": "https://news.google.com/publications/CAAqBwgKMKHL9QowkqbaAg/sections/CAQqEAgAKgcICjChy_UKMJKm2gIwxJScBg?hl=en&gl=US",
    "raw_html_file": "https://serpapi.com/searches/3589dc20b4e4257f/673d9ebe96b8f8d4090982a1.html",
    "total_time_taken": 1.86
  },
  "search_parameters": {
    "engine": "google_news",
    "gl": "us",
    "hl": "en",
    "publication_token": "CAAqBwgKMKHL9QowkqbaAg",
    "section_token": "CAQqEAgAKgcICjChy_UKMJKm2gIwxJScBg"
  },
  "title": "CNN",
  "news_results": [
    {
      "position": 1,
      "title": "Watch: CEO of new social media company competing with X describes users’ experiences",
      "source": {
        "name": "CNN",
        "icon": "https://lh3.googleusercontent.com/8zdvTbISHUn-4iHkauW-_yQSGPD9BMrx9EWfqTIhiVm2YMYqhHC1HJWNDQoSOkMk0MRPYKxjIg"
      },
      "link": "https://www.cnn.com/2024/11/20/business/video/bluesky-ceo-jay-graber-lcl-digvid",
      "thumbnail": "https://media.cnn.com/api/v1/images/stellar/prod/bluesky.jpg?c=16x9&q=w_250,c_fill",
      "thumbnail_small": "https://news.google.com/api/attachments/CC8iK0NnNU5NbEpLZGtGemEyWkhORTFyVFJDTkFSajZBU2dLTWdhcFJaak5vUWc",
      "date": "11/20/2024, 09:48 AM, +0200 EET"
    },
    {
      "position": 2,
      "title": "Video: Erin Burnett on what Dr. Oz and Trump’s other cabinet picks have in common",
      "source": {
        "name": "CNN",
        "icon": "https://lh3.googleusercontent.com/8zdvTbISHUn-4iHkauW-_yQSGPD9BMrx9EWfqTIhiVm2YMYqhHC1HJWNDQoSOkMk0MRPYKxjIg"
      },
      "link": "https://www.cnn.com/2024/11/19/business/video/dr-oz-trump-pick-central-casting-burnett-monologue-ebof-digvid",
      "thumbnail": "https://media.cnn.com/api/v1/images/stellar/prod/ba98b6a7-23a0-4199-b0bc-5c87319c37d7.jpg?q=h_1067,w_1600,x_0,y_0",
      "thumbnail_small": "https://news.google.com/api/attachments/CC8iL0NnNVBSRUpFYzNsVmIyNW5NMEp3VFJERUF4aW1CU2dLTWdtWmdZNUpybWMxVUFF",
      "date": "11/20/2024, 02:38 AM, +0200 EET"
    },
    {
      "position": 3,
      "title": "Comcast to spin off its cable channels, including MSNBC and CNBC, into separate company",
      "source": {
        "name": "CNN",
        "icon": "https://lh3.googleusercontent.com/8zdvTbISHUn-4iHkauW-_yQSGPD9BMrx9EWfqTIhiVm2YMYqhHC1HJWNDQoSOkMk0MRPYKxjIg",
        "authors": [
          "Brian Stelter"
        ]
      },
      "link": "https://www.cnn.com/2024/11/19/media/comcast-nbcuniversal-cable-spinoff-msnbc/index.html",
      "thumbnail": "https://media.cnn.com/api/v1/images/stellar/prod/gettyimages-1488494963.jpg?c=16x9&q=h_833,w_1480,c_fill",
      "thumbnail_small": "https://news.google.com/api/attachments/CC8iK0NnNXpaVTlDWkdGRGNHOHRSWGt6VFJDZkF4amlCU2dLTWdZUlpKS3J0UVk",
      "date": "11/20/2024, 02:00 AM, +0200 EET"
    },
    ...
  ],
  "menu_links": [
    {
      "title": "U.S.",
      "topic_token": "CAAqIggKIhxDQkFTRHdvSkwyMHZNRGxqTjNjd0VnSmxiaWdBUAE",
      "serpapi_link": "https://serpapi.com/search.json?engine=google_news&gl=us&topic_token=CAAqIggKIhxDQkFTRHdvSkwyMHZNRGxqTjNjd0VnSmxiaWdBUAE"
    },
    ...
  ],
  "sub_menu_links": [
    {
      "title": "For You",
      "section_token": "CAQqEAgAKgcICjChy_UKMJKm2gIw2o-mBQ",
      "publication_token": "CAAqBwgKMKHL9QowkqbaAg",
      "serpapi_link": "https://serpapi.com/search.json?engine=google_news&gl=us&publication_token=CAAqBwgKMKHL9QowkqbaAg&section_token=CAQqEAgAKgcICjChy_UKMJKm2gIw2o-mBQ"
    },
    ...
  ]
}

Example for a front page

Example for a front page

JSON Example

{
  "search_metadata": {
    "id": "673da57496b8f8d40cf26b1f",
    "status": "Success",
    "json_endpoint": "https://serpapi.com/searches/2adba6d60e381f18/673da57496b8f8d40cf26b1f.json",
    "created_at": "2024-11-20 09:01:40 UTC",
    "processed_at": "2024-11-20 09:01:40 UTC",
    "google_news_url": "https://news.google.com/home?hl=en&gl=US",
    "raw_html_file": "https://serpapi.com/searches/2adba6d60e381f18/673da57496b8f8d40cf26b1f.html",
    "total_time_taken": 1.61
  },
  "search_parameters": {
    "engine": "google_news",
    "gl": "us",
    "hl": "en"
  },
  "top_stories_link": {
    "topic_token": "CAAqJggKIiBDQkFTRWdvSUwyMHZNRFZxYUdjU0FtVnVHZ0pWVXlnQVAB",
    "serpapi_link": "https://serpapi.com/search.json?engine=google_news&gl=us&topic_token=CAAqJggKIiBDQkFTRWdvSUwyMHZNRFZxYUdjU0FtVnVHZ0pWVXlnQVAB"
  },
  "news_results": [
    {
      "position": 1,
      "highlight": {
        "title": "Trump names Linda McMahon as his pick for Education secretary",
        "source": {
          "name": "CNN",
          "icon": "https://lh3.googleusercontent.com/8zdvTbISHUn-4iHkauW-_yQSGPD9BMrx9EWfqTIhiVm2YMYqhHC1HJWNDQoSOkMk0MRPYKxjIg",
          "authors": [
            "Kristen Holmes",
            "Kaitlan Collins",
            "John Towfighi"
          ]
        },
        "link": "https://www.cnn.com/2024/11/19/politics/linda-mcmahon-education-secretary-trump/index.html",
        "thumbnail": "https://media.cnn.com/api/v1/images/stellar/prod/linda-mcmahon-2024-07-18t232657z-1175398264-hp1ek7i1t4ur7-rtrmadp-3-usa-election-republicans-convention.jpg?c=16x9&q=h_833,w_1480,c_fill",
        "thumbnail_small": "https://news.google.com/api/attachments/CC8iK0NnNVVVV1ZVZVMwdFFVTlpkelYzVFJDZkF4amlCU2dLTWdhQlE1YkZuZ2c",
        "date": "11/20/2024, 10:37 AM, +0200 EET"
      },
      "stories": [
        {
          "position": 1,
          "title": "Trump taps former WWE CEO Linda McMahon to serve as education secretary",
          "source": {
            "name": "Fox News",
            "icon": "https://lh3.googleusercontent.com/sI1WB0Q5duO4KjZqNG5iwyb-5Rt-WYpF7YJjAde847yk_-mOpMueyEcXZgjU5dIMJNdPwe2ICg",
            "authors": [
              "Paul Steinhauser",
              "Andrea Margolis"
            ]
          },
          "link": "https://www.foxnews.com/politics/trump-taps-former-wwe-ceo-linda-mcmahon-serve-education-secretary",
          "thumbnail": "https://a57.foxnews.com/static.foxnews.com/foxnews.com/content/uploads/2024/11/1200/675/linda_trump.jpg?ve=1&tl=1",
          "thumbnail_small": "https://news.google.com/api/attachments/CC8iL0NnNUlUSGhJTVdORFdHRXhkbmh3VFJDZkF4ampCU2dLTWdtTlFaakZJbWsxU1FJ",
          "story_token": "CAAqNggKIjBDQklTSGpvSmMzUnZjbmt0TXpZd1NoRUtEd2k3NE5UZURCRkJkWFRLVXFfTENpZ0FQAQ",
          "serpapi_link": "https://serpapi.com/search.json?engine=google_news&gl=us&story_token=CAAqNggKIjBDQklTSGpvSmMzUnZjbmt0TXpZd1NoRUtEd2k3NE5UZURCRkJkWFRLVXFfTENpZ0FQAQ",
          "date": "11/20/2024, 02:19 AM, +0200 EET"
        },
        ...
      ],
      "story_token": "CAAqNggKIjBDQklTSGpvSmMzUnZjbmt0TXpZd1NoRUtEd2k3NE5UZURCRkJkWFRLVXFfTENpZ0FQAQ",
      "serpapi_link": "https://serpapi.com/search.json?engine=google_news&gl=us&story_token=CAAqNggKIjBDQklTSGpvSmMzUnZjbmt0TXpZd1NoRUtEd2k3NE5UZURCRkJkWFRLVXFfTENpZ0FQAQ"
    },
    {
      "position": 2,
      "highlight": {
        "title": "Musk launches SpaceX Starship rocket with Trump at his side",
        "source": {
          "name": "Al Jazeera English",
          "icon": "https://lh3.googleusercontent.com/l-Ps9rkWuApN8G3MB5uZC_a5G7iKCTITjMdpZFhm2rQf3U2M2Yr_KTYpzpmOPxDiUKgb9yN9ha8"
        },
        "link": "https://www.aljazeera.com/news/2024/11/19/musk-launches-spacex-rocket-test-with-trump-at-his-side",
        "thumbnail": "https://www.aljazeera.com/wp-content/uploads/2024/11/AP24324780149643-1732053522.jpg?resize=1920%2C1440",
        "thumbnail_small": "https://news.google.com/api/attachments/CC8iK0NnNTFZbnBHTjBkVVpVbzRNQzFSVFJEZ0F4aUFCU2dLTWdhbFFaanNvQWs",
        "date": "11/20/2024, 01:12 AM, +0200 EET"
      },
      "stories": [
        {
          "position": 1,
          "title": "Trump’s turn to bask in Musk’s reflected glory",
          "source": {
            "name": "CNN",
            "icon": "https://lh3.googleusercontent.com/8zdvTbISHUn-4iHkauW-_yQSGPD9BMrx9EWfqTIhiVm2YMYqhHC1HJWNDQoSOkMk0MRPYKxjIg",
            "authors": [
              "Stephen Collinson"
            ]
          },
          "link": "https://www.cnn.com/2024/11/20/politics/trump-musk-relationship-analysis/index.html",
          "thumbnail": "https://media.cnn.com/api/v1/images/stellar/prod/gettyimages-2185632992.jpg?c=original",
          "thumbnail_small": "https://news.google.com/api/attachments/CC8iL0NnNU9WR2RTTnpWemRHazBZekZtVFJDM0FSaVRBaWdCTWdrUmdKSm5NaWNtS3dJ",
          "story_token": "CAAqNggKIjBDQklTSGpvSmMzUnZjbmt0TXpZd1NoRUtEd2lBeU9MV0RCR0JCZm4yYWFNeXFTZ0FQAQ",
          "serpapi_link": "https://serpapi.com/search.json?engine=google_news&gl=us&story_token=CAAqNggKIjBDQklTSGpvSmMzUnZjbmt0TXpZd1NoRUtEd2lBeU9MV0RCR0JCZm4yYWFNeXFTZ0FQAQ",
          "date": "11/20/2024, 07:00 AM, +0200 EET"
        },
        ...
      ],
      "story_token": "CAAqNggKIjBDQklTSGpvSmMzUnZjbmt0TXpZd1NoRUtEd2lBeU9MV0RCR0JCZm4yYWFNeXFTZ0FQAQ",
      "serpapi_link": "https://serpapi.com/search.json?engine=google_news&gl=us&story_token=CAAqNggKIjBDQklTSGpvSmMzUnZjbmt0TXpZd1NoRUtEd2lBeU9MV0RCR0JCZm4yYWFNeXFTZ0FQAQ"
    },
    {
      "position": 3,
      "title": "Deadly bomb cyclone slams Seattle area with fierce winds leaving over 600,000 without power",
      "source": {
        "name": "Fox Weather ",
        "icon": "https://lh3.googleusercontent.com/U-WnHs7OkphkboLFftbovYWJjohUkG_U6YcnX8UqWnQP-OoGliS-19F16KD2zZPE_elkXUkupQ",
        "authors": [
          "Scott Sistek"
        ]
      },
      "link": "https://www.foxweather.com/weather-news/bomb-cyclone-seattle-power-outages",
      "thumbnail": "https://images.foxweather.com/static.foxweather.com/www.foxweather.com/content/uploads/2024/11/1024/512/psound_trailer3.jpeg?ve=1&tl=1",
      "thumbnail_small": "https://news.google.com/api/attachments/CC8iMkNnNVJZMVZqTVhCdGJqRTBiMU5RVFJDSEF4aVBCaWdLTWd1QkVvaGtKV1dLNVZxVFRB",
      "story_token": "CAAqNggKIjBDQklTSGpvSmMzUnZjbmt0TXpZd1NoRUtEd2kybk9fWURCRmxxOVhqS3U5X0NTZ0FQAQ",
      "serpapi_link": "https://serpapi.com/search.json?engine=google_news&gl=us&story_token=CAAqNggKIjBDQklTSGpvSmMzUnZjbmt0TXpZd1NoRUtEd2kybk9fWURCRmxxOVhqS3U5X0NTZ0FQAQ",
      "date": "11/20/2024, 09:02 AM, +0200 EET"
    },
    ...
  ],
  "menu_links": [
    {
      "title": "U.S.",
      "topic_token": "CAAqIggKIhxDQkFTRHdvSkwyMHZNRGxqTjNjd0VnSmxiaWdBUAE",
      "serpapi_link": "https://serpapi.com/search.json?engine=google_news&gl=us&topic_token=CAAqIggKIhxDQkFTRHdvSkwyMHZNRGxqTjNjd0VnSmxiaWdBUAE"
    },
    ...
  ]
}

Example with Hip-hop as a topic

Example with Hip-hop as a topic

JSON Example

{
  "search_metadata": {
    "id": "673da73696b8f8d40a0bdcf0",
    "status": "Success",
    "json_endpoint": "https://serpapi.com/searches/3ff99f85becf4c35/673da73696b8f8d40a0bdcf0.json",
    "created_at": "2024-11-20 09:09:10 UTC",
    "processed_at": "2024-11-20 09:09:10 UTC",
    "google_news_url": "https://news.google.com/topics/CAAqJAgKIh5DQkFTRUFvS0wyMHZNR2RzZERZM01CSUNaVzRvQUFQAQ?hl=en&gl=US",
    "raw_html_file": "https://serpapi.com/searches/3ff99f85becf4c35/673da73696b8f8d40a0bdcf0.html",
    "total_time_taken": 1.75
  },
  "search_parameters": {
    "engine": "google_news",
    "gl": "us",
    "hl": "en",
    "topic_token": "CAAqJAgKIh5DQkFTRUFvS0wyMHZNR2RzZERZM01CSUNaVzRvQUFQAQ"
  },
  "title": "Hip-hop",
  "news_results": [
    {
      "position": 1,
      "title": "Latest news 🎤 ",
      "stories": [
        {
          "position": 1,
          "title": "What De La Soul’s Big Mistake Cost Hip-Hop",
          "source": {
            "name": "The Atlantic",
            "icon": "https://lh3.googleusercontent.com/nYb-8947aElpB7lTLDOgq-s0H3C0qxHE2TzzoQvVZAXUeUTGlKpJJG5Ap4uAXginmJn4ekPopQ",
            "authors": [
              "Marc Weingarten"
            ]
          },
          "link": "https://www.theatlantic.com/books/archive/2024/11/de-la-souls-mistake-and-hip-hop-lost-opportunityi/680690/",
          "thumbnail": "https://cdn.theatlantic.com/thumbor/EGDHjVoStvadgQZt3ovOzt5l0bQ=/0x0:2160x2700/648x810/media/img/2024/11/17/HR_1465435115/original.jpg",
          "thumbnail_small": "https://news.google.com/api/attachments/CC8iI0NnNTZiek5QYzFsalMxcEljbWxVVFJEckJCanZBeWdLTWdB",
          "story_token": "CAAqNggKIjBDQklTSGpvSmMzUnZjbmt0TXpZd1NoRUtEd2pQeU12ZkRCRjFtZExDOExzbmhDZ0FQAQ",
          "serpapi_link": "https://serpapi.com/search.json?engine=google_news&gl=us&story_token=CAAqNggKIjBDQklTSGpvSmMzUnZjbmt0TXpZd1NoRUtEd2pQeU12ZkRCRjFtZExDOExzbmhDZ0FQAQ",
          "date": "11/18/2024, 04:56 PM, +0200 EET"
        },
        ...
      ]
    },
    {
      "position": 2,
      "title": "Subgenres",
      "related_topics": [
        {
          "position": 1,
          "name": "Nerdcore",
          "topic_token": "CAAqIggKIhxDQkFTRHdvSkwyMHZNREo1TnpSNUVnSmxiaWdBUAE",
          "serpapi_link": "https://serpapi.com/search.json?engine=google_news&gl=us&topic_token=CAAqIggKIhxDQkFTRHdvSkwyMHZNREo1TnpSNUVnSmxiaWdBUAE"
        },
        {
          "position": 2,
          "name": "Rap rock",
          "topic_token": "CAAqJAgKIh5DQkFTRUFvS0wyMHZNRGR6TjJkck5oSUNaVzRvQUFQAQ",
          "serpapi_link": "https://serpapi.com/search.json?engine=google_news&gl=us&topic_token=CAAqJAgKIh5DQkFTRUFvS0wyMHZNRGR6TjJkck5oSUNaVzRvQUFQAQ"
        },
        {
          "position": 3,
          "name": "New jack swing",
          "topic_token": "CAAqIggKIhxDQkFTRHdvSkwyMHZNREl4WDNvMUVnSmxiaWdBUAE",
          "serpapi_link": "https://serpapi.com/search.json?engine=google_news&gl=us&topic_token=CAAqIggKIhxDQkFTRHdvSkwyMHZNREl4WDNvMUVnSmxiaWdBUAE"
        },
        ...
      ]
    },
    {
      "position": 3,
      "title": "Concerts & festivals",
      "stories": [
        {
          "position": 1,
          "title": "Doechii, Vince Staples, Tyler, the Creator and more light up Day 1 of Camp Flog Gnaw at Dodger Stadium",
          "source": {
            "name": "Los Angeles Times",
            "icon": "https://lh3.googleusercontent.com/9nbYT9obRkuCTymvKP-_tbV71-7s-OHLrN4kEmo15QYW02PTEIBRg_08Phc9GGzeK-dsP9Gv3Q",
            "authors": [
              "August Brown",
              "Mikael Wood",
              "Kailyn Brown"
            ]
          },
          "link": "https://www.latimes.com/entertainment-arts/music/story/2024-11-17/doechii-vince-staples-tyler-the-creator-day-1of-camp-flog-gnaw-review",
          "thumbnail": "https://ca-times.brightspotcdn.com/dims4/default/f461fe1/2147483647/strip/true/crop/5472x3648+0+0/resize/1200x800!/quality/75/?url=https%3A%2F%2Fcalifornia-times-brightspot.s3.amazonaws.com%2Fc5%2F32%2Fa1dbaf7941e097f5edc4235f2d2b%2F1483643-la-et-camp-flog-gnaw-mdb-60.jpg",
          "thumbnail_small": "https://news.google.com/api/attachments/CC8iI0NnNW1iMUZ0ZEVRdFlYcE5NbkZhVFJERUF4aW1CU2dLTWdB",
          "story_token": "CAAqNggKIjBDQklTSGpvSmMzUnZjbmt0TXpZd1NoRUtEd2k2bktIWURCSDUwUmRHWFZCTjZTZ0FQAQ",
          "serpapi_link": "https://serpapi.com/search.json?engine=google_news&gl=us&story_token=CAAqNggKIjBDQklTSGpvSmMzUnZjbmt0TXpZd1NoRUtEd2k2bktIWURCSDUwUmRHWFZCTjZTZ0FQAQ",
          "date": "11/18/2024, 12:06 AM, +0200 EET"
        },
        ...
      ],
      "topic_token": "CAAqBwgKMK-mjQswtIyfAw",
      "serpapi_link": "https://serpapi.com/search.json?engine=google_news&gl=us&topic_token=CAAqBwgKMK-mjQswtIyfAw"
    },
    ...
  ],
  "menu_links": [
    {
      "title": "U.S.",
      "topic_token": "CAAqIggKIhxDQkFTRHdvSkwyMHZNRGxqTjNjd0VnSmxiaWdBUAE",
      "serpapi_link": "https://serpapi.com/search.json?engine=google_news&gl=us&topic_token=CAAqIggKIhxDQkFTRHdvSkwyMHZNRGxqTjNjd0VnSmxiaWdBUAE"
    },
    ...
  ],
  "sub_menu_links": [
    {
      "title": "Hip-hop",
      "section_token": "CAQqEAgAKgcICjChovMKMOGr2gIwtbfUAw",
      "topic_token": "CAAqJAgKIh5DQkFTRUFvS0wyMHZNR2RzZERZM01CSUNaVzRvQUFQAQ",
      "serpapi_link": "https://serpapi.com/search.json?engine=google_news&gl=us&section_token=CAQqEAgAKgcICjChovMKMOGr2gIwtbfUAw&topic_token=CAAqJAgKIh5DQkFTRUFvS0wyMHZNR2RzZERZM01CSUNaVzRvQUFQAQ"
    }
  ]
}