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.


The API endpoint is https://serpapi.com/search?engine=google_videos

Head to the playground for a live and interactive demo.

API Examples

JSON structure overview

{
  "related_searches": [
    {
      "query": "String - Search text",
      "link": "String - Link to the search",
      "serpapi_link": "String - Link to the search on SerpApi"
    }
  ]
}