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.

API Examples

JSON structure overview

{
  ...
  "related_search_boxes": [
    {
      "position": "Integer - Index of related search",
      "query": "String - Query of the related search",
      "results": [
        {
          "title": "String - Title of the result",
          "link": "String - Google link to the page of the result",
          "thumbnail": "String - Google thumbnail of the result"
        },
        ...
      ],
    },
  ],
  "related_searches": [
    {
      "query": "String - Query of the related search",
      "link":  "String - Link to the Google search"
    },
    ...
  ],
  ...
}