Core APIs
...
Google
Shopping & Products
Specifications
4min
google product specifications parameters get get /search?engine=google\&search type=product\&product type=specifications the google product specifications parameters are applicable when making a request with search type=product and product type=specifications to retrieve product specifications results for a given product id the product id is specified in the product id parameter and you should also specify a location parameter to geo locate the request (locations can be retrieved via the locations api https //docs trajectdata com/serpwow/locations api/overview ) google product ids are returned by google shopping search https //docs trajectdata com/serpwow/search api/results/google/shopping requests products & location google product pages are highly location sensitive so it is important that you specify a location that matches the location that was used to retrieve the product id in the original google shopping search https //docs trajectdata com/serpwow/search api/searches/google/shopping request for example, to request product specifications results for the product id 13244508647295616715 in the location united states , the request would be http https //api serpwow\ com/live/search?api key=demo\&search type=product\&product type=specifications\&product id=13244508647295616715\&location=united+statescurl l get https //api serpwow\ com/live/search \\ d api key="demo" \\ d product id="13244508647295616715" \\ d search type="product" \\ d product type="specifications" \\ d location="united+states"const axios = require('axios'); // set up the request parameters const params = { api key "demo", product id "13244508647295616715", search type "product", product type "specifications", location "united+states" } // make the http get request axios get('https //api serpwow\ com/live"/search', { params }) then(response => { // print the json response console log(json stringify(response data, 0, 2)); }) catch(error => { // catch and print the error console log(error); })import requests import json \# set up the request parameters params = { 'api key' 'demo', 'product id' '13244508647295616715', 'search type' 'product', 'product type' 'specifications', 'location' 'united+states' } \# make the http get request api result = requests get('https //api serpwow\ com/live/search', params) \# print the json response print(json dumps(api result json()))\<?php \# set up the request parameters $querystring = http build query(\[ 'api key' => 'demo', 'product id' => '13244508647295616715', 'search type' => 'product', 'product type' => 'specifications', 'location' => 'united+states' ]); \# make the http get request $ch = curl init(sprintf('%s?%s', 'https //api serpwow\ com/live/search', $querystring)); curl setopt($ch, curlopt returntransfer, true); curl setopt($ch, curlopt followlocation, true); \# the following options are required if you're using an outdated openssl version \# more details https //www openssl org/blog/blog/2021/09/13/letsencryptrootcertexpire/ curl setopt($ch, curlopt ssl verifyhost, false); curl setopt($ch, curlopt ssl verifypeer, false); curl setopt($ch, curlopt timeout, 180); $api result = curl exec($ch); curl close($ch); \# print the json response echo $api result; ?> google product specifications parameters the following parameters are available for all requests made when search type=product and product type=specifications parameter required description engine required should be set to engine=google search type required should be set to search type=product product type required should be set to product type=specifications product id required the google product id to retrieve google product ids are returned by google shopping search https //docs trajectdata com/serpwow/search api/results/google/shopping requests location optional determines the geographic location in which the query is executed you can enter any location as free text, but if you choose one of the serpwow built in locations https //docs trajectdata com/serpwow/locations api/overview then the google domain , gl and hl parameters are automatically updated to the domain, country and language that match the built in location (note that this behaviour can be disabled via the location auto parameter) location auto optional if the location field is set to a serpwow built in location https //docs trajectdata com/serpwow/locations api/overview from the locations api https //docs trajectdata com/serpwow/locations api/overview , and location auto is set to true (default) then the google domain , gl and hl parameters are automatically updated to the domain, country and language that match the built in location valid values are true (default) to enable this behaviour or false to disable uule optional the google uule parameter use to pass through a custom uule parameter to google serpwow automatically generates the uule when you use the location parameter but we allow you to overwrite it directly by specifying a uule directly google domain optional the google domain to use to run the search query view the full list of supported google domain values here https //docs trajectdata com/serpwow/search api/reference/google domains defaults to google com gl optional the gl parameter determines the google country to use for the query view the full list of supported gl values here https //docs trajectdata com/serpwow/search api/reference/google countries defaults to us hl optional the hl parameter determines the google ui language to return results view the full list of supported hl values here https //docs trajectdata com/serpwow/search api/reference/google languages defaults to en page optional determines the page of results to return, defaults to 1 note the number of specifications returned per page is fixed at 10 max page optional use the max page parameter to get multiple pages of results in one request the api will automatically paginate through pages and concatenate the results into one response see the pagination https //docs trajectdata com/serpwow/search api/pagination docs for more information next steps google product specifications results https //docs trajectdata com/serpwow/search api/results/google/product specifications