NAVNavbar
Logo
cURL php NodeJS Python cSharp

Get {{up_se_name}} {{up_se_type}} SERP Advanced 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/';
try {
	// Instead of 'login' and 'password' use your credentials from https://app.dataforseo.com/api-dashboard
	$client = new RestClient($api_url, null, 'login', 'password');
} 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";
	exit();
}
try {
	$result = array();
	// #1 - using this method you can get a list of completed tasks
	// GET /v3/serp/{{low_se_name}}/{{low_se_type}}/tasks_ready
	// in addition to '{{low_se_name}}' and '{{low_se_type}}' you can also set other search engine and type parameters
	// the full list of possible parameters is available in documentation
	$tasks_ready = $client->get('/v3/serp/{{low_se_name}}/{{low_se_type}}/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/serp/{{low_se_name}}/{{low_se_type}}/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/serp/{{low_se_name}}/{{low_se_type}}/task_get/advanced/$id
					/*
					if (isset($task_ready['id'])) {
						$result[] = $client->get('/v3/serp/{{low_se_name}}/{{low_se_type}}/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.20210129",
  "status_code": 20000,
  "status_message": "Ok.",
  "time": "14.1270 sec.",
  "cost": 0.003,
  "tasks_count": 1,
  "tasks_error": 0,
  "tasks": [
    {
      "id": "03021609-1535-0139-0000-50e46a37434e",
      "status_code": 20000,
      "status_message": "Ok.",
      "time": "14.0471 sec.",
      "cost": 0.003,
      "result_count": 1,
      "path": [
        "v3",
        "serp",
        "google",
        "maps",
        "task_get",
        "advanced"
      ],
      "data": {
        "api": "serp",
        "function": "task_get",
        "se": "google",
        "se_type": "maps",
        "location_code": 2840,
        "language_code": "en",
        "keyword": "albert einstein",
        "depth": 3,
        "device": "desktop",
        "os": "windows"
      },
      "result": [
        {
          "keyword": "albert einstein",
          "type": "maps",
          "se_domain": "google.com",
          "location_code": 2840,
          "language_code": "en",
          "check_url": "https://google.com/maps/search/albert+einstein/@37.09024,-95.712891,4z",
          "datetime": "2022-06-29 10:57:55 +00:00",
          "spell": null,
          "item_types": [
            "maps_search"
          ],
          "se_results_count": 0,
          "items_count": 3,
          "items": [
            {
              "type": "maps_search",
              "rank_group": 1,
              "rank_absolute": 1,
              "domain": "www.montgomeryschoolsmd.org",
              "title": "Albert Einstein High School",
              "url": "http://www.montgomeryschoolsmd.org/schools/einsteinhs/",
              "rating": {
                "rating_type": "Max5",
                "value": 4.4,
                "votes_count": 34,
                "rating_max": null
              },
              "rating_distribution": {
                "1": 3,
                "2": 0,
                "3": 3,
                "4": 3,
                "5": 25
              },
              "snippet": "11135 Newport Mill Rd, Kensington, MD 20895",
              "address": "11135 Newport Mill Rd, Kensington, MD 20895",
              "address_info": {
                "borough": null,
                "address": "11135 Newport Mill Rd",
                "city": "Kensington",
                "zip": "20895",
                "region": "Maryland",
                "country_code": "US"
              },
              "place_id": "ChIJKc00l-XOt4kR_M6kHi8yKw8",
              "phone": "+12407402700",
              "main_image": "https://lh5.googleusercontent.com/p/AF1QipPlw9wjQyqo-5QAvz70j1aVv9YkpZxE_VlCDItw=w408-h229-k-no",
              "total_photos": 6,
              "category": "High school",
              "additional_categories": null,
              "category_ids": [
                "high_school"
              ],
              "work_hours": {
                "timetable": {
                  "sunday": null,
                  "monday": [
                    {
                      "open": {
                        "hour": 7,
                        "minute": 45
                      },
                      "close": {
                        "hour": 14,
                        "minute": 30
                      }
                    }
                  ],
                  "tuesday": [
                    {
                      "open": {
                        "hour": 7,
                        "minute": 45
                      },
                      "close": {
                        "hour": 14,
                        "minute": 30
                      }
                    }
                  ],
                  "wednesday": [
                    {
                      "open": {
                        "hour": 7,
                        "minute": 45
                      },
                      "close": {
                        "hour": 14,
                        "minute": 30
                      }
                    }
                  ],
                  "thursday": [
                    {
                      "open": {
                        "hour": 7,
                        "minute": 45
                      },
                      "close": {
                        "hour": 14,
                        "minute": 30
                      }
                    }
                  ],
                  "friday": [
                    {
                      "open": {
                        "hour": 7,
                        "minute": 45
                      },
                      "close": {
                        "hour": 14,
                        "minute": 30
                      }
                    }
                  ],
                  "saturday": null
                },
                "current_status": "close"
              },
              "feature_id": "0x89b7cee59734cd29:0xf2b322f1ea4cefc",
              "cid": "1093022512526446332",
              "latitude": 39.0396857,
              "longitude": -77.0667632,
              "is_claimed": false
              "local_justifications": [
                {
                  "type": "user_review",
                  "text": "\"Delicious pastry and very friendly staff .\""
                }
              ],
              "is_directory_item": false
            },
            {
              "type": "maps_search",
              "rank_group": 2,
              "rank_absolute": 2,
              "domain": "www.nasonline.org",
              "title": "Albert Einstein Memorial",
              "url": "http://www.nasonline.org/about-nas/visiting-nas/nas-building/the-einstein-memorial.html",
              "rating": {
                "rating_type": "Max5",
                "value": 4.7,
                "votes_count": 1218,
                "rating_max": null
              },
              "rating_distribution": {
                "1": 4,
                "2": 10,
                "3": 49,
                "4": 185,
                "5": 970
              },
              "snippet": "2101 Constitution Ave. NW, Washington, DC 20418",
              "address": "2101 Constitution Ave. NW, Washington, DC 20418",
              "address_info": {
                "borough": "Northwest Washington",
                "address": "2101 Constitution Ave. NW",
                "city": "Washington",
                "zip": "20418",
                "region": "District of Columbia",
                "country_code": "US"
              },
              "place_id": "ChIJJZaaKqm3t4kRbBG17Vcv8Rg",
              "phone": null,
              "main_image": "https://lh5.googleusercontent.com/p/AF1QipOAdO6MVCZ288FO5mat3QLTo4W7k9a8d--r2MLM=w408-h542-k-no",
              "total_photos": 52,
              "category": "Sculpture",
              "additional_categories": [
                "Monument"
              ],
              "category_ids": [
                "sculpture",
                "monument"
              ],
              "work_hours": {
                "timetable": {
                  "sunday": [
                    {
                      "open": {
                        "hour": 0,
                        "minute": 0
                      },
                      "close": {
                        "hour": 0,
                        "minute": 0
                      }
                    }
                  ],
                  "monday": [
                    {
                      "open": {
                        "hour": 0,
                        "minute": 0
                      },
                      "close": {
                        "hour": 0,
                        "minute": 0
                      }
                    }
                  ],
                  "tuesday": [
                    {
                      "open": {
                        "hour": 0,
                        "minute": 0
                      },
                      "close": {
                        "hour": 0,
                        "minute": 0
                      }
                    }
                  ],
                  "wednesday": [
                    {
                      "open": {
                        "hour": 0,
                        "minute": 0
                      },
                      "close": {
                        "hour": 0,
                        "minute": 0
                      }
                    }
                  ],
                  "thursday": [
                    {
                      "open": {
                        "hour": 0,
                        "minute": 0
                      },
                      "close": {
                        "hour": 0,
                        "minute": 0
                      }
                    }
                  ],
                  "friday": [
                    {
                      "open": {
                        "hour": 0,
                        "minute": 0
                      },
                      "close": {
                        "hour": 0,
                        "minute": 0
                      }
                    }
                  ],
                  "saturday": [
                    {
                      "open": {
                        "hour": 0,
                        "minute": 0
                      },
                      "close": {
                        "hour": 0,
                        "minute": 0
                      }
                    }
                  ]
                },
                "current_status": "open"
              },
              "feature_id": "0x89b7b7a92a9a9625:0x18f12f57edb5116c",
              "cid": "1797269780994265452",
              "latitude": 38.8924028,
              "longitude": -77.0484139,
              "is_claimed": false,
              "local_justifications": null,
              "is_directory_item": false
            },
            {
              "type": "maps_search",
              "rank_group": 3,
              "rank_absolute": 3,
              "domain": null,
              "title": "Albert Einstein College",
              "url": null,
              "rating": {
                "rating_type": "Max5",
                "value": 5,
                "votes_count": 1,
                "rating_max": null
              },
              "rating_distribution": {
                "1": 0,
                "2": 0,
                "3": 0,
                "4": 0,
                "5": 1
              },
              "snippet": "1579 Rhinelander Ave, The Bronx, NY 10461",
              "address": "1579 Rhinelander Ave, The Bronx, NY 10461",
              "address_info": {
                "borough": "East Bronx",
                "address": "1579 Rhinelander Ave",
                "city": "The Bronx",
                "zip": "10461",
                "region": "New York",
                "country_code": "US"
              },
              "place_id": "ChIJy0l6JquMwokR79_6JVjiXAg",
              "phone": "+17188248024",
              "main_image": "https://streetviewpixels-pa.googleapis.com/v1/thumbnail?panoid=_5RiYHK0enGR8xBcUYRlkA&cb_client=search.gws-prod.gps&w=408&h=200&yaw=38.232224&pitch=0&thumbfov=100",
              "total_photos": 10,
              "category": "College",
              "additional_categories": null,
              "category_ids": [
                "college"
              ],
              "work_hours": {
                "timetable": null,
                "current_status": "close"
              },
              "feature_id": "0x89c28cab267a49cb:0x85ce25825fadfef",
              "cid": "602605318383001583",
              "latitude": 40.8559517,
              "longitude": -73.84116929999999,
              "is_claimed": true,
              "local_justifications": null,
              "is_directory_item": false
            }
          ]
        }
      ]
    }
  ]
}

Description of the fields for sending a request:

Field name Type Description
id string task identifier
a universally unique identifier (UUID)
unique task identifier in our system
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.

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 returned with 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
            keyword string keyword received in a POST array
the keyword is returned with decoded %## (plus symbol ‘+’ will be decoded to a space character)
            type string search engine type in a POST array
            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 search engine results
you can use it to make sure that we provided exact results
Note: to check location-specific results, follow the provided check url, scroll up and down, then click the “Search this area” button
            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
            spell object autocorrection of the search engine
if the search engine provided results for a keyword that was corrected, we will specify the keyword corrected by the search engine and the type of autocorrection
                keyword string keyword obtained as a result of search engine autocorrection
the results will be provided for the corrected keyword
                type string type of autocorrection
possible values:
did_you_mean, showing_results_for, no_results_found_for, including_results_for
            item_types array types of search results in SERP
contains types of search results (items) found in SERP.
possible item types:
maps_search, maps_paid_item
            se_results_count integer total number of results in SERP
            items_count integer the number of results returned in the items array
            items array elements of search results found in SERP
            ‘Google Maps’ SERP element
                type string type of element = ‘maps_search’
                rank_group integer group rank in SERP
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 in SERP
                domain string domain in the SERP element
                title string title of the result in SERP
                url string relevant URL in SERP
                rating object the element’s rating
the popularity rate based on reviews and displayed in SERP
                    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
                rating_distribution object the distribution of ratings of the business entity
the object displays the number of 1-star to 5-star ratings, as reviewed by users
                    1 integer the number of 1-star ratings
                    2 integer the number of 2-star ratings
                    3 integer the number of 3-star ratings
                    4 integer the number of 4-star ratings
                    5 integer the number of 5-star ratings
                snippet string element snippet
contains the address and other information about the local establishment featured in the element
                address string address line
address of the local establishment featured in the element
                address_info object object containing address components of the local establishment
                    borough string administrative unit or district the local establishment belongs to
                    address string street address of the local establishment
                    city string name of the city where the local establishment is located
                    zip string ZIP code of the local establishment
                    region string DMA region the local establishment belongs to
                    country_code string ISO country code of the local establishment
                place_id string unique place identifier
place id of the local establishment featured in the element
                phone string phone number
phone number of the local establishment featured in the element
                main_image string URL of the main image featured in Google My Business profile
                total_photos integer total count of images featured in Google My Business profile
                category string business category
Google My Business general category that best describes the services provided by the business entity
                additional_categories array additional business categories
additional Google My Business categories that describe the services provided by the business entity in more detail
                category_ids array global category IDs
universal category IDs that do not change based on the selected country
                work_hours object open hours
information about work hours of the local establishment
                timetable object work hours timetable
                  sunday array work hours on Sundays
                    open object opening time
                      hour integer hours in the 24-hour format
                      minute integer minutes
                    close object closing time
                      hour integer hours in the 24-hour format
                      minute integer minutes
                  monday array work hours on Mondays
                    open object opening time
                      hour integer hours in the 24-hour format
                      minute integer minutes
                    close object closing time
                      hour integer hours in the 24-hour format
                      minute integer minutes
                  tuesday array work hours on Tuesdays
                    open object opening time
                      hour integer hours in the 24-hour format
                      minute integer minutes
                    close object closing time
                      hour integer hours in the 24-hour format
                      minute integer minutes
                  wednesday array work hours on Wednesdays
                    open object opening time
                     hour integer hours in the 24-hour format
                     minute integer minutes
                    close object closing time
                     hour integer hours in the 24-hour format
                     minute integer minutes
                  thursday array work hours on Thursdays
                    open object opening time
                     hour integer hours in the 24-hour format
                     minute integer minutes
                    close object closing time
                     hour integer hours in the 24-hour format
                     minute integer minutes
                  friday array work hours on Fridays
                    open object opening time
                     hour integer hours in the 24-hour format
                     minute integer minutes
                    close object closing time
                     hour integer hours in the 24-hour format
                     minute integer minutes
                  saturday array work hours on Saturday
                    open object opening time
                     hour integer hours in the 24-hour format
                     minute integer minutes
                    close object closing time
                     hour integer hours in the 24-hour format
                     minute integer minutes
                current_status string current status of the establishment
indicates whether the establishment is opened or closed
               feature_id string the unique identifier of the element in SERP
               cid string google-defined client id
unique id of a local establishment;
can be used with Google Reviews API to get a full list of reviews
               latitude float latitude coordinate of the local establishments in google maps
example:
"latitude": 51.584091
               longitude float longitude coordinate of the local establishment in google maps
example:
"longitude": -0.31365919999999997
               is_claimed boolean indicates whether ownership of this local establishment is claimed
               local_justifications array Google local justifications
snippets of text that “justify” why the business is showing up for search query
                     type string type of local justification
posible values:
"user_review",
"website_mention",
"menu",
"other"
                     text string text snippet of local justification
               is_directory_item boolean indicates whether this local establishment is a directory
            ‘Local Search Ad’ SERP element
                type string type of element = ‘maps_paid_item’
                rank_group integer group rank in SERP
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 in SERP
                domain string domain in the SERP element
                title string title of the result in SERP
                url string relevant URL in SERP
                rating object the element’s rating
the popularity rate based on reviews and displayed in SERP
                    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
                rating_distribution object the distribution of ratings of the business entity
the object displays the number of 1-star to 5-star ratings, as reviewed by users
                    1 integer the number of 1-star ratings
                    2 integer the number of 2-star ratings
                    3 integer the number of 3-star ratings
                    4 integer the number of 4-star ratings
                    5 integer the number of 5-star ratings

‌‌