Google Related Searches API

Google searches that may be related to other search terms are presented with related search boxes or a related searches section, typically at the bottom of the search page.

JSON structure overview

{
  ...
  "related_searches": [
    {
      "block_position": "Integer - Index of related search container",
      "query": "String - Query of the related search",
      "image": "String - Image of the related search",
      "link":  "String - Link to the Google search",
      "serpapi_link":  "String - SerpApi Link of the Google search",
      "items": [
        {
          "name": "String - Name of the item",
          "image": "String - Image of the item",
          "reviews": "Integer - Number of reviews. Available for some searches, e.g. restaurants",
          "rating": "Float - Rating of the item. Available for some searches, e.g. restaurants",
          "extensions": "Array - Extensions of the item",
          "link":  "String - Link to the Google search",
          "serpapi_link":  "String - SerpApi Link of the Google search",
        }
      ],
    },
    ...
  ],
  ...
}