Product Pricing

The google_shopping_pricing source is designed to retrieve pages containing lists of offers available for a product ID of your choice.

Query parameters

ParameterDescriptionDefault Value

source

Data source. More info.

google_shopping_pricing

domain

Domain localization

com

query

UTF-encoded product code

-

start_page

Starting page number

1

pages

Number of pages to retrieve

1

locale

Accept-Language header value which changes your Google Shopping page web interface language. More info.

-

results_language

Results language. List of supported Google languages can be found here.

-

geo_location

The geographical location that the result should be adapted for. Using this parameter correctly is extremely important to get the right data. For more information, read about our suggested geo_location parameter structures here.

-

user_agent_type

Device type and browser. The full list can be found here.

desktop

render

Enables JavaScript rendering. More info.

callback_url

URL to your callback endpoint. More info.

-

parse

true will return parsed data.

-

- required parameter

Code examples

In the code example below, we make a request to retrieve the product pricing page for product ID 5007040952399054528 from Google Shopping on google.com.

{
    "source": "google_shopping_pricing", 
    "domain": "com", 
    "query": "5007040952399054528",
    "parse": true
}

The example above uses the Realtime integration method. If you would like to use some other integration method in your query (e.g. Push-Pull or Proxy Endpoint), refer to the integration methods section.

Output example

Below you can find a structured output example for google_shopping_pricing.

google_shopping_pricing structured output
{
    "results": [
        {
            "content": {
                "url": "https://www.google.com/shopping/product/6151552437452191901/offers?uule=w+CAIQICINdW5pdGVkIHN0YXRlcw&gl=us&hl=en",
                "title": "Mikasa BQ1100 Basketball Official",
                "rating": 4.5,
                "pricing": [
                    {
                        "price": 40.59,
                        "seller": "Epic Sports",
                        "details": "$10.76 delivery by Thu, May 1230-day returnsSave $10 on purchase of $100",
                        "currency": "USD",
                        "condition": "New",
                        "price_tax": 4.56,
                        "price_total": 55.91,
                        "seller_link": "/url?q=https://basketball.epicsports.com/prod/4090/mikasa-nfhs-bq-series-competition-29-5-basketball.html%3Ftrk%3D1600085031&sa=U&ved=0ahUKEwj7_4-C7NH3AhXr_rsIHUO-B5oQ2ykIJA&usg=AOvVaw31h8nkZdCHWHkzNbRVm58u",
                        "price_shipping": 10.76
                    },
                    {
                        "price": 44.99,
                        "seller": "School Specialty",
                        "details": "Spend $49 for free delivery30-day returns",
                        "currency": "USD",
                        "condition": "New",
                        "price_total": 59.82,
                        "seller_link": "/url?q=https://www.schoolspecialty.com/mikasa-official-composite-covered-basketball-orange-2019891%3Futm_source%3Dgoogle%26utm_medium%3Dorganic%26utm_campaign%3Dsurfaces&sa=U&ved=0ahUKEwj7_4-C7NH3AhXr_rsIHUO-B5oQ2ykIMw&usg=AOvVaw0TKR5fDKqFhURqr9y9qAHX",
                        "price_shipping": 4.88
                    },
                    {
                        "price": 52.28,
                        "details": "Free delivery",
                        "currency": "USD",
                        "condition": "New",
                        "price_tax": 4.64,
                        "price_total": 56.92,
                        "seller_link": "/url?q=https://www.discountbandit.com/mikasa-official-composite-covered-basketball-29-5-inch-2019891.html%3Fgs%3D1&sa=U&ved=0ahUKEwj7_4-C7NH3AhXr_rsIHUO-B5oQ2ykIOA&usg=AOvVaw0PcAVnSmsx2ZmH_6ZBNDDo",
                        "seller_shop": "Discount Bandit",
                        "seller_seller": "Home Accents",
                        "price_shipping": 0
                    },
                    {
                        "price": 54.88,
                        "seller": "myperfectbuy.com",
                        "details": "Free delivery by Wed, May 18Apply SAVE22",
                        "currency": "USD",
                        "condition": "New",
                        "price_tax": 4.68,
                        "price_total": 59.56,
                        "seller_link": "/url?q=https://myperfectbuy.com/products/mikasa-official-composite-covered-basketball-29-5-inch%3Fcurrency%3DUSD%26variant%3D41362244862148%26utm_medium%3Dcpc%26utm_source%3Dgoogle%26utm_campaign%3DGoogle%2520Shopping%26srsltid%3DAWLEVJwM0L_F4lJ46wfNwnvxZC8gQWMGnk3OxYEDt4Y3gWjTpycu592SRA4&sa=U&ved=0ahUKEwj7_4-C7NH3AhXr_rsIHUO-B5oQ2ykIOw&usg=AOvVaw1G5wfOLgBr82qqVaiFEkdt",
                        "price_shipping": 0
                    }
                ],
                "review_count": 0,
                "parse_status_code": 12000
            },
            "created_at": "2022-05-09 06:59:32",
            "updated_at": "2022-05-09 06:59:38",
            "page": 1,
            "url": "https://www.google.com/shopping/product/6151552437452191901/offers?uule=w+CAIQICINdW5pdGVkIHN0YXRlcw&gl=us&hl=en",
            "job_id": "6929323960567862273",
            "status_code": 200,
            "parser_type": ""
        }
    ]
}

Last updated