NAVNavbar
Logo
cURL php NodeJS Python cSharp

Get Google Shopping Product Info Results by id

Instead of ‘login’ and ‘password’ use your credentials from https://app.dataforseo.com/api-dashboard

<?php
// You can download this file from here https://cdn.dataforseo.com/v3/examples/php/php_RestClient.zip
require('RestClient.php');
$api_url = 'https://api.dataforseo.com/';
// Instead of 'login' and 'password' use your credentials from https://app.dataforseo.com/api-dashboard
$client = new RestClient($api_url, null, 'login', 'password');

try {
   $result = array();
   // #1 - using this method you can get a list of completed tasks
   // GET /v3/merchant/google/product_info/tasks_ready
   $tasks_ready = $client->get('/v3/merchant/google/product_info/tasks_ready');
   // you can find the full list of the response codes here https://docs.dataforseo.com/v3/appendix/errors
   if (isset($tasks_ready['status_code']) AND $tasks_ready['status_code'] === 20000) {
      foreach ($tasks_ready['tasks'] as $task) {
         if (isset($task['result'])) {
            foreach ($task['result'] as $task_ready) {
               // #2 - using this method you can get results of each completed task
               // GET /v3/merchant/google/product_info/task_get/advanced/$id
               if (isset($task_ready['endpoint_advanced'])) {
                  $result[] = $client->get($task_ready['endpoint_advanced']);
               }
               // #3 - another way to get the task results by id
               // GET /v3/merchant/google/product_info/task_get/advanced/$id
               /*
               if (isset($task_ready['id'])) {
                  $result[] = $client->get('/v3/merchant/google/product_info/task_get/advanced/' . $task_ready['id']);
               }
               */
            }
         }
      }
   }
   print_r($result);
   // do something with result
} catch (RestClientException $e) {
   echo "n";
   print "HTTP code: {$e->getHttpCode()}n";
   print "Error code: {$e->getCode()}n";
   print "Message: {$e->getMessage()}n";
   print  $e->getTraceAsString();
   echo "n";
}
$client = null;
?>

The above command returns JSON structured like this:

