#
# # # # #

Google Shopping Product Scraper API

API:Scraper

US$12US$19

  • Google Shopping SERP scraper crawls the product information from Google Shopping channel. API allows to filter by platform country domain, user location, language. Users can scrape the product information using a keyword query. The scraped dataset include product name, pricing, shipping fees, brand name, product page URL etc.

  • The API is for personal use. For more details regarding API usage obligation & liability, please read Legal Terms of Service & Condition

1 Mins Video Google Sheets Demo


Google Shopping Product Scraper API Applied to Use in Google Sheets.

1 Mins Video Onsite App Demo


Google Shopping Product Scraper API Applied in BuyfromLo Onsite App.

Features

  • Google Shopping SERP scraper crawls the product information from Google Shopping channel.
  • API allows to filter by platform country domain, user location, language.
  • Users can scrape the product information using a keyword query.
  • The scraped dataset include product name, pricing, shipping fees, brand name, product page URL etc.

API Endpoint Specifications

  • Endpoint Path: /api/1/googleShoppingSERP
  • Type of Data: JSON & 5 requests per min
  • Data Source: Google Shopping
  • Request Limit: 500 requests/month
  • Script & Integration: Code to integrate with cURL, JS, Python, Ruby, Php, Node.js, Java, .NET, Rust, Go, Typescript

4.5 (Overall)

  • 5 stars - 38
  • 4 stars - 10
  • 3 stars - 3
  • 2 stars - 1
  • 1 star - 0

Latest Reviews

Google Shopping Product Scraper API Endpoint Basic Info

API Endpoint Path

required

Google Shopping SERP product data Scraper API

https://www.buyfromlo.com/api/1/googleShoppingSERP


Call Method

Required

GET

Type of Data Return

JSON

JSON output structured data for Google Shopping SERP product data


Available API Arguments & Parameters

Token

required

BUYFROMLO API token. Subscription API is available on www.buyfromlo.com/apis, and accessible to on-site APP on www.buyfromlo.com/app as well

keyword

required

Input a keyword in English


country

Optional

Enter the full name of the country in which location IP the product data would be scraped

language

Optional

Input the SERP language iso-code, such as en, ja, fr, etc

marketLocation

Optional

Enter Google Shopping marketplace country iso-geo code. Currently us and jp are available


Google Shopping SERP product data Scraper API

https://www.buyfromlo.com/api/1/googleShoppingSERP


Code Integration and Response

Python Code Sample


import requests

## Required components ##

token = "your buyfromlo token"
apiendpoint = "https://www.buyfromlo.com/api/1/googleShoppingSERP"
keyword = "the target product keyword"

## Optional Components ##
## United States by default ##
country = "target market"

## en by default ##
language = "en"

## us by default ##
marketLocation = "us"

## Call the api ##

response = requests.get(apiendpoint + "?token=" + token + "&keyword=" + keyword + "&country=" + country + "&language=" + language + "&marketLocation=" + marketLocation)
print(response.status)
print(response.json())
                        

JSON Response Sample


{
    "Keyword": "",
    "Location": "",
    "Google Shopping Domain": "",
    "Language": "",
    "Brand": "",
    "Title": "",
    "Shop URL": "",
    "Channel Domain": "",
    "Product ID": "",
    "Product Link": "",
    "Price": "",
    "Rating": "",
    "Reviews": "",
    "Image URL": "",
    "serp_machine_learning_model": ""
}