Google Videos Related Searches API

When SerpApi encounters Related Search results, we add them to our JSON output as the array related_searches. For each Related Search result, we are able to extract its query, and link.

API Examples

JSON structure overview

{
  ...
  "related_searches": [
    {
      "query": "String - Query of the related search",
      "link":  "String - Link to the Google search"
    },
    ...
  ],
  ...
}