{
  "version": "0.1.20220627",
  "status_code": 20000,
  "status_message": "Ok.",
  "time": "0.0770 sec.",
  "cost": 0,
  "tasks_count": 1,
  "tasks_error": 0,
  "tasks": [
    {
      "id": "07151455-1535-0455-0000-4ef29a2e5cad",
      "status_code": 20000,
      "status_message": "Ok.",
      "time": "0.0236 sec.",
      "cost": 0,
      "result_count": 1,
      "path": [
        "v3",
        "merchant",
        "google",
        "product_info",
        "task_get",
        "advanced",
        "07151455-1535-0455-0000-4ef29a2e5cad"
      ],
      "data": {
        "se_type": "product_info",
        "api": "merchant",
        "function": "product_info",
        "se": "google",
        "language_code": "en",
        "location_code": 2840,
        "product_id": "2693947537627546605",
        "device": "desktop",
        "os": "windows"
      },
      "result": [
        {
          "product_id": "2693947537627546605",
          "type": "product_info",
          "se_domain": "google.com",
          "location_code": 2840,
          "language_code": "en",
          "check_url": "https://www.google.com/shopping/product/2693947537627546605?gl=US&hl=en&prds=eto:4329443173325430719_0;6080682070074352475_0;15959577274487363386_0,pid:11411337548571788426,rsk:PC_2279649599901893363&sa=X&ved=0ahUKEwjmxtiN6_r4AhXQkYkEHX1FDzYQ9pwGCDc",
          "datetime": "2022-07-15 11:55:28 +00:00",
          "item_types": [
            "product_info_element"
          ],
          "items_count": 1,
          "items": [
            {
              "type": "product_info_element",
              "rank_group": 1,
              "rank_absolute": 1,
              "position": "left",
              "product_id": "2693947537627546605",
              "title": "Apple iPhone 8 64gb - Gold (at&t)",
              "description": "The iPhone 8 is the first smartphone by Apple made exclusively of durable glass front and back, engineered to endure dust and water splash. It is powered by the “Apple A11 Bionic” processor. It features a 4.7-inch widescreen multi-touch IPS display (“Retina HD”) and dual cameras ...",
              "url": "https://www.google.com/shopping/product/2693947537627546605?gl=US&hl=en&prds=eto:4329443173325430719_0;6080682070074352475_0;15959577274487363386_0,pid:11411337548571788426,rsk:PC_2279649599901893363&sa=X&ved=0ahUKEwjmxtiN6_r4AhXQkYkEHX1FDzYQ9pwGCDc",
              "images": [
                "https://encrypted-tbn2.gstatic.com/shopping?q=tbn:ANd9GcS6kUVNdzMROAjvzEPlP-GPxEDgFQ1N8uBvXS5qDa_jZaSwChV6eETuSGTYA0ILEBnOZ5i9tvsn8LhXL6zywlS2ht8xkHIR&usqp=CAY",
                "https://encrypted-tbn3.gstatic.com/shopping?q=tbn:ANd9GcQm1tXwY11ZGbu11bfte5RHbmvytTnA1dlO9fknDU4LRkuUC8M&usqp=CAY",
                "https://encrypted-tbn2.gstatic.com/shopping?q=tbn:ANd9GcTi74pggfBKTGPjESghzSpCLBjrnLaA5zAF6Oa7vXIBoqN_AEE&usqp=CAY",
                "https://encrypted-tbn1.gstatic.com/shopping?q=tbn:ANd9GcRYEapyc-3uSHHmzSOP3Ljb6SMFU1It8dVZ4n97niTsEjV5hbbF&usqp=CAY"
              ],
              "features": [
                "Built-in 64 GB internal memory offers ample space to store multiple movies, music, and games",
                "A11 Bionic chip with 64-bit architecture gives you a smooth multitasking experience",
                "Enjoy enhanced viewing experience with its 1920 x 1080 high definition LCD display"
              ],
              "rating": {
                "type": "rating_element",
                "position": "left",
                "rating_type": "Max5",
                "value": "4.36",
                "votes_count": 24805,
                "rating_max": "5"
              },
              "seller_reviews_count": 24805,
              "sellers": [
                {
                  "type": "product_seller",
                  "title": "Back Market",
                  "url": "https://www.backmarket.com/en-us/p/iphone-8-64-gb-gold-att/2c9ddf75-ce86-4103-a4d4-14e9fcd0e0db?shopping=gmc",
                  "seller_rating": {
                    "type": "rating_element",
                    "position": "left",
                    "rating_type": "Max5",
                    "value": "4.6",
                    "votes_count": 15892,
                    "rating_max": "5"
                  },
                  "seller_review_count": 15892,
                  "price": {
                    "current": 108,
                    "regular": null,
                    "max_value": null,
                    "currency": "USD",
                    "is_price_range": false,
                    "displayed_price": "$108.00 refurbished"
                  },
                  "delivery_info": {
                    "delivery_message": "Delivery by Wed, Jul 20",
                    "delivery_price": null
                  }
                },
                {
                  "type": "product_seller",
                  "title": "Trademore",
                  "url": "https://www.trademore.com/buy/iphone/iphone-8/at-t-gold-64gb?skuId=70197&skuIsCloned=false&carrier=AT&T=&skuUrl=/iphone/iphone-8/at-t-gold-64gb&condition=TPC&srsltid=AdGWZVSdm9ABO3cy3yEqFwyccnvBkPyog1l-PCWQTPaErPxeez7waZ5zDHI",
                  "seller_rating": {
                    "type": "rating_element",
                    "position": "left",
                    "rating_type": "Max5",
                    "value": "4.6",
                    "votes_count": 366,
                    "rating_max": "5"
                  },
                  "seller_review_count": 366,
                  "price": {
                    "current": 135.99,
                    "regular": null,
                    "max_value": null,
                    "currency": "USD",
                    "is_price_range": false,
                    "displayed_price": "$135.99 used"
                  },
                  "delivery_info": {
                    "delivery_message": "Free delivery by Tue, Jul 19",
                    "delivery_price": null
                  }
                },
                {
                  "type": "product_seller",
                  "title": "Decluttr Store",
                  "url": "https://www.decluttr.com/us/store/products/apple-iphone-8-64gb-gold-at-t-1b962d86-267b-4a78-8d70-bc66d3738f4c",
                  "seller_rating": {
                    "type": "rating_element",
                    "position": "left",
                    "rating_type": "Max5",
                    "value": "4.5",
                    "votes_count": 5659,
                    "rating_max": "5"
                  },
                  "seller_review_count": 5659,
                  "price": {
                    "current": 169.99,
                    "regular": null,
                    "max_value": null,
                    "currency": "USD",
                    "is_price_range": false,
                    "displayed_price": "$169.99 refurbished"
                  },
                  "delivery_info": {
                    "delivery_message": "Free delivery",
                    "delivery_price": null
                  }
                }
              ],
              "variations": [
                {
                  "type": "product_variation",
                  "product_id": "14548795243109479428",
                  "title": "64 GB - Space Gray - Sprint - CDMA/GSM",
                  "url": "https://www.google.com/shopping/product/14548795243109479428?gl=US&hl=en&sa=X&ved=0ahUKEwjmxtiN6_r4AhXQkYkEHX1FDzYQkjAICigE"
                },
                {
                  "type": "product_variation",
                  "product_id": "16770195602838997301",
                  "title": "64 GB - Gold - Sprint - CDMA/GSM",
                  "url": "https://www.google.com/shopping/product/16770195602838997301?gl=US&hl=en&sa=X&ved=0ahUKEwjmxtiN6_r4AhXQkYkEHX1FDzYQkjAICygF"
                },
                {
                  "type": "product_variation",
                  "product_id": "618367271287427024",
                  "title": "64 GB - (Product)Red - Verizon - CDMA/GSM",
                  "url": "https://www.google.com/shopping/product/618367271287427024?gl=US&hl=en&sa=X&ved=0ahUKEwjmxtiN6_r4AhXQkYkEHX1FDzYQkjAIDCgG"
                },
                {
                  "type": "product_variation",
                  "product_id": "16189148486675584342",
                  "title": "64GB - Space Gray - Unlocked GSM/CDMA",
                  "url": "https://www.google.com/shopping/product/16189148486675584342?gl=US&hl=en&sa=X&ved=0ahUKEwjmxtiN6_r4AhXQkYkEHX1FDzYQkjAIDSgH"
                },
                {
                  "type": "product_variation",
                  "product_id": "4675479590784083433",
                  "title": "64 GB - Gold - Verizon - CDMA/GSM",
                  "url": "https://www.google.com/shopping/product/4675479590784083433?gl=US&hl=en&sa=X&ved=0ahUKEwjmxtiN6_r4AhXQkYkEHX1FDzYQkjAIDigI"
                },
                {
                  "type": "product_variation",
                  "product_id": "2527512113670095639",
                  "title": "64 GB - Silver - Verizon - CDMA/GSM",
                  "url": "https://www.google.com/shopping/product/2527512113670095639?gl=US&hl=en&sa=X&ved=0ahUKEwjmxtiN6_r4AhXQkYkEHX1FDzYQkjAIDygJ"
                },
                {
                  "type": "product_variation",
                  "product_id": "2290395383643640834",
                  "title": "64GB - Space Gray - AT&T",
                  "url": "https://www.google.com/shopping/product/2290395383643640834?gl=US&hl=en&sa=X&ved=0ahUKEwjmxtiN6_r4AhXQkYkEHX1FDzYQkjAIECgK"
                },
                {
                  "type": "product_variation",
                  "product_id": "11356040251675904805",
                  "title": "64 GB - Silver - T-Mobile - GSM",
                  "url": "https://www.google.com/shopping/product/11356040251675904805?gl=US&hl=en&sa=X&ved=0ahUKEwjmxtiN6_r4AhXQkYkEHX1FDzYQkjAIESgL"
                },
                {
                  "type": "product_variation",
                  "product_id": "2560335586110991790",
                  "title": "256 GB - Gold - T-Mobile - GSM",
                  "url": "https://www.google.com/shopping/product/2560335586110991790?gl=US&hl=en&sa=X&ved=0ahUKEwjmxtiN6_r4AhXQkYkEHX1FDzYQkjAIEigM"
                },
                {
                  "type": "product_variation",
                  "product_id": "5624509640515194853",
                  "title": "64GB - Silver - Unlocked",
                  "url": "https://www.google.com/shopping/product/5624509640515194853?gl=US&hl=en&sa=X&ved=0ahUKEwjmxtiN6_r4AhXQkYkEHX1FDzYQkjAIEygN"
                },
                {
                  "type": "product_variation",
                  "product_id": "12626140454827036580",
                  "title": "256 GB - Gold - Sprint - CDMA/GSM",
                  "url": "https://www.google.com/shopping/product/12626140454827036580?gl=US&hl=en&sa=X&ved=0ahUKEwjmxtiN6_r4AhXQkYkEHX1FDzYQkjAIFCgO"
                },
                {
                  "type": "product_variation",
                  "product_id": "1999564152572244603",
                  "title": "256 GB - Gold - AT&T - GSM",
                  "url": "https://www.google.com/shopping/product/1999564152572244603?gl=US&hl=en&sa=X&ved=0ahUKEwjmxtiN6_r4AhXQkYkEHX1FDzYQkjAIFSgP"
                },
                {
                  "type": "product_variation",
                  "product_id": "14158438518969507170",
                  "title": "256 GB - (Product)Red - AT&T - GSM",
                  "url": "https://www.google.com/shopping/product/14158438518969507170?gl=US&hl=en&sa=X&ved=0ahUKEwjmxtiN6_r4AhXQkYkEHX1FDzYQkjAIFigQ"
                },
                {
                  "type": "product_variation",
                  "product_id": "12487770313955071677",
                  "title": "64 GB - (Product)Red - Unlocked - SIM Free",
                  "url": "https://www.google.com/shopping/product/12487770313955071677?gl=US&hl=en&sa=X&ved=0ahUKEwjmxtiN6_r4AhXQkYkEHX1FDzYQkjAIFygR"
                },
                {
                  "type": "product_variation",
                  "product_id": "13005855706079321967",
                  "title": "256 GB - (Product)Red - T-Mobile - GSM",
                  "url": "https://www.google.com/shopping/product/13005855706079321967?gl=US&hl=en&sa=X&ved=0ahUKEwjmxtiN6_r4AhXQkYkEHX1FDzYQkjAIGCgS"
                },
                {
                  "type": "product_variation",
                  "product_id": "4143305201781032913",
                  "title": "64 GB - Silver - AT&T - GSM",
                  "url": "https://www.google.com/shopping/product/4143305201781032913?gl=US&hl=en&sa=X&ved=0ahUKEwjmxtiN6_r4AhXQkYkEHX1FDzYQkjAIGSgT"
                },
                {
                  "type": "product_variation",
                  "product_id": "5962802802707126742",
                  "title": "256 GB - Gold - Verizon - CDMA/GSM",
                  "url": "https://www.google.com/shopping/product/5962802802707126742?gl=US&hl=en&sa=X&ved=0ahUKEwjmxtiN6_r4AhXQkYkEHX1FDzYQkjAIGigU"
                },
                {
                  "type": "product_variation",
                  "product_id": "2693947537627546605",
                  "title": "64 GB - Gold - AT&T - GSM",
                  "url": "https://www.google.com/shopping/product/2693947537627546605?gl=US&hl=en&sa=X&ved=0ahUKEwjmxtiN6_r4AhXQkYkEHX1FDzYQkjAIGygV"
                },
                {
                  "type": "product_variation",
                  "product_id": "5702609406161641015",
                  "title": "64 GB - (Product)Red - T-Mobile - GSM",
                  "url": "https://www.google.com/shopping/product/5702609406161641015?gl=US&hl=en&sa=X&ved=0ahUKEwjmxtiN6_r4AhXQkYkEHX1FDzYQkjAIHCgW"
                },
                {
                  "type": "product_variation",
                  "product_id": "2769334940374486235",
                  "title": "256GB - Silver - Unlocked",
                  "url": "https://www.google.com/shopping/product/2769334940374486235?gl=US&hl=en&sa=X&ved=0ahUKEwjmxtiN6_r4AhXQkYkEHX1FDzYQkjAIHSgX"
                },
                {
                  "type": "product_variation",
                  "product_id": "2211509380040545528",
                  "title": "64 GB - Silver - Unlocked - GSM",
                  "url": "https://www.google.com/shopping/product/2211509380040545528?gl=US&hl=en&sa=X&ved=0ahUKEwjmxtiN6_r4AhXQkYkEHX1FDzYQkjAIHigY"
                },
                {
                  "type": "product_variation",
                  "product_id": "13802115768704628902",
                  "title": "256 GB - (Product)Red - Verizon - CDMA/GSM",
                  "url": "https://www.google.com/shopping/product/13802115768704628902?gl=US&hl=en&sa=X&ved=0ahUKEwjmxtiN6_r4AhXQkYkEHX1FDzYQkjAIHygZ"
                },
                {
                  "type": "product_variation",
                  "product_id": "14737126019072112366",
                  "title": "64GB - Space Gray - Verizon",
                  "url": "https://www.google.com/shopping/product/14737126019072112366?gl=US&hl=en&sa=X&ved=0ahUKEwjmxtiN6_r4AhXQkYkEHX1FDzYQkjAIICga"
                },
                {
                  "type": "product_variation",
                  "product_id": "2597219638322964372",
                  "title": "256 GB - Space Gray - Sprint - CDMA/GSM",
                  "url": "https://www.google.com/shopping/product/2597219638322964372?gl=US&hl=en&sa=X&ved=0ahUKEwjmxtiN6_r4AhXQkYkEHX1FDzYQkjAIISgb"
                },
                {
                  "type": "product_variation",
                  "product_id": "4412945115338296346",
                  "title": "256 GB - Silver - AT&T - GSM",
                  "url": "https://www.google.com/shopping/product/4412945115338296346?gl=US&hl=en&sa=X&ved=0ahUKEwjmxtiN6_r4AhXQkYkEHX1FDzYQkjAIIigc"
                },
                {
                  "type": "product_variation",
                  "product_id": "5984641963360605835",
                  "title": "64 GB - Space Gray - AT&T - GSM",
                  "url": "https://www.google.com/shopping/product/5984641963360605835?gl=US&hl=en&sa=X&ved=0ahUKEwjmxtiN6_r4AhXQkYkEHX1FDzYQkjAIIygd"
                },
                {
                  "type": "product_variation",
                  "product_id": "14240084794333956320",
                  "title": "64GB - PRODUCT (RED) - Unlocked",
                  "url": "https://www.google.com/shopping/product/14240084794333956320?gl=US&hl=en&sa=X&ved=0ahUKEwjmxtiN6_r4AhXQkYkEHX1FDzYQkjAIJCge"
                },
                {
                  "type": "product_variation",
                  "product_id": "12646018034416488378",
                  "title": "64GB - Gold - Unlocked",
                  "url": "https://www.google.com/shopping/product/12646018034416488378?gl=US&hl=en&sa=X&ved=0ahUKEwjmxtiN6_r4AhXQkYkEHX1FDzYQkjAIJSgf"
                },
                {
                  "type": "product_variation",
                  "product_id": "7538657221046822293",
                  "title": "64 GB - Gold - T-Mobile - GSM",
                  "url": "https://www.google.com/shopping/product/7538657221046822293?gl=US&hl=en&sa=X&ved=0ahUKEwjmxtiN6_r4AhXQkYkEHX1FDzYQkjAIJigg"
                },
                {
                  "type": "product_variation",
                  "product_id": "10837193136974461993",
                  "title": "256 GB - Space Gray - Verizon - CDMA/GSM",
                  "url": "https://www.google.com/shopping/product/10837193136974461993?gl=US&hl=en&sa=X&ved=0ahUKEwjmxtiN6_r4AhXQkYkEHX1FDzYQkjAIJygh"
                },
                {
                  "type": "product_variation",
                  "product_id": "11418538753311496735",
                  "title": "256 GB - Silver - T-Mobile - GSM",
                  "url": "https://www.google.com/shopping/product/11418538753311496735?gl=US&hl=en&sa=X&ved=0ahUKEwjmxtiN6_r4AhXQkYkEHX1FDzYQkjAIKCgi"
                },
                {
                  "type": "product_variation",
                  "product_id": "8225908324863378551",
                  "title": "64 GB - (Product)Red - Sprint - CDMA/GSM",
                  "url": "https://www.google.com/shopping/product/8225908324863378551?gl=US&hl=en&sa=X&ved=0ahUKEwjmxtiN6_r4AhXQkYkEHX1FDzYQkjAIKSgj"
                },
                {
                  "type": "product_variation",
                  "product_id": "5838102770787143296",
                  "title": "64 GB - Space Gray - Unlocked GSM/CDMA",
                  "url": "https://www.google.com/shopping/product/5838102770787143296?gl=US&hl=en&sa=X&ved=0ahUKEwjmxtiN6_r4AhXQkYkEHX1FDzYQkjAIKigk"
                },
                {
                  "type": "product_variation",
                  "product_id": "8317463889464065897",
                  "title": "64GB - Space Gray - T-Mobile",
                  "url": "https://www.google.com/shopping/product/8317463889464065897?gl=US&hl=en&sa=X&ved=0ahUKEwjmxtiN6_r4AhXQkYkEHX1FDzYQkjAIKygl"
                },
                {
                  "type": "product_variation",
                  "product_id": "16877071519691792279",
                  "title": "256 GB - Silver - Sprint - CDMA/GSM",
                  "url": "https://www.google.com/shopping/product/16877071519691792279?gl=US&hl=en&sa=X&ved=0ahUKEwjmxtiN6_r4AhXQkYkEHX1FDzYQkjAILCgm"
                },
                {
                  "type": "product_variation",
                  "product_id": "13075329911787269289",
                  "title": "64 GB - (Product)Red - AT&T - GSM",
                  "url": "https://www.google.com/shopping/product/13075329911787269289?gl=US&hl=en&sa=X&ved=0ahUKEwjmxtiN6_r4AhXQkYkEHX1FDzYQkjAILSgn"
                },
                {
                  "type": "product_variation",
                  "product_id": "16345748196935557445",
                  "title": "256 GB - Silver - Verizon - CDMA/GSM",
                  "url": "https://www.google.com/shopping/product/16345748196935557445?gl=US&hl=en&sa=X&ved=0ahUKEwjmxtiN6_r4AhXQkYkEHX1FDzYQkjAILigo"
                },
                {
                  "type": "product_variation",
                  "product_id": "18115341136726863807",
                  "title": "256 GB - (Product)Red - Unlocked - SIM Free",
                  "url": "https://www.google.com/shopping/product/18115341136726863807?gl=US&hl=en&sa=X&ved=0ahUKEwjmxtiN6_r4AhXQkYkEHX1FDzYQkjAILygp"
                },
                {
                  "type": "product_variation",
                  "product_id": "8866106839209733300",
                  "title": "256 GB - Space Gray - T-Mobile - GSM",
                  "url": "https://www.google.com/shopping/product/8866106839209733300?gl=US&hl=en&sa=X&ved=0ahUKEwjmxtiN6_r4AhXQkYkEHX1FDzYQkjAIMCgq"
                },
                {
                  "type": "product_variation",
                  "product_id": "767940202804690547",
                  "title": "256 GB - Silver - Unlocked - GSM",
                  "url": "https://www.google.com/shopping/product/767940202804690547?gl=US&hl=en&sa=X&ved=0ahUKEwjmxtiN6_r4AhXQkYkEHX1FDzYQkjAIMSgr"
                },
                {
                  "type": "product_variation",
                  "product_id": "13711654894419270275",
                  "title": "256 GB - Space Gray - AT&T - GSM",
                  "url": "https://www.google.com/shopping/product/13711654894419270275?gl=US&hl=en&sa=X&ved=0ahUKEwjmxtiN6_r4AhXQkYkEHX1FDzYQkjAIMigs"
                },
                {
                  "type": "product_variation",
                  "product_id": "12876020455251954768",
                  "title": "64 GB - Space Gray - Verizon - CDMA/GSM",
                  "url": "https://www.google.com/shopping/product/12876020455251954768?gl=US&hl=en&sa=X&ved=0ahUKEwjmxtiN6_r4AhXQkYkEHX1FDzYQkjAIMygt"
                },
                {
                  "type": "product_variation",
                  "product_id": "45653035506139423",
                  "title": "64 GB - Silver - Sprint - CDMA/GSM",
                  "url": "https://www.google.com/shopping/product/45653035506139423?gl=US&hl=en&sa=X&ved=0ahUKEwjmxtiN6_r4AhXQkYkEHX1FDzYQkjAINCgu"
                },
                {
                  "type": "product_variation",
                  "product_id": "17356250768382881576",
                  "title": "64 GB - Gold - Simple Mobile",
                  "url": "https://www.google.com/shopping/product/17356250768382881576?gl=US&hl=en&sa=X&ved=0ahUKEwjmxtiN6_r4AhXQkYkEHX1FDzYQkjAINSgv"
                },
                {
                  "type": "product_variation",
                  "product_id": "8520788849165384645",
                  "title": "64 GB - Space Gray - T-Mobile - GSM",
                  "url": "https://www.google.com/shopping/product/8520788849165384645?gl=US&hl=en&sa=X&ved=0ahUKEwjmxtiN6_r4AhXQkYkEHX1FDzYQkjAINigw"
                }
              ]
            }
          ]
        }
      ]
    }
  ]
}

