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.

JSON structure overview

{
  "shopping_results": [
    {
      "position": "Integer - Item position",
      "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",
      "thumbnail": "String - URL of an image"
    },
    ...
  ],
}

Results for: Coffee

Results for: Coffee

JSON Example

{
  "shopping_results": [
    {
      "position": 1,
      "title": "Coffee Sampler",
      "price": "$33.00",
      "extracted_price": 33.0,
      "link": "https://driftaway.coffee/coffee-sampler/",
      "source": "Driftaway Coffee",
      "shipping": "Free shipping",
      "thumbnail": "<URL to image>"
    },
    {
      "position": 2,
      "title": "Miele PureLine 23 Built-In Coffee System CVA7845CTS",
      "price": "$6,099.00",
      "extracted_price": 6099.0,
      "link": "https://www.ajmadison.com/cgi-bin/ajmadison/CVA7845CTS.html?utm_source=google&utm_medium=cse&utm_term=CVA7845CTS",
      "source": "AJ Madison",
      "shipping": "Free shipping",
      "thumbnail": "<URL to image>"
    },
    {
      "position": 3,
      "title": "Brown sugar and Caramel Honduran coffee 12 LB / Whole Bean",
      "price": "$169.99",
      "extracted_price": 169.99,
      "link": "https://koffeecito.com/products/honduras?variant=44457040281921&currency=USD&utm_medium=product_sync&utm_source=google&utm_content=sag_organic&utm_campaign=sag_organic",
      "source": "koffeecito.com",
      "shipping": "Free shipping",
      "thumbnail": "<URL to image>"
    },
    ...
  ]
}