Google Images Shopping Results API
The Google Images Shopping Results API allows a user to scrape the results of Google Images search. SerpApi is able to make sense of this information and extract title, link, price, source, and more.
The API endpoint is https://serpapi.com/search?engine=google_images
Head to the playground for a live and interactive demo.
API Examples
Results for: Coffee
{
"shopping_results": [
{
"position": 1,
"block_position": "top",
"title": "Dunkin' French Vanilla, Iced Bottled Coffee Drink, 13.7 fl oz, Size: Regular, Multicolor",
"price": "$2.68",
"extracted_price": 2.68,
"link": "https://www.walmart.com/ip/Dunkin-French-Vanilla-Iced-Bottled-Coffee-Drink-13-7-fl-oz/55205040?wl13=194&selectedSellerId=0&wmlspartner=wlpa",
"source": "Walmart",
"rating": 4.3,
"reviews": 2000,
"reviews_original": "2k+",
"thumbnail": "https://serpapi.com/searches/669ffc1c10a071e19a5670e7/images/0964d1b5557c0d3bbfe629e4f466fbea0c7e3aab3a59d22202b7f0e9d0f195a6.webp",
"extensions": [
"Pick up today"
]
},
{
"position": 2,
"block_position": "top",
"title": "Folgers Classic Decaf Instant Coffee Crystals Packets, 6 Count, Size: 0.42 oz",
"price": "$1.16",
"extracted_price": 1.16,
"link": "https://www.walmart.com/ip/Folgers-Classic-Decaf-Instant-Coffee-Crystals-Packets-6-Count/17747581?wl13=194&selectedSellerId=0&wmlspartner=wlpa",
"source": "Walmart",
"rating": 4.3,
"reviews": 825,
"reviews_original": "825",
"thumbnail": "https://serpapi.com/searches/669ffc1c10a071e19a5670e7/images/0964d1b5557c0d3bbfe629e4f466fbea42dedc962e1073e78f5d8d0410ac9836.webp",
"extensions": [
"Pick up today"
]
},
{
"position": 3,
"block_position": "top",
"title": "Dunkin Smores Artificially Flavored Coffee, Medium Roast, Keurig K-Cup Pods, 10 Count Box, Size: 3.7 oz",
"price": "$7.98",
"extracted_price": 7.98,
"link": "https://www.walmart.com/ip/Dunkin-S-mores-Artificially-Flavored-Coffee-Medium-Roast-Keurig-K-Cup-Pods-10-Count-Box/3902031266?wl13=194&selectedSellerId=0&wmlspartner=wlpa",
"source": "Walmart",
"rating": 4.2,
"reviews": 121,
"reviews_original": "121",
"thumbnail": "https://serpapi.com/searches/669ffc1c10a071e19a5670e7/images/0964d1b5557c0d3bbfe629e4f466fbead6cd9e9ecc6b73ad004b175dc06a0b87.webp",
"extensions": [
"Pick up today"
]
},
...
]
}
JSON structure overview
{
"shopping_results": [
{
"position": "Integer - Item position",
"block_position": "String - Item block location",
"title": "String - Item title",
"price": "String - Item price",
"extracted_price": "Float - Item price as a float",
"link": "String - Link to the Google item page",
"source": "String - Product source name",
"rating": "Float - Item rating as a float",
"reviews": "Integer - Item reviews as an integer",
"reviews_original": "String - Item review in text format",
"thumbnail": "String - URL of an image",
"extensions": "Array[String] - Extra information of the item"
},
...
],
}