Description of the fields for sending a request:

Field name Type Description
id string task identifier
unique task identifier in our system in the UUID format
you will be able to use it within 30 days to request the results of the task at any time

‌‌‌‌
‌‌As a response of the API server, you will receive JSON-encoded data containing a tasks array with the information specific to the set tasks.

You can also get all available SERP features by making a request to the following Sandbox URL:
https://sandbox.dataforseo.com/v3/merchant/google/product_info/task_get/advanced/00000000-0000-0000-0000-000000000000
The response will include all available items in the Google Merchant Product Info Advanced endpoint with the fields containing dummy data.
You won’t be charged for using Sandbox endpoints.

Description of the fields in the results array:

Field name Type Description
version string the current version of the API
status_code integer general status code
you can find the full list of the response codes here
Note: we strongly recommend designing a necessary system for handling related exceptional or error conditions
status_message string general informational message
you can find the full list of general informational messages here
time string execution time, seconds
cost float total tasks cost, USD
tasks_count integer the number of tasks in the tasks array
tasks_error integer the number of tasks in the tasks array that were returned an error
tasks array array of tasks
        id string task identifier
unique task identifier in our system in the UUID format
        status_code integer status code of the task
generated by DataForSEO; can be within the following range: 10000-60000
you can find the full list of response codes here
        status_message string informational message of the task
