Google Product API

Google Product API uses /api/v1/search?engine=google_product API endpoint to scrape real-time results.

You can obtain product_id and prds parameters from the Google Shopping Search API.

API Parameters

Search Query

  • Name
    product_id
    Required
    Required
    Description

    Parameter defines the product_id you want to search. You can find these values in JSON responses or in google shopping page that appears in URL: https://www.google.com/shopping/product/product_id.

  • Name
    prds
    Required
    Optional
    Description

    Parameter defines the product you want to search, when product_id is equal to 1. For example: https://www.google.com/shopping/product/1?prds=prds&gl=us&hl=en&ie=UTF-8.
    Note: this parameter is only used when product_id is equal to 1.

Geographic Location

  • Name
    location
    Required
    Optional
    Description

    Parameter defines from where you want the search to originate. If several locations match the location requested, we'll pick the most popular one. Head to the Locations API if you need more precise control.

  • Name
    uule
    Required
    Optional
    Description

    Parameter is the Google encoded location you want to use for the search. SearchApi automatically generated the uule parameter when you use the location parameter but we allow you to overwrite it directly. uule and location parameters can't be used together.

Localization

  • Name
    google_domain
    Required
    Optional
    Description

    The default parameter google.com defines the Google domain of the search. Check the full list of supported Google google_domain domains.

  • Name
    gl
    Required
    Optional
    Description

    The default parameter us defines the country of the search. Check the full list of supported Google gl countries.

  • Name
    hl
    Required
    Optional
    Description

    The default parameter en defines the interface language of the search. Check the full list of supported Google hl languages.

Engine

  • Name
    engine
    Required
    Required
    Description

    Parameter defines an engine that will be used to retrieve real-time data. It must be set to google_product.

