Bing Videos Related Search Results

When SerpApi encounters Related Search Results during a Bing Videos search, we add them to our JSON output as the array related_search_results. For each Related Search result, we are able to extract its link, title, thumbnail, and position.

API Examples

JSON structure overview

{
  ...
  "related_search_results": [
   {
      "title": "String - Title of the result",
      "link": "String - Link to the result",
      "thumbnail": "String - URL of the result thumbnail"
      "position": "Integer - Position of result"
   },
  ...
  ]
}

Results for: Pizza

Results for: Pizza

JSON Example

{
  "related_search_results": [
    {
      "title": "Pizza Crust",
      "link": "https://www.bing.com/videos/search?q=Pizza+Crust&qft=&FORM=VRIBQP",
      "thumbnail": "https://tse2.mm.bing.net/th?q=Pizza+Crust&w=200&h=120&c=1&rs=1&qlt=90&o=5&pid=InlineBlock&mkt=en-US&cc=US&setlang=en&adlt=moderate&t=1&mw=247",
      "position": 1
    },
    {
      "title": "Pizza Dough Recipe",
      "link": "https://www.bing.com/videos/search?q=Pizza+Dough+Recipe&qft=&FORM=VRIBQP",
      "thumbnail": "https://tse2.mm.bing.net/th?q=Pizza+Dough+Recipe&w=200&h=120&c=1&rs=1&qlt=90&o=5&pid=InlineBlock&mkt=en-US&cc=US&setlang=en&adlt=moderate&t=1&mw=247",
      "position": 2
    },
    {
      "title": "Margherita Pizza",
      "link": "https://www.bing.com/videos/search?q=Margherita+Pizza&qft=&FORM=VRIBQP",
      "thumbnail": "https://tse1.mm.bing.net/th?q=Margherita+Pizza&w=200&h=120&c=1&rs=1&qlt=90&o=5&pid=InlineBlock&mkt=en-US&cc=US&setlang=en&adlt=moderate&t=1&mw=247",
      "position": 3
    },
    ...
  ]
}