you can find the full list of general informational messages here
        time string execution time, seconds
        cost float cost of the task, USD
        result_count integer number of elements in the result array
        path array URL path
        data object contains the same parameters that you specified in the POST request
        result array array of results
            product_id string product ID in a POST array
learn more about the parameter in this help center guide
            type string search engine type in a POST array
possible types:
shopping_specifications
            se_domain string search engine domain in a POST array
            location_code integer location code in a POST array
            language_code string language code in a POST array
            title string title of the product
            description string description of the product
            image_url string URL of the product image
            tags array tags of the product
            check_url string direct URL to search engine results
you can use it to make sure that we provided accurate results
            datetime string date and time when the result was received
in the format: “year-month-date:minutes:UTC_difference_hours:UTC_difference_minutes”
example:
2019-11-15 12:57:46 +00:00
            item_types array types of items found on the product specification page
possible item types:
product_info_element
            items_count integer the number of results returned in the items array
            items array items on the product page
contains all product attributes and related data listed on the product page
                type string type of element
possible types:
product_info_element
                rank_group integer position within a group of elements with identical type values
positions of elements with different type values are omitted from rank_group
                rank_absolute integer absolute rank on the product specification page
absolute position among all the elements found on the product specification page
                position string alignment of the element on the product specification page
can take the following values:
right, left
                product_id string product_id received in a POST array
