Shopping Results

Scrape what other companies are selling on Google.

Based on your query, Google Search may display a shopping container with various items that are being sold on other e-commerce websites. If these results are available on the page, the Google Scraper API will parse them and they will be returned under the shopping_results section of the response body. Each shopping item will be displayed as an Object and will include:

Element
Type
Description

position

Integer

The position of the result

block_position

String

The position in the page of the result. Can be top for example

source_link

String

Link to the source

source

String

Name of the source

title

String

Title of the page

price

String

The price

extracted_price

Double

The numerical value of the price

extensions

Array

List of strings with the extensions

link

String

Querystring to access on Google

vendor_link

String

Link to the vendor

thumbnail

String

The thumbnail image base64 encoded

Shopping Results Request Example

Request Example That Returns Shopping Elements

GET https://serpapi.webscrapingapi.com/v1?engine=google&api_key=<YOUR_API_KEY>&q=buy%20laptop

This is a basic GET request that returns the shopping results found on the Google page.

Query Parameters

Name
Type
Description

q*

String

buy laptop

api_key*

String

<YOUR_API_KEY>

Scrape Shopping Results from Google

Last updated