API key

  • Name
    api_key
    Required
    Required
    Description

    The api_key authenticates your requests. Use it as a query parameter (https://www.searchapi.io/api/v1/search?api_key=YOUR_API_KEY) or in the Authorization header (Bearer YOUR_API_KEY).

API Examples

Full Response

Full Response
GET
https://www.searchapi.io/api/v1/search?engine=google_product&product_id=11825672369752322331
Request
import requests

url = "https://www.searchapi.io/api/v1/search"
params = {
  "engine": "google_product",
  "product_id": "11825672369752322331"
}

response = requests.get(url, params = params)
print(response.text)
Response
{
  "search_metadata": {
    "id": "search_a6KXlErN3Ej2f5aQpYvP850b",
    "status": "Success",
    "created_at": "2023-07-31T13:28:18Z",
    "request_time_taken": 1.25,
    "parsing_time_taken": 0.07,
    "total_time_taken": 1.33,
    "request_url": "https://www.google.com/shopping/product/11825672369752322331?gl=us&hl=en&ie=UTF-8",
    "html_url": "https://www.searchapi.io/api/v1/searches/search_a6KXlErN3Ej2f5aQpYvP850b.html",
    "json_url": "https://www.searchapi.io/api/v1/searches/search_a6KXlErN3Ej2f5aQpYvP850b"
  },
  "search_parameters": {
    "engine": "google_product",
    "product_id": "11825672369752322331",
    "google_domain": "google.com",
    "hl": "en",
    "gl": "us"
  },
  "search_information": {
    "detected_location": "New York, NY, NY"
  },
  "product": {
    "product_id": "11825672369752322331",
    "title": "Apple iPhone XR - Red - 64 GB - Unlocked",
    "reviews": 55360,
    "rating": 4.6,
    "reviews_histogram": {
      "1": 2345,
      "2": 984,
      "3": 2057,
      "4": 7615,
      "5": 42359
    },
    "highlights": [
      "The Largest LCD ever on an iPhone",
      "Industry-leading Colour accuracy",
      "Wide colour gamut",
      "True Tone",
      "Tap to wake"
    ],
    "description": "The iPhone XR features a stunning 6.1 liquid retina display - the most advanced LCD in the industry. Face ID lets you securely unlock your iPhone, log in to apps, and pay with just a glance. The A12 Bionic chip with next-generation Neural Engine uses real-time machine learning to transform the way you experience photos, gaming, augmented reality, and more. Smart HDR, adjustable depth of field, enhanced bokeh effect, enhanced portrait-mode selfies and more low-light detail unlock creative possibilities and a new era of photography. And iOS 12—the most advanced mobile operating system—with powerful new tools that make iPhone more personal than ever.",
    "variations": {
      "current": {
        "title": "Red",
        "image": "https://encrypted-tbn0.gstatic.com/shopping?q=tbn:ANd9GcQIAkcTDDo3u-_w63onSg3iZBiRapKvKHxTAKBBtbdeRA-qA-TOXDXw_gRlv5FjhJ6ZkB4x&usqp=CAY"
      },
      "options": [
        {
          "product_id": "138063969843802284",
          "title": "Red. Not available with current configuration.",
          "link": "https://www.google.com/shopping/product/138063969843802284?hl=en&ie=UTF-8&gl=us&prds=opd:8740609057154060728,rsk:PC_15653290272112071452&sa=X&ved=0ahUKEwjn_Z27hrmAAxVHjYkEHU6SB_kQlIUHCEAoAQ",
          "image": "https://encrypted-tbn3.gstatic.com/shopping?q=tbn:ANd9GcTJrEETOuds266xLtQGSGQhtWC7jVmslrfwKjMC93qkSQb_m6QHrw8mshp6iMYsPlrS2cuU&usqp=CAY"
        },
        {
          "product_id": "4989965379181069775",
          "title": "Black",
          "link": "https://www.google.com/shopping/product/4989965379181069775?hl=en&ie=UTF-8&gl=us&prds=opd:8740609057154060728,rsk:PC_15653290272112071452&sa=X&ved=0ahUKEwjn_Z27hrmAAxVHjYkEHU6SB_kQlIUHCEEoAg",
          "image": "https://encrypted-tbn3.gstatic.com/shopping?q=tbn:ANd9GcTKNaPfkhMDOEB3H6FVQO27Uzi3JDd56KRkfrMZA14WyXb43fSrIrYzC53cYezY0zhF5AXE&usqp=CAY"
        },
        ...
      ]
    },
    "configurations": [
      {
        "title": "Capacity:",
        "options": [
          {
            "title": "128 GB",
            "link": "https://www.google.com/shopping/product/7235374235700150723?hl=en&ie=UTF-8&gl=us&prds=opd:8740609057154060728,rsk:PC_15653290272112071452&sa=X&ved=0ahUKEwjn_Z27hrmAAxVHjYkEHU6SB_kQlIUHCEkoAQ"
          },
          {
            "title": "256 GB",
            "link": "https://www.google.com/shopping/product/16427742393083627274?hl=en&ie=UTF-8&gl=us&prds=opd:8740609057154060728,rsk:PC_15653290272112071452&sa=X&ved=0ahUKEwjn_Z27hrmAAxVHjYkEHU6SB_kQlIUHCEooAg"
          }
        ]
      },
      {
        "title": "Connectivity:",
        "options": [
          {
            "title": "AT&T",
            "link": "https://www.google.com/shopping/product/10526472571757371526?hl=en&ie=UTF-8&gl=us&prds=opd:8740609057154060728,rsk:PC_15653290272112071452&sa=X&ved=0ahUKEwjn_Z27hrmAAxVHjYkEHU6SB_kQlIUHCEwoAA"
          },
          {
            "title": "AT&T - CDMA/GSM",
            "link": "https://www.google.com/shopping/product/2472809699088023432?hl=en&ie=UTF-8&gl=us&prds=opd:8740609057154060728,rsk:PC_15653290272112071452&sa=X&ved=0ahUKEwjn_Z27hrmAAxVHjYkEHU6SB_kQlIUHCE0oAQ"
          },
          ...
        ]
      }
    ],
    "extensions": [
      "Smartphone",
      "Dual SIM",
      "4G",
      "With Wireless Charging",
      "Unlocked",
      "iOS",
      "GSM",
      "CDMA",
      "Facial Recognition",
      "With OLED Display"
    ],
    "images": [
      "https://encrypted-tbn0.gstatic.com/shopping?q=tbn:ANd9GcQsl51gOsQ3_uqqQ5JMj9P6yX4cBziyqNt4ZJChalckr_gUVDUPEa63oiGyoFBRXMmY6wsGh-E",
      "https://encrypted-tbn3.gstatic.com/shopping?q=tbn:ANd9GcSEZfNjPMmAA6L0BToYZz2_9sYRGB5gQekkYFjLcToDeGm4rzOwIxsY1xtLwNHvpLLQyYTjny2olQ",
      "https://encrypted-tbn0.gstatic.com/shopping?q=tbn:ANd9GcSHl6FiN_hz7xPsU92GSuawaJNX4xsY9Ak4-Gn1CG-EF349dyKQ5DZGOoID8NGJJXRW3M-bv45SRDA",
      ...
    ]
  },
  "offers": [
    {
      "position": 1,
      "link": "https://reebelo.com/collections/apple-iphone-xr?color=Red&condition=Good&storage=64GB&cellularStatus=Unlocked&cellularNetwork=CDMA&networkProvider=Verizon&serviceProvider=Unlocked&id=a2889&srsltid=ASuE1wTk3FZazDt463VcSlUKHn9WAvnRdXN-yyggLGkBRg0VRaqCbjQ2Q9s&sa=U&ved=0ahUKEwjn_Z27hrmAAxVHjYkEHU6SB_kQ2ykIhAE&usg=AOvVaw2KUYT3osybk3ZSNanqt9LW",
      "price": "$209.95",
      "extracted_price": 209.95,
      "delivery_price": "$0.00",
      "extracted_delivery_price": 0,
      "tax_price": "$18.63",
      "extracted_tax_price": 18.63,
      "total_price": "$228.58",
      "extracted_total_price": 228.58,
      "delivery_return": "Free 30-day returns",
      "merchant": {
        "name": "Reebelo USA",
        "rating": 4.8,
        "reviews": 1100,
        "link": "https://www.google.com/shopping/ratings/account/metrics?q=reebelo.com&c=US&v=19&hl=en&sa=U&ved=0ahUKEwjn_Z27hrmAAxVHjYkEHU6SB_kQlZ4BCIsB&usg=AOvVaw01ktPGT6Q_yjcVgHdEQqWq",
        "badge": "Top Quality Store"
      },
      "tag": "GREAT PICK"
    },
    ...
  ],
  "offers_link": "https://www.google.com/shopping/product/11825672369752322331/offers?hl=en&ie=UTF-8&gl=us&prds=eto:9281764214640852388_0;11923908283261714916_0;8557705224801861601_0,pid:8740609057154060728,rsk:PC_15653290272112071452&sa=X&ved=0ahUKEwjn_Z27hrmAAxVHjYkEHU6SB_kQoLAGCK0B",
  "typical_prices": {
    "low_price": "$209.95",
    "extracted_low_price": 209.95,
    "high_price": "$343.99",
    "extracted_high_price": 343.99,
    "popular_choice": "Reebelo USA",
    "popular_choice_link": "https://reebelo.com/collections/apple-iphone-xr?color=Red&condition=Good&storage=64GB&cellularStatus=Unlocked&cellularNetwork=CDMA&networkProvider=Verizon&serviceProvider=Unlocked&id=a2889&srsltid=ASuE1wTk3FZazDt463VcSlUKHn9WAvnRdXN-yyggLGkBRg0VRaqCbjQ2Q9s&sa=U&ved=0ahUKEwjn_Z27hrmAAxVHjYkEHU6SB_kQx50ICDE&usg=AOvVaw1PgXorSnvSXub9stG4ylVV",
    "popular_choice_price": "$209.95 at",
    "extracted_popular_choice_price": 209.95
  },
  "review_results": {
    "reviews": [
      {
        "username": "member-9e2f5",
        "source": "influenster.com",
        "date": "January 17, 2023",
        "rating": 4,
        "text": "The Apple iPhone XR is a budget-friendly version of the iPhone XS and XS Max that was released in September 2018. It features a 6.1-inch LCD display, A12 Bionic chip, 64GB of storage, and a 12MP single-lens camera system. Here are some pros and cons of the iPhone XR: Pros: Affordable: The iPhone XR is more affordable than the XS and XS Max, making it a more accessible option for many consumers. Display: The 6.1-inch LCD display is bright and vibrant, with accurate color reproduction. Camera: The 12MP camera takes great photos, with good color and detail. It also has a Portrait mode that can create bokeh effect with a single camera lens. Performance: The A12 Bionic chip provides fast and smooth performance, making it a great choice for gaming and other demanding tasks. Battery life: The iPhone XR has a long-lasting battery life, which can last for a full day of heavy use. Face ID: The Face ID feature is fast, accurate and more secure than Touch ID Cons: Lack of a dual-lens camera system: The XR has only one lens, whereas the XS and XS Max have two lenses. This means that it doesn't have the same level of zoom and bokeh capabilities. LCD display: While the LCD display is bright and vibrant, it's not as high resolution as the OLED display on the XS and XS Max. No 3D Touch: Unlike previous iPhone models, the XR doesn't have 3D Touch, which can be inconvenient for some users. Lack of a headphone jack: The XR, like other recent iPhone models, does not include a headphone jack, which could be inconvenient for some users. Overall, the iPhone XR is a great budget-friendly option for those looking for a new iPhone. It has a good camera, fast performance, "
      }
    ],
    "reviews_link": "https://www.google.com/shopping/product/11825672369752322331/reviews?hl=en&ie=UTF-8&gl=us&prds=pid:8740609057154060728,rsk:PC_15653290272112071452&sa=X&ved=0ahUKEwjn_Z27hrmAAxVHjYkEHU6SB_kQqSQIfg",
    "filters": [
      {
        "title": "Easy to use",
        "link": "https://www.google.com/shopping/product/11825672369752322331/reviews?hl=en&ie=UTF-8&gl=us&prds=pid:8740609057154060728,rnum:20,rsk:PC_15653290272112071452,tag:84",
        "description": "View 1975 reviews about Easy to use. 94% of the reviews are positive.",
        "reviews": 1975
      },
      ...
    ]
  },
  "specifications": [
    {
      "category": "General",
      "attributes": [
        {
          "name": "Product Type",
          "value": "Smartphone"
        },
        {
          "name": "Manufacturer Model Number",
          "value": "A1984"
        },
        ...
      ]
    }
  ],
  "specifications_link": "https://www.google.com/shopping/product/11825672369752322331/specs?hl=en&ie=UTF-8&gl=us&prds=pid:8740609057154060728,rj:1,rsk:PC_15653290272112071452",
  "related_products": [
    {
      "product_id": "10931424950753405139",
      "title": "OtterBox Statement Series Case ...",
      "link": "https://www.google.com/shopping/product/10931424950753405139?hl=en&ie=UTF-8&gl=us&prds=epd:16968805089914314131,oid:16968805089914314131,pid:8655146157454513767,rsk:PC_16504054598561360613&sa=X&ved=0ahUKEwjn_Z27hrmAAxVHjYkEHU6SB_kQmsYDCLYB",
      "price": "$25.99",
      "extracted_price": 25.99,
      "rating": 4,
      "reviews": 53,
      "thumbnail": "https://encrypted-tbn0.gstatic.com/shopping?q=tbn:ANd9GcSN3VxDazexB7MbikhQTH5MA7mSo4YPMqmIuaODNmu7ZBoP0zINt0Yw45GWUw&usqp=CAY"
    },
    {
      "product_id": "4939054270936252258",
      "title": "For iPhone XR Screen ...",
      "link": "https://www.google.com/shopping/product/4939054270936252258?hl=en&ie=UTF-8&gl=us&prds=epd:15998319579374620736,oid:15998319579374620736,pid:12657087611641388517&sa=X&ved=0ahUKEwjn_Z27hrmAAxVHjYkEHU6SB_kQmsYDCLoB",
      "price": "$31.49",
      "extracted_price": 31.49,
      "thumbnail": "https://encrypted-tbn2.gstatic.com/shopping?q=tbn:ANd9GcTdt2xcdo3XJ-dwGC8dJcx8wst9i2m4Bs8qbdmDYKKMvg7JWBDIUsXMmZAzB4I&usqp=CAY"
    },
    ...
  ]
}

Prds parameter

Prds parameter
GET
https://www.searchapi.io/api/v1/search?engine=google_product&prds=eto%3A5782476131757610287_0%2Cpid%3A656108656804486028%2Crsk%3APC_5425110223594065250&product_id=1
Request
import requests

url = "https://www.searchapi.io/api/v1/search"
params = {
  "engine": "google_product",
  "product_id": "1",
  "prds": "eto:5782476131757610287_0,pid:656108656804486028,rsk:PC_5425110223594065250"
}

response = requests.get(url, params = params)
print(response.text)
Response
{
  "search_metadata": {
    "id": "search_e4Y69DMlgLWRiqnpXxN0K2Vb",
    "status": "Success",
    "created_at": "2024-01-23T15:47:57Z",
    "request_time_taken": 0.93,
    "parsing_time_taken": 0.06,
    "total_time_taken": 0.99,
    "request_url": "https://www.google.com/shopping/product/1?prds=eto:5782476131757610287_0,pid:656108656804486028,rsk:PC_5425110223594065250&gl=us&hl=en&ie=UTF-8",
    "html_url": "https://www.searchapi.io/api/v1/searches/search_e4Y69DMlgLWRiqnpXxN0K2Vb.html",
    "json_url": "https://www.searchapi.io/api/v1/searches/search_e4Y69DMlgLWRiqnpXxN0K2Vb"
  },
  "search_parameters": {
    "engine": "google_product",
    "product_id": "1",
    "google_domain": "google.com",
    "hl": "en",
    "gl": "us",
    "prds": "eto:5782476131757610287_0,pid:656108656804486028,rsk:PC_5425110223594065250"
  },
  "search_information": {
    "detected_location": "New York"
  },
  "product": {
    "product_id": "1",
    "title": "Palmolive Dish Spray, Ultra, Spray Away - 16.9 fl oz",
    "reviews": 280,
    "rating": 4.2,
    "reviews_histogram": {
      "1": 18,
      "2": 13,
      "3": 18,
      "4": 69,
      "5": 162
    },
    "highlights": [
      "Convenient and easy to use - simply spray onto dishes, pots and pans, Wipe and rinse away",
      "Spray-activated foam instantly cuts grease on contact (no water needed)",
      "96% biodegradable formula; free from parabens and phosphates",
      "Tough on grease, Gentle on planet"
    ],
    "description": "Palmolive Ultra Spray away dish soap Spray is a convenient way to quickly and easily clean your dishes, pots and pans. The powerful spray-activated foam instantly cuts grease on contact, and quickly dissolves stuck on and baked on grease. Simply spray onto dishes, wipe and rinse off.",
    "images": [
      "https://encrypted-tbn3.gstatic.com/shopping?q=tbn:ANd9GcReu5ZFkD9U8Z4wOMZyASe8zZ46ALHkrbYbkbua5G3o1JEXfII1Qwho_sIBtfdUE76wZM2o2AL7kYb_GcQjDdXqU0LrRHZzAw&usqp=CAY",
      "https://encrypted-tbn3.gstatic.com/shopping?q=tbn:ANd9GcRNcLBqNsJpOB6-OtZk7eE6fxZFtNond3r1VKmJyNKjiVJms56sdpYpye7zpTUZ_mX_nUkMANWbn3DorpyHU3c3-KqQMwgjiQ&usqp=CAY",
      ...
    ]
  },
  "offers": [
    {
      "position": 1,
      "link": "https://marketcol.com/products/palmolive-ultra-spray-away-dish-soap-spray-500ml?variant=43910422593781&currency=USD&utm_medium=product_sync&utm_source=google&utm_content=sag_organic&utm_campaign=sag_organic&srsltid=AfmBOoqzZED1-GWlLQEvULfbI1f8y9EH1eeSA7dE2oRrGhrgzVr28tlgopg&opi=95576897&sa=U&ved=0ahUKEwjn4Pf27fODAxVcPEQIHf81DdMQ2ykITQ&usg=AOvVaw2dCiY3oeuM8uUnLPnllgMj",
      "price": "$4.99",
      "extracted_price": 4.99,
      "delivery_price": "$7.95",
      "extracted_delivery_price": 7.95,
      "tax_price": "$0.44",
      "extracted_tax_price": 0.44,
      "total_price": "$13.38",
      "extracted_total_price": 13.38,
      "delivery_return": "30-day returns",
      "merchant": {
        "name": "MarketCOL",
        "link": "https://www.google.com/shopping/ratings/account/metrics?q=marketcol.com&c=US&v=19&hl=en&opi=95576897&sa=U&ved=0ahUKEwjn4Pf27fODAxVcPEQIHf81DdMQlZ4BCE8&usg=AOvVaw0um--MrcZAs_BhNrFvHZyo"
      }
    },
    ...
  ],
  "offers_link": "https://www.google.com/shopping/product/11774585348274502422/offers?gl=us&hl=en&prds=eto:5782476131757610287_0;4791947085411194175_0;10881129583332382523_0,pid:656108656804486028,rsk:PC_5425110223594065250&sa=X&ved=0ahUKEwjn4Pf27fODAxVcPEQIHf81DdMQoLAGCGU",
  "typical_prices": {
    "low_price": "$2",
    "extracted_low_price": 2,
    "high_price": "$8",
    "extracted_high_price": 8,
    "popular_choice": "MarketCOL",
    "popular_choice_link": "https://marketcol.com/products/palmolive-ultra-spray-away-dish-soap-spray-500ml?variant=43910422593781&currency=USD&utm_medium=product_sync&utm_source=google&utm_content=sag_organic&utm_campaign=sag_organic&srsltid=AfmBOoqzZED1-GWlLQEvULfbI1f8y9EH1eeSA7dE2oRrGhrgzVr28tlgopg&opi=95576897&sa=U&ved=0ahUKEwjn4Pf27fODAxVcPEQIHf81DdMQx50ICCc&usg=AOvVaw2r-TqdC7SqxaeB5xOvaux7",
    "popular_choice_price": "$4.99 at",
    "extracted_popular_choice_price": 4.99
  },
  "review_results": {
    "reviews": [
      {
        "username": "Don Crocker",
        "source": "Google",
        "title": "Needs work from Colgate",
        "date": "May 23, 2022",
        "rating": 2,
        "text": "The product is made in Greece (ingredients have to be legal to use in the US and Canada as this is a bilingual package, required by Canadian law).\n\nWhen I used it, the smell reminded me of a pine cleaning solution (Pine Forest Ajax was a winner that was short lived in the 70's).  I did complain to Colgate who sent me a coupon for another bottle.\n\nWhat I do NOW, is make my own dish spray as I add about 1 to 1.5 oz. of a competitor's ultra product to a nearly full bottle of water (this bottle design works as the competitors is too fat for my large hands), shake and I have spray.  I do keep the original liquid on the counter for when something needs it but the spray works for basic soils and some grease. \n\nIf you use the ultra's that are not, like sister label Ajax, you might need more liquid.  If the solution won't spray, it's too thick and needs more water (small quantities at a time) to thin it out.  Once you know what works, make your own and SAVE!\n\nI'm not a fan of Colgate's dish care and sad as I used to buy their products.  Crystal White Octagon was basic and cheap and Dermassage, if you can find it, is repackaged Ajax Lemon per their MSDS for it.  \n\nPart of the problem is that Colgate is not putting much into household anymore as evidenced by the now cheap detergents they sold off like Fab.   BTW, Palmolive Scrub was very effective and had they called it Ajax instead, might still be around.  If you need similar, Soft Scrub does well for things like Corningware but be gentle scrubbing.\n\nI could go on but won't.  I will say that something that smelled closer to the legendary Palmolive might have helped plus they had no refills.  At $4, not their best bargain."
      }
    ],
    "reviews_link": "https://www.google.com/shopping/product/11774585348274502422/reviews?gl=us&hl=en&prds=pid:656108656804486028,rsk:PC_5425110223594065250&sa=X&ved=0ahUKEwjn4Pf27fODAxVcPEQIHf81DdMQqSQIRw",
    "filters": [
      {
        "title": "Cleans well",
        "link": "https://www.google.com/shopping/product/11774585348274502422/reviews?gl=us&hl=en&prds=pid:656108656804486028,rnum:20,rsk:PC_5425110223594065250,tag:2438",
        "description": "View 61 reviews about Cleans well. 88% of the reviews are positive.",
        "reviews": 61
      },
      ...
    ]
  },
  "specifications": [
    {
      "category": "General",
      "attributes": [
        {
          "name": "Units in Package",
          "value": "1"
        },
        {
          "name": "Unit Size",
          "value": "16.9 fl oz"
        },
        ...
      ]
    }
  ],
  "related_products": [
    {
      "product_id": "7646251863946464003",
      "title": "Palmolive Ultra Dish Liquid ...",
      "link": "https://www.google.com/shopping/product/7646251863946464003?gl=us&hl=en&prds=epd:11496179834660969564,oid:11496179834660969564,pid:11622913492332295973,rsk:PC_15109176162629984695&sa=X&ved=0ahUKEwjn4Pf27fODAxVcPEQIHf81DdMQrhIIbw",
      "price": "$3.98",
      "extracted_price": 3.98,
      "rating": 4.5,
      "reviews": 2808,
      "thumbnail": "https://encrypted-tbn0.gstatic.com/shopping?q=tbn:ANd9GcQSym9OtwrxXG7FjLn1oUMwSGszbPcOPzK8JKxya2A-k-bQFTsXWOsMAUuuuyfSSLv3L7fWjcybd5Qz3282qeAZ3MijxjqjkmAtlBFNVspDT1tlIq5Sf4G9&usqp=CAY"
    },
    ...
  ]
}
Related Products
GET
https://www.searchapi.io/api/v1/search?engine=google_product&product_id=445989611894468931
Request
import requests

url = "https://www.searchapi.io/api/v1/search"
params = {
  "engine": "google_product",
  "product_id": "445989611894468931"
}

response = requests.get(url, params = params)
print(response.text)
Response
{
  ...
  "related_products": [
    {
      "prds": "17284043985698160008",
      "title": "Beats Solo3 Wireless Headphones ...",
      "link": "https://www.google.com/shopping/product/1?hl=en&gl=us&prds=epd:17284043985698160008,oid:17284043985698160008,pid:17284043985698160008&sa=X&ved=0ahUKEwihtqjKh7mAAxVMLUQIHcDwCh0QrhII6wI",
      "price": "$131.18",
      "extracted_price": 131.18,
      "thumbnail": "https://encrypted-tbn3.gstatic.com/shopping?q=tbn:ANd9GcTs6LZuHLEZicoCbtptiA-XI8EvVmHUx9XIyWrtf74rPQlFZ99lPBaYfMC8ysVUKlN3I78Ixv4gvwlmkd3_j_isfbk_YUQW3DyQt9Z4bemF-HUSlwDGnRp-&usqp=CAY"
    },
    {
      "prds": "15703314881590984756,rsk:PC_1918205548965792255",
      "title": "Beats Solo3 Wireless On-Ear ...",
      "link": "https://www.google.com/shopping/product/1?hl=en&gl=us&prds=epd:15703314881590984756,oid:15703314881590984756,pid:15703314881590984756,rsk:PC_1918205548965792255&sa=X&ved=0ahUKEwihtqjKh7mAAxVMLUQIHcDwCh0QrhII7gI",
      "price": "$164.11",
      "extracted_price": 164.11,
      "rating": 4.5,
      "reviews": 31340,
      "thumbnail": "https://encrypted-tbn2.gstatic.com/shopping?q=tbn:ANd9GcTMZDXq3H3WbKoFQzK8ny_wK0vkmUsgIE5UhdCsJUESS9_zgL_O2pvVwhWMFL7v1mhCO3eNLXkeUokbrkxcFBAe8q4jr8Zs5qz6gnAqrWw&usqp=CAY"
    },
    {
      "prds": "9616815575071783972",
      "title": "Beats solo 3 wireless Gold SEALED",
      "link": "https://www.google.com/shopping/product/1?hl=en&gl=us&prds=epd:9616815575071783972,oid:9616815575071783972,pid:9616815575071783972&sa=X&ved=0ahUKEwihtqjKh7mAAxVMLUQIHcDwCh0QrhII8gI",
      "price": "$210.00",
      "extracted_price": 210,
      "thumbnail": "https://encrypted-tbn2.gstatic.com/shopping?q=tbn:ANd9GcRBkJ8BJ4EJf9QYsuBZeo6yAiSAXrtyBrPGWwfJPTTh9hzNdEles18aPAM3sh5H-Oq1KM8dd1dDZ3zJ8V12170SKt62hy_dSn5UTJcJ7X33FMMyNKV7NAC2Qg&usqp=CAY"
    },
    {
      "prds": "2340866801794696361",
      "title": "Beats solo 3 wireless Silver SEALED",
      "link": "https://www.google.com/shopping/product/1?hl=en&gl=us&prds=epd:2340866801794696361,oid:2340866801794696361,pid:2340866801794696361&sa=X&ved=0ahUKEwihtqjKh7mAAxVMLUQIHcDwCh0QrhII9QI",
      "price": "$210.00",
      "extracted_price": 210,
      "thumbnail": "https://encrypted-tbn1.gstatic.com/shopping?q=tbn:ANd9GcTt6Nkym7-3G-moRb9uvjxUnN8sEhtKGnTck6xFKhhabyhxytiK8TZkSoFW1HjccwfLTdTh0qtF5kZNphX1wwTBqOsOltLBTyZrLE1ehqoHDJB59EM_4Quanw&usqp=CAY"
    },
    {
      "prds": "9665777581758492373",
      "title": "Beats Solo3 Wireless On-Ear ...",
      "link": "https://www.google.com/shopping/product/1?hl=en&gl=us&prds=epd:9665777581758492373,oid:9665777581758492373,pid:9665777581758492373&sa=X&ved=0ahUKEwihtqjKh7mAAxVMLUQIHcDwCh0QrhII-AI",
      "price": "$173.49",
      "extracted_price": 173.49,
      "thumbnail": "https://encrypted-tbn3.gstatic.com/shopping?q=tbn:ANd9GcTUyJMdAGfBu9Di4GrKjcnlJ1DTrM-pNv8BKPvmsU19wevYihdaOdomPKETlLM6_gTpKC8hTEGUdnDZF7OLCeI0ntOIs1Dc-qgk0CI19wrkY7yktji5MBCd&usqp=CAY"
    }
    ...
  ]
}

Typical Prices

Typical Prices
GET
https://www.searchapi.io/api/v1/search?engine=google_product&product_id=5253447980445207469
Request
import requests

url = "https://www.searchapi.io/api/v1/search"
params = {
  "engine": "google_product",
  "product_id": "5253447980445207469"
}

response = requests.get(url, params = params)
print(response.text)
Response
{
  "typical_prices": {
    "low_price": "$1,099.99",
    "extracted_low_price": 1099.99,
    "high_price": "$1,299.99",
    "extracted_high_price": 1299.99,
    "popular_choice": "Best Buy",
    "popular_choice_link": "https://www.bestbuy.com/site/macbook-pro-13-3-laptop-apple-m2-chip-8gb-memory-256gb-ssd-latest-model-silver/6509654.p%3FskuId%3D6509654%26ref%3D212%26loc%3D1&sa=U&ved=0ahUKEwiK99C1sYmAAxVGD1kFHXnODZsQx50ICDs&usg=AOvVaw3xwQ6tR4hUB-bwHe6I3jNn",
    "popular_choice_price": "$1,099.00 at",
    "extracted_popular_choice_price": 1099
  }
}

Offers

Offers
GET
https://www.searchapi.io/api/v1/search?engine=google_product&product_id=5253447980445207469
Request
import requests

url = "https://www.searchapi.io/api/v1/search"
params = {
  "engine": "google_product",
  "product_id": "5253447980445207469"
}

response = requests.get(url, params = params)
print(response.text)
Response
{
  ...
  "offers": [
    {
      "position": 1,
      "link": "https://www.bestbuy.com/site/macbook-pro-13-3-laptop-apple-m2-chip-8gb-memory-256gb-ssd-latest-model-silver/6509654.p?skuId=6509654&ref=212&loc=1&sa=U&ved=0ahUKEwjczsqZiLmAAxVLIzQIHTZkAsUQ2ykIggE&usg=AOvVaw0NUOJeQCD9DbnODV1SDkBl",
      "price": "$1,099.00",
      "extracted_price": 1099,
      "original_price": "$1,299.00",
      "extracted_original_price": 1299,
      "delivery_price": "$0.00",
      "extracted_delivery_price": 0,
      "tax_price": "$97.54",
      "extracted_tax_price": 97.54,
      "total_price": "$1,196.54",
      "extracted_total_price": 1196.54,
      "delivery_return": "Free 15-day returns",
      "merchant": {
        "name": "Best Buy",
        "rating": 4.7,
        "reviews": 494,
        "link": "https://www.google.com/shopping/ratings/account/metrics?q=bestbuy.com&c=US&v=19&hl=en&sa=U&ved=0ahUKEwjczsqZiLmAAxVLIzQIHTZkAsUQlZ4BCIgB&usg=AOvVaw2TbloULMg1J-G_NlBZscf4",
        "badge": "Top Quality Store"
      },
      "tag": "GREAT PICK"
    },
    {
      "position": 2,
      "link": "https://www.apple.com/us/shop/go/product/MNEP3?cid=aos-us-seo-pla&sa=U&ved=0ahUKEwjczsqZiLmAAxVLIzQIHTZkAsUQ2ykIjQE&usg=AOvVaw0mL0Ouc_xmk3ZqPptvW0Bw",
      "price": "$1,299.00",
      "extracted_price": 1299,
      "delivery_price": "$0.00",
      "extracted_delivery_price": 0,
      "tax_price": "$115.29",
      "extracted_tax_price": 115.29,
      "total_price": "$1,414.29",
      "extracted_total_price": 1414.29,
      "delivery_return": "Free 14-day returns",
      "merchant": {
        "name": "Apple",
        "rating": 4.7,
        "reviews": 3900,
        "link": "https://www.google.com/shopping/ratings/account/metrics?q=apple.com&c=US&v=19&hl=en&sa=U&ved=0ahUKEwjczsqZiLmAAxVLIzQIHTZkAsUQlZ4BCJMB&usg=AOvVaw2-oOvfN7lIkk5zTBKALDth",
        "badge": "Top Quality Store"
      }
    },
    {
      "position": 3,
      "link": "https://www.bhphotovideo.com/c/product/1710417-REG/apple_mnep3ll_a_13_macbook_pro_with.html?kw=APMNEP3LLA&ap=y&BI=E6540&smp=ba_f1_ll&srsltid=ASuE1wRK8Le3CN_S6gPoWvnrnRGQ1dxZPWqbkn3GyjSiSbV5iC9U04bHWmw&sa=U&ved=0ahUKEwjczsqZiLmAAxVLIzQIHTZkAsUQ2ykIlgE&usg=AOvVaw3sQ3lIDct_b-QWI9fk8ST0",
      "price": "$1,299.00",
      "extracted_price": 1299,
      "delivery_price": "$0.00",
      "extracted_delivery_price": 0,
      "tax_price": "$115.29",
      "extracted_tax_price": 115.29,
      "total_price": "$1,414.29",
      "extracted_total_price": 1414.29,
      "delivery_return": "30-day returns",
      "merchant": {
        "name": "B&H Photo-Video-Audio",
        "rating": 4.8,
        "reviews": 27900,
        "link": "https://www.google.com/shopping/ratings/account/metrics?q=bhphotovideo.com&c=US&v=19&hl=en&sa=U&ved=0ahUKEwjczsqZiLmAAxVLIzQIHTZkAsUQlZ4BCJwB&usg=AOvVaw0JEEq6UteGgzIttwAjbdH-",
        "badge": "Top Quality Store"
      }
    },
    {
      "position": 4,
      "link": "https://www.bkstr.com/tuskegeestore/product/13-inch-macbook-pro--apple-m2-chip-with-8-core-cpu-and-10-core-gpu--256gb-ssd---silver-494182-1&sa=U&ved=0ahUKEwjczsqZiLmAAxVLIzQIHTZkAsUQ2ykInwE&usg=AOvVaw1RpWodanRv3sXKXHn-CzRV",
      "price": "$1,199.00",
      "extracted_price": 1199,
      "delivery_price": "$0.00",
      "extracted_delivery_price": 0,
      "tax_price": "$106.41",
      "extracted_tax_price": 106.41,
      "total_price": "$1,305.41",
      "extracted_total_price": 1305.41,
      "merchant": {
        "name": "Tuskegee University Bookstore"
      }
    },
    {
      "position": 5,
      "link": "https://www.bkstr.com/houstonstore/product/13-inch-macbook-pro--apple-m2-chip-with-8-core-cpu-and-10-core-gpu--256gb-ssd---silver-494182-1&sa=U&ved=0ahUKEwjczsqZiLmAAxVLIzQIHTZkAsUQ2ykIogE&usg=AOvVaw3xZ4UgOdut2FfINo0qxyMh",
      "price": "$1,199.00",
      "extracted_price": 1199,
      "delivery_price": "$0.00",
      "extracted_delivery_price": 0,
      "tax_price": "$106.41",
      "extracted_tax_price": 106.41,
      "total_price": "$1,305.41",
      "extracted_total_price": 1305.41,
      "merchant": {
        "name": "University of Houston Bookstore"
      }
    }
    ...
  ]
}

Specifications

Specifications
GET
https://www.searchapi.io/api/v1/search?engine=google_product&product_id=15892379510516822694
Request
import requests

url = "https://www.searchapi.io/api/v1/search"
params = {
  "engine": "google_product",
  "product_id": "15892379510516822694"
}

response = requests.get(url, params = params)
print(response.text)
Response
{
  "specifications": [
    {
      "category": "General Information",
      "attributes": [
        {
          "name": "Manufacturer",
          "value": "HP Inc."
        },
        {
          "name": "Manufacturer Part Number",
          "value": "6Y2G8AA"
        },
        {
          "name": "Brand Name",
          "value": "HyperX"
        },
        {
          "name": "Product Name",
          "value": "Cloud II Core Wireless Gaming Headset"
        },
        {
          "name": "Packing",
          "value": "Box"
        }
      ]
    }
  ],
  "specifications_link": "https://www.google.com/shopping/product/15892379510516822694/specs?gl=us&hl=en&ie=UTF-8&prds=pid:7732953838097076937,rj:1,rsk:CID_15892379510516822694"
}