Google Videos Found In Videos API
When SerpApi encounters Found In Videos results, we add them to our JSON output as the array found_in_videos
. For each Found In Videos result, we are able to extract its thumbnail
, key_moment
, title
, link
and channel
.
API Examples
JSON structure overview
{
...
"found_in_videos": [
{
"thumbnail": "String - Displayed thumbnail of video",
"key_moment": {
"time": "String - Start time of the moment in the video",
"title": "String - Title of the moment in the video"
},
"title": "String - Title of video",
"link": "String - Link to video",
"channel": "String - Youtube channel name",
},
]
...
}
Results for: Coffee
on mobile devices
For some searches, Google videos search includes "Found in videos". SerpApi is able to scrape, extract, and make sense of this information.
{
"found_in_videos": [
{
"thumbnail": "<URL to image>",
"key_moment": {
"time": "8:39",
"title": "Coffee Is a Tropical Fruit"
},
"title": "THE BEST COFFEE IN NEW YORK CITY WITH ACTION BRONSON",
"link": "https://www.youtube.com/watch?v=o2gHpE9QyUY&t=519",
"channel": "YouTube • Action Bronson"
},
{
"thumbnail": "<URL to image>",
"key_moment": {
"time": "0:29",
"title": "What Is Trade Coffee"
},
"title": "Coffee | Basics with Babish",
"link": "https://www.youtube.com/watch?v=6yItCQB4V9A&t=29",
"channel": "YouTube • Babish Culinary Universe"
},
...
],
...
}