NAVNavbar
Logo
cURL php NodeJS Python cSharp

Get Google Shopping Sellers 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/sellers/tasks_ready
   $tasks_ready = $client->get('/v3/merchant/google/sellers/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/sellers/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/sellers/task_get/advanced/$id
               /*
               if (isset($task_ready['id'])) {
                  $result[] = $client->get('/v3/merchant/google/sellers/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.20200416",
  "status_code": 20000,
  "status_message": "Ok.",
  "time": "0.0562 sec.",
  "cost": 0,
  "tasks_count": 1,
  "tasks_error": 0,
  "tasks": [
    {
      "id": "04171157-0696-0183-0000-4f63affdd40a",
      "status_code": 20000,
      "status_message": "Ok.",
      "time": "0.0242 sec.",
      "cost": 0,
      "result_count": 1,
      "path": [
        "v3",
        "merchant",
        "google",
        "sellers",
        "task_get",
        "advanced",
        "04171157-0696-0183-0000-4f63affdd40a"
      ],
      "data": {
        "se_type": "shops_list",
        "api": "merchant",
        "function": "sellers",
        "se": "google",
        "language_code": "en",
        "location_code": 2840,
        "product_id": "1113158713975221117",
        "priority": 2,
        "device": "desktop",
        "os": "windows"
      },
      "result": [
        {
          "product_id": "1113158713975221117",
          "type": "shops_list",
          "se_domain": "google.com",
          "location_code": 2840,
          "language_code": "en",
          "check_url": "https://www.google.com/shopping/product/1113158713975221117/online?&hl=en&gl=US&gws_rd=cr&uule=w+CAIQIFISCQs2MuSEtepUEUK33kOSuTsc",
          "datetime": "2020-04-17 08:57:11 +00:00",
          "item_types": [
            "shops_list"
          ],
          "items_count": 2,
          "items": [
            {
              "type": "shops_list",
              "rank_group": 1,
              "rank_absolute": 1,
              "position": "right",
              "xpath": "/html[1]/body[1]/div[3]/div[2]/div[1]/div[1]/div[2]/div[3]/div[1]/table[1]/tbody[1]/tr[1]",
              "domain": null,
              "title": "Apple iPhone 8 Plus - 64 GB - Gold - T-Mobile - GSM",
              "url": "https://www.google.com/aclk?sa=l&ai=DChcSEwiosevgi-_oAhWCwMgKHfhnDrgYABACGgJxdQ&sig=AOD64_0_AXqbk4HeioGAoF5sMjl2L0Nfcg&adurl=&ctype=5&q=",
              "details": "· Free shipping",
              "base_price": 338.99,
              "tax": 30.09,
              "shipping_price": 5.99,
              "total_price": 369.08,
              "currency": "USD",
              "seller_name": "eBay",
              "rating": null,
              "shop_ad_aclk": "DChcSEwiosevgi-_oAhWCwMgKHfhnDrgYABACGgJxdQ",
              "product_condition": "Used",
              "product_annotation": "SALE"
            },
            {
              "type": "shops_list",
              "rank_group": 2,
              "rank_absolute": 2,
              "position": "right",
              "xpath": "/html[1]/body[1]/div[3]/div[2]/div[1]/div[1]/div[2]/div[3]/div[1]/table[1]/tbody[1]/tr[3]",
              "domain": null,
              "title": "Apple iPhone 8 Plus - 64 GB - Gold - T-Mobile - GSM",
              "url": "https://www.google.com/aclk?sa=l&ai=DChcSEwiosevgi-_oAhWCwMgKHfhnDrgYABADGgJxdQ&sig=AOD64_11Odeh4rT1BhaZXnPNtPsuALkfRw&adurl=&ctype=5&q=",
              "details": "· Free shipping · Refurbished",
              "base_price": 357.5,
              "tax": 31.73,
              "shipping_price": 5.00,
              "total_price": 389.23,
              "currency": "USD",
              "seller_name": "Back Market",
              "rating": {
                "type": "rating_element",
                "position": "left",
                "rating_type": "Percents",
                "value": "92",
                "votes_count": 10513,
                "rating_max": "100"
              },
              "shop_ad_aclk": "DChcSEwiosevgi-_oAhWCwMgKHfhnDrgYABADGgJxdQ",
              "product_condition": null,
              "product_annotation": null
            },
            {
              "type": "buy_on_google",
              "rank_group": 1,
              "rank_absolute": 1,
              "position": "right",
              "xpath": "/html[1]/body[1]/div[3]/div[2]/div[1]/div[1]/section[4]/div[2]/div[1]/table[1]/tbody[1]/tr[1]",
              "domain": null,
              "title": null,
              "url": "https://shopping.google.com/u/0/s?m=134330719&sa=X&ved=0ahUKEwimnLa_sq_sAhXbgnIEHU0HCXwQ2NsDCGE",
              "details": "Free delivery by Sat, Oct 17Free deliveryFree delivery means no shipping and service fees. Orders must meet store minimums before taxes and fees in select delivery areas.Return-eligible for 30 daysReturn policyYou can return this item for 30 days after delivery. A return fee may apply, depending on your return reason.If anything goes wrong with this order, you can count on Google to help.",
              "base_price": 108.89,
              "tax": 9.69,
              "shipping_price": null,
              "total_price": 118.58,
              "currency": "USD",
              "seller_name": "alldayzip",
              "rating": null,
              "shop_ad_aclk": null,
              "product_condition": null
            }
          ]
        }
      ]
    }
  ]
}

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/sellers/task_get/advanced/00000000-0000-0000-0000-000000000000
The response will include all available items in the Google Merchant Sellers 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 the 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 received in a POST array
learn more about the parameter in this help center guide
            type string search engine type
            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
            check_url string direct URL to Google Shopping 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 UTC format: “yyyy-mm-dd hh-mm-ss +00:00”
example:
2019-11-15 12:57:46 +00:00
            title string title of the product
            url string URL to the product page
            image_url string URL to the product image
            rating object product rating
the product popularity rate based on product reviews
                type string type of element = ‘rating_element’
                position string the alignment of the element in Google Shopping SERP
possible values:
left, right
                rating_type string the type of rating
here you can find the following elements: Max5, Percents, CustomMax
                value integer value of the rating
                votes_count integer the amount of feedback
                rating_max integer the maximum value for a rating_type
            item_types array types of search results found in Google Shopping SERP
contains types of all search results (items) found in the returned SERP
possible item types:
shops_list, buy_on_google
            items_count integer the number of results returned in the items array
            items array items in SERP
            ‘shops_list’ element
                type string type of element = ‘shops_list’
                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 in SERP
absolute position among all the elements found in Google Shopping SERP
                position string alignment of the element in SERP
can take the following values:
left, right
                xpath string XPath of the element
                domain string domain in SERP
                title string product title
                url string Google Shopping URL forwarding to the product page on the seller’s website
if you want to obtain a URL of the advertisement forwarding to the product page on the seller’s website, please refer to the Google Shopping Sellers Ad URL endpoint
                details string details and special offers
if there are no details, the value will be null
                base_price integer product price without tax and shipping
                tax integer the amount of tax
tax is specified as the actual amount of money, not as the percentage
                shipping_price integer product shipping price
                total_price integer product price including tax and shipping
                currency string currency in the ISO format
example:
USD
                seller_name string name of the seller
the name of the company that placed a corresponding product on Google Shopping
                rating object shop rating
the shop popularity rate based on product reviews
                    type string type of element = ‘rating_element’
                    rating_type string the type of rating
here you can find the following elements: Max5, Percents, CustomMax
                    value integer the value of the rating
                    votes_count integer the amount of feedback
                    rating_max integer the maximum value for a rating_type
                    position string the alignment of the element in Google Shopping SERP
possible values:
left, right
                shop_ad_aclk string unique ad click referral parameter
using this parameter you can get a URL of the advertisement in Google Shopping Sellers Ad URL
                product_condition string indicated condition of the product
possible values: Used, Refurbished, New, null
                product_annotation string data from annotations and badges with special offers
if there is no annotation for this product, the value will be null
examples: LOW PRICE, SPECIAL OFFER, SALE, PRICE DROP
            ‘buy_on_google’ element
                type string type of element = ‘buy_on_google’
                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 in SERP
absolute position among all the elements found in Google Shopping SERP
                position string alignment of the element in SERP
can take the following values:
left, right
                xpath string XPath of the element
                domain string domain in SERP
                title string product title
                url string Google Shopping URL forwarding to the product page
                details string details and special offers
if there are no details, the value will be null
                base_price integer product price without tax and shipping
                tax integer the amount of tax
tax is specified as the actual amount of money, not as the percentage
                shipping_price integer product shipping price
                total_price integer product price including tax and shipping
                currency string currency in the ISO format
example:
USD
                seller_name string name of the seller
the name of the company that placed a corresponding product on Google Shopping
                rating object shop rating
the shop popularity rate based on product reviews
                    type string type of element = ‘rating_element’
                    rating_type string the type of rating
here you can find the following elements: Max5, Percents, CustomMax
                    value integer the value of the rating
                    votes_count integer the amount of feedback
                    rating_max integer the maximum value for a rating_type
                    position string the alignment of the element in Google Shopping SERP
possible values:
left, right
                shop_ad_aclk string unique ad click referral parameter
using this parameter you can get a URL of the advertisement in Google Shopping Sellers Ad URL
in this case, the value equals null
                product_condition string indicated condition of the product
possible values: Used, Refurbished, New, null

‌‌