Amazon Product Similar Product Videos API
Amazon product pages may display Similar Product Videos featuring content from related products. Each video can include title, link, thumbnail, duration, and vendor information.
When SerpApi encounters Similar Product Videos, they are added to the JSON output as the similar_product_videos array.
The API endpoint is https://serpapi.com/search?engine=amazon_product
Head to the playground for a live and interactive demo.
API Examples
Similar Product Videos overview
{
...
"similar_product_videos": [
{
"position": 1,
"title": "Benks Magsafe Kickstand Pop Socket",
"link": "https://m.media-amazon.com/images/S/vse-vms-transcoding-artifact-us-east-1-prod/38dcc408-c812-4e16-a5ee-7b9733c93225/videopreview.jobtemplate.mp4.default.mp4",
"thumbnail": "https://m.media-amazon.com/images/I/A1gH1v2YuiL.png",
"duration": "2:01",
"vendor": "Tech Influence",
"vendor_thumbnail": "https://m.media-amazon.com/images/I/31bvaT1GS5L._CR0,0,472,472_._FMjpg_._SL34_.jpg"
},
{
"position": 2,
"title": "MagSafe Phone Grip",
"link": "https://m.media-amazon.com/images/S/vse-vms-transcoding-artifact-us-east-1-prod/792563d0-2ad1-434a-a55f-74cdbe90f0af/videopreview.jobtemplate.mp4.default.mp4",
"thumbnail": "https://m.media-amazon.com/images/I/61p2doM-mWL.jpg",
"duration": "1:20",
"vendor": "Laci Jo",
"vendor_thumbnail": "https://m.media-amazon.com/images/I/51TlQWcOwIL._CR0,0,390,390_._FMjpg_._SL34_.jpg"
},
{
"position": 3,
"title": "This is our M-Tap Tok Ring Stand",
"link": "https://m.media-amazon.com/images/S/vse-vms-transcoding-artifact-us-east-1-prod/176e1f97-cf53-4e81-bae3-1345fda856cf/videopreview.jobtemplate.mp4.default.mp4",
"thumbnail": "https://m.media-amazon.com/images/I/41MX55buhKL.jpg",
"duration": "0:29",
"vendor": "Sinjimoru Inc"
},
...
],
...
}
JSON structure overview
{
"similar_product_videos": [
{
"position": "Integer - Position in similar product videos list",
"title": "String - Video title",
"link": "String - Video URL",
"thumbnail": "String - Video thumbnail URL",
"duration": "String - Video duration (e.g., '2:01')",
"vendor": "String - Video vendor/creator name",
"vendor_thumbnail": "String - Vendor thumbnail URL"
}
]
}