Bing Short Videos API

When SerpApi encounters Short Videos results during a Bing search, we add them to our JSON output as the array short_videos. For each Short Video result, we are able to extract its link, source_link, title, source, and thumbnail.

API Examples

JSON structure overview

{
  ...
  "short_videos": [
   {
      "link": "String - Link to the Bing search",
      "source_link": "String - Direct link to the video",
      "title": "String - Title of the video",
      "source": "String - Source of the video",
      "thumbnail": "String - URL of the video thumbnail"
   },
  ...
  ]
}

Results for: Tom Hanks

Results for: Tom Hanks

JSON Example

{
  "short_videos": [
    {
      "link": "https://www.bing.com/videos/search?q=tom+hanks&&view=detail&mid=9E540BA0DADCA355C76A9E540BA0DADCA355C76A&&FORM=VIRE",
      "source_link": "https://www.youtube.com/watch?v=PGAh0gBNwpA",
      "title": "Tom Hanks on writers’ strike: “The entire industry is at a crossroads” #shorts",
      "source": "YouTube",
      "thumbnail": "https://th.bing.com/th?id=OVP.AlV1z-NSsgfB9OYfEcr-BAEkII&w=115&h=204&c=7&rs=1&qlt=90&o=6&pid=1.7"
    },
    {
      "link": "https://www.facebook.com/APNews/videos/tom-hanks-jokes-he-never-went-to-harvard-during-his-commencement-speech/823500755801060/",
      "source_link": "https://www.facebook.com/APNews/videos/tom-hanks-jokes-he-never-went-to-harvard-during-his-commencement-speech/823500755801060/",
      "title": "Tom Hanks jokes he never went to Harvard during his commencement speech. | AP",
      "source": "Facebook",
      "thumbnail": "https://th.bing.com/th?id=OVP.wZW_P-GaCjCT30EWuY6RjwDwGq&w=115&h=204&c=7&rs=1&qlt=90&o=6&pid=1.7"
    },
    {
      "link": "https://www.bing.com/videos/search?q=tom+hanks&&view=detail&mid=D495F13BBF2C67E6B302D495F13BBF2C67E6B302&&FORM=VIRE",
      "source_link": "https://www.youtube.com/watch?v=rVOANSAkO_A",
      "title": "Tom Hanks jokes about the significance of getting the call to work with Wes Anderson. #shorts",
      "source": "YouTube",
      "thumbnail": "https://th.bing.com/th?id=OVP.rKszfL21TgxfIukMxLCbngEkII&w=115&h=204&c=7&rs=1&qlt=90&o=6&pid=1.7"
    },
    ...
  ]
}