
Free Google Shopping Scraper - Extract all offers from any SKU
Pricing
$5.00 / 1,000 google-skus

Free Google Shopping Scraper - Extract all offers from any SKU
Grab all offers from all sellers of a Google Shopping SKU. Whether you're monitoring competitor prices, optimizing your pricing strategy, or tracking market trends, this scraper delivers the insights you need at scale.
0.0 (0)
Pricing
$5.00 / 1,000 google-skus
2
Total users
1
Monthly users
1
Runs succeeded
>99%
Last modified
2 days ago
You can access the Free Google Shopping Scraper - Extract all offers from any SKU programmatically from your own applications by using the Apify API. You can also choose the language preference from below. To use the Apify API, youโll need an Apify account and your API token, found in Integrations settings in Apify Console.
1import { ApifyClient } from 'apify-client';2
3// Initialize the ApifyClient with your Apify API token4// Replace the '<YOUR_API_TOKEN>' with your token5const client = new ApifyClient({6 token: '<YOUR_API_TOKEN>',7});8
9// Prepare Actor input10const input = {11 "skus": [12 {13 "sku": "2813164546123018462",14 "country_code": "NL"15 },16 {17 "sku": "1873897992773686973",18 "country_code": "NL"19 },20 {21 "sku": "16616964913872618142",22 "country_code": "NL"23 },24 {25 "sku": "4917986331764372081",26 "country_code": "NL"27 },28 {29 "sku": "6712525183518393548",30 "country_code": "NL"31 },32 {33 "sku": "10957442292382693073",34 "country_code": "NL"35 },36 {37 "sku": "5541910804197017236",38 "country_code": "NL"39 },40 {41 "sku": "8632126613403425312",42 "country_code": "NL"43 },44 {45 "sku": "17972981399541545875",46 "country_code": "NL"47 },48 {49 "sku": "9771014107160475560",50 "country_code": "NL"51 }52 ]53};54
55// Run the Actor and wait for it to finish56const run = await client.actor("s-r/free-google-shopping-scraper---extract-all-offers-from-any-sku").call(input);57
58// Fetch and print Actor results from the run's dataset (if any)59console.log('Results from dataset');60console.log(`๐พ Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);61const { items } = await client.dataset(run.defaultDatasetId).listItems();62items.forEach((item) => {63 console.dir(item);64});65
66// ๐ Want to learn more ๐? Go to โ https://docs.apify.com/api/client/js/docs
Free Google Shopping Scraper - Extract all offers from any SKU API in JavaScript
The Apify API client for JavaScript is the official library that allows you to use Free Google Shopping Scraper - Extract all offers from any SKU API in JavaScript or TypeScript, providing convenience functions and automatic retries on errors.
Install the apify-client
$npm install apify-client
Other API clients include:
Free Google Shopping Scraper - Extract all offers from any SKU API in Python
Free Google Shopping Scraper - Extract all offers from any SKU API through CLI
Free Google Shopping Scraper - Extract all offers from any SKU OpenAPI definition
Free Google Shopping Scraper - Extract all offers from any SKU API