Google Video Results API
When SerpApi encounters video results, we add them to our JSON output as the array video_results
. For each video result, we are able to extract its title
, link
, displayed_link
, thumbnail
, snippet
, rich_snippet
. To scrape Google Videos results with SerpApi, create a search with these parameters:
API Examples
API Parameters
tbm
Required
Parameter must be set to vid
. (I.e., tbm=vid
)
Results for: Coffee

{
"video_results": [
{
"position": 1,
"title": "Coffee | The Nutrition Source",
"link": "https://www.hsph.harvard.edu/nutritionsource/food-features/coffee/",
"displayed_link": "www.hsph.harvard.edu › ... › Food Features",
"thumbnail": "<URL to image>",
"snippet": "Coffee beans are the seeds of a fruit called a coffee cherry. Coffee cherries grow on coffee trees from a ...",
"duration": "0:58",
"rich_snippet": {
"top": {
"extensions": [
"Harvard T.H. Chan School of Public Health",
"Harvard T.H. Chan School of Public Health",
"Feb 27, 2019"
],
"detected_extensions": {
"feb": 27
}
}
}
},
{
"position": 2,
"title": "Miguel - Coffee (Official Video) - YouTube",
"link": "https://www.youtube.com/watch?v=9Z55sZ2oVY4",
"displayed_link": "www.youtube.com › watch",
"thumbnail": "<URL to image>",
"snippet": "'Coffee' by Miguel Listen to Miguel: https://Miguel.lnk.to/listenYDSubscribe to the official Miguel YouTube ...",
"duration": "4:55",
"rich_snippet": {
"top": {
"extensions": [
"YouTube",
"MiguelVEVO",
"Jun 16, 2015"
],
"detected_extensions": {
"jun": 16
}
}
},
"related_pages_link": "https://www.google.com/search?q=related:https://www.youtube.com/watch%3Fv%3D9Z55sZ2oVY4+Coffee&sa=X&ved=2ahUKEwjOpMe_pK70AhWclmoFHS5ODmgQH3oECAQQBw"
},
{
"position": 3,
"title": "Andrew Coffee IV found not guilty on all counts of murder",
"link": "https://www.wpbf.com/article/andrew-coffee-not-guilty-on-all-counts/38304640",
"displayed_link": "www.wpbf.com › article › andrew-coffee-not-guilty-on-al...",
"thumbnail": "<URL to image>",
"snippet": "Coffee was charged with the murder of Woods after a grand jury exonerated two law enforcement officers for ...",
"duration": "2:09",
"rich_snippet": {
"top": {
"extensions": [
"WPBF",
"3 days ago"
],
"detected_extensions": {
"days_ago": 3
}
}
}
},
...
]
}