WebScrapingAPI Docs
HomeLoginRegister
  • Introduction
    • Registration
    • Pricing
    • Free APIs
    • API Errors
    • Custom Response Headers
  • Browser API
    • Getting Started
      • Access the API
      • Authentication
      • API Parameters
    • Basic API Requests
      • GET Request
      • POST, PUT & PATCH Requests
      • Proxy Mode
    • Advanced API Features
      • Awaiting
      • Geolocation
      • Sessions
      • Forcing Timeouts
      • Custom Headers
      • Custom Cookies
      • Device Type
      • Viewport Sizing
      • Screenshot
      • Screenshot Options
      • Extraction Rules
      • JavaScript Instructions
      • Full JSON Response
      • JSON DOM Response
      • Block Resources
      • Captcha Solving
  • WebScrapingAPI
    • Getting Started
      • Access the API
      • API Parameters
    • Basic API Requests
      • GET Request
      • POST, PUT & PATCH Requests
    • Advanced API Features
      • Geolocation
      • Extraction Rules
      • Full JSON Response
      • JSON DOM Response
      • Rendering JavaScript
  • WebStealthProxy
    • Getting Started
      • Access the Proxy
      • Usage and Statistics
    • Basic Proxy Requests
    • Advanced Proxy Requests
      • Sessions
      • Geolocation
      • Custom Headers
      • Custom Cookies
      • Screenshots
  • Google Search API
    • Getting Started
      • Access the API
      • API Parameters
    • Google Search Engines
      • Google Search API
      • Google Maps API
      • Google Maps Reviews API
      • Google Reverse Image API
      • Google Trends API
        • Geo Parameter Options List
        • Google Trends Categories List
  • WB CUSTOM SEARCH API
    • Getting Started
      • Access the API
      • API Parameters
    • WB Custom Search Engines
      • Wayfair Product API
      • Best Buy Product API
      • Nordstrom Product API
  • Amazon Search API
    • Getting Started
      • API Parameters
      • Access the API
      • Supported Domains
    • Amazon Search Types
      • Amazon Search
      • Amazon Seller
        • Amazon Seller Products
        • Amazon Seller Profile
        • Amazon Seller Feedback
      • Amazon Product
      • Amazon Category
      • Amazon Bestsellers
      • Amazon New Releases
      • Amazon Deals
  • Bing Search API
    • Getting Started
      • Access the API
      • API Parameters
    • Basic API Requests
Powered by GitBook
On this page
  • Product Results Request Example
  • Request Example That Returns Google Product Specs Results
  1. Google Search API
  2. Google APIs Response
  3. Google Product API

Specs Results

Scrape Google Product Specs Results and get real time information on product specifications.

The body of the Google Product Specs Results response contains:

Element
Type
Description

product_results

Object

Details found on the product main container

title

String

Product title

reviews

Integer

Total number of reviews

rating

Float

Product score based on customer's rating

description

String

Product description

extentions

Array

Product extentions

specs_results

Object

An object with all the specifications found on the product. The keys of this element are generated from DOM

Product Results Request Example

Request Example That Returns Google Product Specs Results

GET https://serpapi.webscrapingapi.com/v1?engine=google_product&api_key=<YOUR_API_KEY>&product_id=4887235756540435899&specs=1

This is a basic GET request that returns the product results found on the Google page.

Query Parameters

Name
Type
Description

product_id*

String

4887235756540435899

api_key*

String

<YOUR_API_KEY>

engine*

String

google_product

specs*

Int

1

gl

String

(for this example gl=de was used)

{
    ...
    "product_results": {
        "title": "Sony PlayStation 5 (PS5) Digital Edition",
        "reviews": 63800,
        "rating": "4.5 von 5 Sternen",
        "extensions": [
            "Blu-ray Player",
            "Digitale Ausgabe",
            "Abwärtskompatibel",
            "Mit Motion Control",
            "4K-Fähig",
            "PlayStation Network/Plus",
            "Bluetooth",
            "WLAN",
            "Mit Erweiterbarem Speicher"
        ],
        "description": "Freue dich auf ultrakurze Ladezeiten mit einer ultraschnellen SSD, eine realistischere Spielerfahrung durch haptisches Feedback, adaptive Trigger-Tasten und 3D-Audio sowie eine völlig neue Generation unglaublicher PlayStation-Spiele. Die PS5 Digital Edition ist eine vollständig digitale Version der PS5-Konsole ohne Disc-Laufwerk. Melde dich bei deinem Konto für PlayStation Network an und öffne den PlayStation Store, um Spiele zu kaufen und herunterzuladen."
    },
    "specs_results": {
        "allgemein": {
            "produkttyp": "Spielkonsole",
            "mitgelieferte_spiele": "Astro's Playroom",
            "integrierter_arbeitsspeicher": "825 GB SSD",
            "prozessor": "1 x AMD Ryzen Zen 2 3.5 GHz - 8 Kerne",
            "ram": "16 GB GDDR6 SDRAM bei 448 GB/s",
            "grafikprozessor": "AMD RDNA 2",
            "gleitkommazahlen_operation": "10.3 TFLOPS",
            "netzwerk": "Gigabit Ethernet, 802.11a/b/g/n/ac, Bluetooth 5.1",
            "besonderheiten": "Tempest 3D AudioTech, Ray Tracing Acceleration, 4K 120 fps",
            "hd_streaming": "Ja",
            "breite": "39 cm",
            "tiefe": "26 cm",
            "höhe": "9.2 cm",
            "gewicht": "3.9 kg"
        },
        "controller": {
            "typ": "DualSense - kabellos",
            "steuerungen": "PS-Taste, Richtungstasten, Aktionstasten, Touchpad, 2-Punkt-Touchpad, OPTIONS-Taste, Right stick, Left stick, L1-Taste, L3-Taste, R1-Taste, R3-Taste, R2-Taste, L2-Taste, Create-Taste, Stummschalttaste",
            "funktionen": "Bewegungserkennung (6 Achsen), integrierter Lautsprecher, Sprechgarnituranschluss, integriertes Mikrofon, kapazitives Touchpad, Klick-Mechanismus, haptisches Feedback, adaptive Trigger"
        },
        "videoausgang": {
            "tv_verbindung": "HDMI",
            "auflösung": "8K (4320p)",
            "hdr_fähig": "Ja"
        },
        "schnittstellen": {
            "anschlusstyp": "HDMI-Ausgang USB 2.0 2 x USB USB LAN"
        },
        "verschiedenes": {
            "leistungsaufnahme_im_betrieb": "340 Watt",
            "zubehör_im_lieferumfang": "USB-Kabel, HDMI-Kabel"
        },
        "herstellergarantie": {
            "service_und_support": "Begrenzte Garantie - 1 Jahr"
        }
    },
    ...
}

Last updated 2 years ago

Scrape Google Product Specs Results