Something as simple as getting a specific product specs can be difficult.

Thankfully, Google already has compiled all of this data for us. We are going to use SerpApi's Google Shopping API and SerpApi's Google Product API to automate the retrieval of product specifications.

  1. Use SerpApi's Google Shopping API to search for a specific product name.
  2. Extract the Google product ID for the relevant product. Usually it's the first result in the shopping_results array.

Experiment with your own products: https://serpapi.com/playground?q=U3821DW&location=Austin%2C+Texas%2C+United+States&gl=us&hl=en&tbm=shop

3. Use SerpApi's Google Product API to access the specs page for that particular product ID.

4. Extract specs_results object that contains all the specifications for that product.

Experiment yourself: https://serpapi.com/playground?engine=google_product&product_id=9311410688713546090&gl=us&hl=en&specs=1&specs=1&newPara=specs

That's it. 🙂