ilearn more about the parameter in this help center guide
                title string product title
                description string product description
                url string product url
url of the product on Google Shopping
                images array product images
contains urls to product images
                features array product features
contains snippets with the description of product features
                rating object product rating
the popularity rate based on reviews
                    rating_type string the type of rating
here you can find the following elements: Max5, Percents, CustomMax
                    value string the value of the rating
                    votes_count integer the amount of feedback
                    rating_max string the maximum value for a rating_type
                seller_reviews_count integer number of seller reviews
number of reviews on the product seller’s account
                sellers array sellers of the product
number of reviews on the product seller’s account
                    type string type of the element in the sellers array
can take the following values: product_seller
                    title string name of the product seller
                    url string seller url
url of the page where the product is sold
                    url string seller url
url of the webpage on the seller’s website where the product is sold
                    seller_rating object rating of the seller
                        rating_type string the type of rating
here you can find the following elements: Max5, Percents, CustomMax
                        value string the value of the rating
                        votes_count integer the amount of feedback
                        rating_max string the maximum value for a rating_type
                    seller_reviews_count integer number of seller reviews
number of reviews on the product seller’s account
                    price object product price
product price details on the seller’s website
                        current float current price
indicates the current price of the shopping element
                        regular float regular price
indicates the regular price of the shopping element
                        max_value float the maximum price
indicates the maximum price of the shopping element
                        currency string currency of the listed price
ISO code of the currency applied to the price
                        is_price_range boolean price is provided as a range
indicates whether a price is provided in a range
                        displayed_price string price string in the result
raw price string as provided in the result
                    delivery_info object delivery information
product delivery information
                        delivery_message string delivery information
message accompanying the delivery information as posted by the seller
                        delivery_price object price for the delivery
price of the delivery based on the location you specified in the POST request
                variations array variations of the product
contains brief information about different product variations
                    type object delivery information
product delivery information
                    product_id string product ID in a POST array
learn more about the parameter in this help center guide
                    title string product title
                    url string product url on google shopping

‌‌