Google Videos Short Videos API

When SerpApi encounters Short Videos results, we add them to our JSON output as the array short_videos. For each Short Videos result, we are able to extract its title, source, extensions, profile_name, clip, thumbnail, and link.

API Examples

Short Videos overview

Short Videos overview

JSON Example

{
  ...
  "short_videos": [
    {
      "title": "A Cher-athon! 😂🫶 Julia Roberts, Tom Hanks and Timothée Chalamet being the biggest fans of Cher's films. 🥹❤️ #cher #juliaroberts #timotheechalamet #tomhanks | The Cher World | The Cher World · Original audio by The Cher World on Facebook. Play on Facebook.",
      "source": "Facebook",
      "extensions": [
        "The Cher World"
      ],
      "profile_name": "The Cher World",
      "clip": "https://encrypted-vtbn0.gstatic.com/video?q=tbn:ANd9GcSfHDGqlXU0Ln6DYJPupNvN3MCFIkFkX3-L6A",
      "thumbnail": "http://localhost:3000/searches/66e2d381a54d755771e0876e/images/ee1d4c3e71f02e332217fd3c4af091fbe4addbe019ecac41a435150b202a7783.jpeg",
      "link": "https://m.facebook.com/thecherworld/videos/a-cher-athon-julia-roberts-tom-hanks-and-timoth%C3%A9e-chalamet-being-the-biggest-fan/787363380088228/"
    },
    {
      "title": "This Too Shall Pass | Tom Hanks by Dominating Motivation on YouTube. Play on YouTube.",
      "source": "YouTube",
      "extensions": [
        "Dominating Motivation"
      ],
      "profile_name": "Dominating Motivation",
      "clip": "https://encrypted-vtbn0.gstatic.com/video?q=tbn:ANd9GcR8tCuv9CR0egsuFP9YAXCZMa2TgLJWrEb6YA",
      "thumbnail": "http://localhost:3000/searches/66e2d381a54d755771e0876e/images/ee1d4c3e71f02e33ff743cff445ea1bbd4740320b1964f38cefd2f10477c538a.jpeg",
      "link": "https://www.youtube.com/shorts/8vc2eBMy6CE"
    },
    {
      "title": "Why Tom Hanks is a Villa Fan ⚽️ by bbcsport on TikTok. Play on TikTok.",
      "source": "TikTok",
      "extensions": [
        "bbcsport"
      ],
      "profile_name": "bbcsport",
      "clip": "https://encrypted-vtbn0.gstatic.com/video?q=tbn:ANd9GcS6vfIZJo-wSE7NDm9PdjS8XykPfIKjfYTFnA",
      "thumbnail": "http://localhost:3000/searches/66e2d381a54d755771e0876e/images/ee1d4c3e71f02e33d2cabaddc8aa58afbecbc4186530c41d4ac67a90c2b45748.jpeg",
      "link": "https://www.tiktok.com/@bbcsport/video/7368878063678967072"
    },
    ...
  ],
  ...
}

JSON structure overview

{
  "short_videos": [
    {
      "title": "String - Video title",
      "source": "String - Source of the video",
      "extensions": "Array - Additional information of the video",
      "profile_name": "String - Name of the video creator",
      "clip": "String - URL to a clip of the video in the search results",
      "thumbnail": "String - URL to the video thumbnail",
      "link": "String - Link to the video"
    }
  ]
}