NAVNavbar
Logo
cURL php NodeJS Python cSharp

Get Amazon Reviews Results by id

 
This endpoint provides feedback data on products listed on the Amazon marketplace, including their titles, images, ratings, review content, user profile info, review publication dates, and more. The results are specific to the asin specified in the POST request.

Learn more about ASINs on this help center page.

We emulate set parameters with the highest accuracy so that the results you receive will match the actual search results for the specified parameters at the time of task setting. You can always check the returned results accessing the check_url in the Incognito mode to make sure the received data is entirely relevant. Note that user preferences, search history, and other personalized search factors are ignored by our system and thus would not be reflected in the returned results.

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/amazon/reviews/tasks_ready
	$tasks_ready = $client->get('/v3/merchant/amazon/reviews/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/amazon/reviews/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/amazon/reviews/task_get/advanced/$id
					/*
					if (isset($task_ready['id'])) {
						$result[] = $client->get('/v3/merchant/amazon/reviews/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.20220407",
    "status_code": 20000,
    "status_message": "Ok.",
    "time": "0.1642 sec.",
    "cost": 0,
    "tasks_count": 1,
    "tasks_error": 0,
    "tasks": [
        {
            "id": "04121315-2806-0415-0000-8a859ecb7fcd",
            "status_code": 20000,
            "status_message": "Ok.",
            "time": "0.0643 sec.",
            "cost": 0,
            "result_count": 1,
            "path": [
                "v3",
                "merchant",
                "amazon",
                "reviews",
                "task_get",
                "advanced",
                "04121315-2806-0415-0000-8a859ecb7fcd"
            ],
            "data": {
                "se_type": "reviews",
                "api": "merchant",
                "function": "reviews",
                "se": "amazon",
                "language_code": "en_US",
                "location_code": 2840,
                "asin": "B0773ZY26F",
                "priority": 2,
                "depth": 10,
                "device": "desktop",
                "os": "windows"
            },
            "result": [
                {
                    "asin": "B0773ZY26F",
                    "type": "reviews",
                    "se_domain": "amazon.com",
                    "location_code": 2840,
                    "language_code": "en_US",
                    "check_url": "https://www.amazon.com/product-reviews/B0773ZY26F?ie=UTF8&pageNumber=1&language=en_US&mediaType=media_reviews_only",
                    "datetime": "2022-04-12 10:15:30 +00:00",
                    "spell": null,
                    "title": "Sceptre 24\" Professional Thin 75Hz 1080p LED Monitor 2x HDMI VGA...",
                    "image": {
                        "type": "images_element",
                        "alt": "Sceptre 24\" Professional Thin 75Hz 1080p LED Monitor 2x HDMI VGA Build-in Speakers, Machine Black (E248W-19203R Series)",
                        "url": "https://amazon.com/Sceptre-E248W-19203R-Monitor-Speakers-Metallic/dp/B0773ZY26F/ref=cm_cr_arp_d_pdt_img_top?ie=UTF8",
                        "image_url": "https://m.media-amazon.com/images/I/51pUnYYWQBL._AC_US60_SCLZZZZZZZ__.jpg"
                    },
                    "rating": {
                        "type": "rating_element",
                        "position": "left",
                        "rating_type": "Max5",
                        "value": "4.6",
                        "votes_count": 17803,
                        "rating_max": "5"
                    },
                    "reviews_count": 172,
                    "item_types": [
                        "amazon_review_item"
                    ],
                    "items_count": 10,
                    "items": [
                        {
                            "type": "amazon_review_item",
                            "rank_group": 1,
                            "rank_absolute": 1,
                            "position": "right",
                            "xpath": "/html[1]/body[1]/div[1]/div[3]/div[1]/div[1]/div[1]/div[1]/div[5]/div[3]/div[1]/div[1]/div[1]/div[1]",
                            "verified": true,
                            "subtitle": "Reviewed in the United States on May 16, 2018",
                            "helpful_votes": 364,
                            "images": null,
                            "videos": [
                                {
                                    "type": "video_element",
                                    "source": "https://images-na.ssl-images-amazon.com/images/I/A1FKvO7s9aS.mp4",
                                    "preview": "https://images-na.ssl-images-amazon.com/images/I/71KG2tX0obS._SY256.png"
                                }
                            ],
                            "user_profile": {
                                "name": "Krassodo",
                                "avatar": "https://images-na.ssl-images-amazon.com/images/S/amazon-avatars-global/9838d2ea-3833-4fff-b106-73ad2f27501d._CR0,0,500,500_SX48_.jpg",
                                "url": "https://amazon.com/gp/profile/amzn1.account.AFY4NJGGBIHRJE3A773RXALIYYPA/ref=cm_cr_arp_d_gw_btm?ie=UTF8",
                                "reviews_count": null,
                                "locations": null
                            },
                            "title": "I like it but I don't love it....for good reasons",
                            "url": "https://amazon.com/gp/customer-reviews/R1B458N58WNZA8/ref=cm_cr_arp_d_rvw_ttl?ie=UTF8&ASIN=B0773ZY26F",
                            "review_text": "The monitor is great for pc and console gaming. My PC pc is able to take advantage of the 75hz refresh rate, the auto power on and auto source switching is convenient. The audio out port also saves me a lot of effort with my setup. Where this device looses stars is the defects. There is an over brighten set of pixels, fortunately they are only visible on all white screens. There is also this mark that looks as though there is a piece of plastic on the screen. I am not some professional gamer or content creater so I don't want to go through the hassell or requesting a new one. Im still going to use it and appreciate the good things about it. 5 stars if it did not have these scars.",
                            "publication_date": "2018-05-16 00:00:00 +00:00",
                            "rating": {
                                "rating_type": "Max5",
                                "value": 3,
                                "votes_count": null,
                                "rating_max": 5
                            }
                        },
                        {
                            "type": "amazon_review_item",
                            "rank_group": 2,
                            "rank_absolute": 2,
                            "position": "right",
                            "xpath": "/html[1]/body[1]/div[1]/div[3]/div[1]/div[1]/div[1]/div[1]/div[5]/div[3]/div[1]/div[2]/div[1]/div[1]",
                            "verified": true,
                            "subtitle": "Reviewed in the United States on February 16, 2018",
                            "helpful_votes": 447,
                            "images": [
                                {
                                    "type": "images_element",
                                    "alt": "Customer image",
                                    "url": null,
                                    "image_url": "https://images-na.ssl-images-amazon.com/images/I/81A5TsfU3dL._SY88.jpg"
                                }
                            ],
                            "videos": null,
                            "user_profile": {
                                "name": "JMinton",
                                "avatar": "https://images-na.ssl-images-amazon.com/images/S/amazon-avatars/default._CR0,0,1024,1024_SX48_.png",
                                "url": "https://amazon.com/gp/profile/amzn1.account.AHSRKZ6ZKOK3MZ6PEH6B5KQTJ2MA/ref=cm_cr_arp_d_gw_btm?ie=UTF8",
                                "reviews_count": null,
                                "locations": null
                            },
                            "title": "My go-to for office monitors.",
                            "url": "https://amazon.com/gp/customer-reviews/R35YK7MY1BTNMK/ref=cm_cr_arp_d_rvw_ttl?ie=UTF8&ASIN=B0773ZY26F",
                            "review_text": "Needed two new monitors for a new PC in the office. Went with this because it was the best value in terms of size vs price. I'd also purchased these for clients in the past and heard they were happy with them. After seeing the complaints about the colors being washed out, I gave my monitors away and decided if there were any problems with these I'd either live with it or fix it.\nOut of the box the monitors were fine. The only complaint I can come up with is that the VESA mounts are lower on the back due to the slim design. After looking at settings, I determined that for me as an IT manager I didn't need to recalibrate the screens at all. Granted, I spend most of my time looking at text documents, configuration pages for network equipment, and the accounting software my company uses. I couldn't speak to color calibration for individuals doing video or photo production.\nOne thought on the others experiencing washed out colors - HDMI out on a computer kind of expects a TV. Televisions and Monitors will sometimes have different ranges for black levels, which can cause the screen to look washed out. If you're experiencing this, check the control panel for your graphics driver. You should be able to adjust black levels and fix the issue. This has been a driving factor in my preference for just about anything over HDMI. (Display Port is king, for what it's worth.)",
                            "publication_date": "2018-02-16 00:00:00 +00:00",
                            "rating": {
                                "rating_type": "Max5",
                                "value": 5,
                                "votes_count": null,
                                "rating_max": 5
                            }
                        },
                        {
                            "type": "amazon_review_item",
                            "rank_group": 3,
                            "rank_absolute": 3,
                            "position": "right",
                            "xpath": "/html[1]/body[1]/div[1]/div[3]/div[1]/div[1]/div[1]/div[1]/div[5]/div[3]/div[1]/div[3]/div[1]/div[1]",
                            "verified": true,
                            "subtitle": "Reviewed in the United States on November 30, 2018",
                            "helpful_votes": 106,
                            "images": [
                                {
                                    "type": "images_element",
                                    "alt": "Customer image",
                                    "url": null,
                                    "image_url": "https://images-na.ssl-images-amazon.com/images/I/615n8jmVsAL._SY88.jpg"
                                },
                                {
                                    "type": "images_element",
                                    "alt": "Customer image",
                                    "url": null,
                                    "image_url": "https://images-na.ssl-images-amazon.com/images/I/71yROmFPOGL._SY88.jpg"
                                },
                                {
                                    "type": "images_element",
                                    "alt": "Customer image",
                                    "url": null,
                                    "image_url": "https://images-na.ssl-images-amazon.com/images/I/81VZhGsq5VL._SY88.jpg"
                                }
                            ],
                            "videos": null,
                            "user_profile": {
                                "name": "Phil Mendoza",
                                "avatar": "https://images-na.ssl-images-amazon.com/images/S/amazon-avatars-global/default._CR0,0,1024,1024_SX48_.png",
                                "url": "https://amazon.com/gp/profile/amzn1.account.AGEGZNPH6R6KPPIBNRKYLAQCBMBQ/ref=cm_cr_arp_d_gw_btm?ie=UTF8",
                                "reviews_count": null,
                                "locations": null
                            },
                            "title": "Black line of dead pixels after 2 HOURS of use",
                            "url": "https://amazon.com/gp/customer-reviews/R30SVHA4AOV0XH/ref=cm_cr_arp_d_rvw_ttl?ie=UTF8&ASIN=B0773ZY26F",
                            "review_text": "PRO:\nThe built in speaker was a nice surprise. Not mind-blowing quality, but good. I enjoyed it for the two hours this monitor worked.\nCON:\nSee attached pictures. Extremely disappointed that this item has an \"Amazon's choice\" icon. After using this as a second monitor to watch youtube for only two hours, a black line appeared straight down the middle of the screen, top to bottom. Restarted the monitor and the PC, but the line is even in the monitor's \"SCEPTRE\" splash screen AND the \"Cannot detect input!\" screen.\nOverall would not recommend this.",
                            "publication_date": "2018-11-30 00:00:00 +00:00",
                            "rating": {
                                "rating_type": "Max5",
                                "value": 1,
                                "votes_count": null,
                                "rating_max": 5
                            }
                        },
                        {
                            "type": "amazon_review_item",
                            "rank_group": 4,
                            "rank_absolute": 4,
                            "position": "right",
                            "xpath": "/html[1]/body[1]/div[1]/div[3]/div[1]/div[1]/div[1]/div[1]/div[5]/div[3]/div[1]/div[4]/div[1]/div[1]",
                            "verified": true,
                            "subtitle": "Reviewed in the United States on July 28, 2020",
                            "helpful_votes": 23,
                            "images": [
                                {
                                    "type": "images_element",
                                    "alt": "Customer image",
                                    "url": null,
                                    "image_url": "https://images-na.ssl-images-amazon.com/images/I/71y29fxUh7L._SY88.jpg"
                                }
                            ],
                            "videos": null,
                            "user_profile": {
                                "name": "Nancy",
                                "avatar": "https://images-na.ssl-images-amazon.com/images/S/amazon-avatars-global/default._CR0,0,1024,1024_SX48_.png",
                                "url": "https://amazon.com/gp/profile/amzn1.account.AHOOBOZ7FTZJFMIF6OKZNOC4ZJKA/ref=cm_cr_arp_d_gw_btm?ie=UTF8",
                                "reviews_count": null,
                                "locations": null
                            },
                            "title": "Cheap",
                            "url": "https://amazon.com/gp/customer-reviews/R2IZ034LTUN38R/ref=cm_cr_arp_d_rvw_ttl?ie=UTF8&ASIN=B0773ZY26F",
                            "review_text": "You get what you pay for and you don’t pay much for this monitor and that’s what you get is not much. Colors are dull and it is not a crisp picture.  The picture compares the picture quality. This monitor is on the left",
                            "publication_date": "2020-07-28 00:00:00 +00:00",
                            "rating": {
                                "rating_type": "Max5",
                                "value": 2,
                                "votes_count": null,
                                "rating_max": 5
                            }
                        },
                        {
                            "type": "amazon_review_item",
                            "rank_group": 5,
                            "rank_absolute": 5,
                            "position": "right",
                            "xpath": "/html[1]/body[1]/div[1]/div[3]/div[1]/div[1]/div[1]/div[1]/div[5]/div[3]/div[1]/div[5]/div[1]/div[1]",
                            "verified": true,
                            "subtitle": "Reviewed in the United States on January 10, 2019",
                            "helpful_votes": 20,
                            "images": [
                                {
                                    "type": "images_element",
                                    "alt": "Customer image",
                                    "url": null,
                                    "image_url": "https://images-na.ssl-images-amazon.com/images/I/7176j9BYSVL._SY88.jpg"
                                }
                            ],
                            "videos": null,
                            "user_profile": {
                                "name": "Jason A. Farque'",
                                "avatar": "https://images-na.ssl-images-amazon.com/images/S/amazon-avatars-global/8ca46c57-3eaf-499b-a5b5-013d9886f5c2._CR0,0.0,333,333_SX48_.jpg",
                                "url": "https://amazon.com/gp/profile/amzn1.account.AH76UVI3AFU33QVMG4LC7UOPHZPQ/ref=cm_cr_arp_d_gw_btm?ie=UTF8",
                                "reviews_count": null,
                                "locations": null
                            },
                            "title": "Surprisingly good HDMI monitor!",
                            "url": "https://amazon.com/gp/customer-reviews/R24IJOF5P77S4H/ref=cm_cr_arp_d_rvw_ttl?ie=UTF8&ASIN=B0773ZY26F",
                            "review_text": "I purchased two of these displays to use as accessory monitors in my gaming machine (see photo). I spent a significant amount of money on curved MSI 32\" 1440p displays as the primary gaming monitors but wanted something smaller and less expensive for the secondary monitors for displaying YouTube videos, Netflix, web pages, etc.\nAfter receiving the monitors and using them for a week I have to say I'm really quite pleasantly surprised with both the image on the displays as well as the fit and finish of them. Right out of the box I was pleasantly surprised with the very good packaging and the light weight and thinness of the displays themselves; I've found no dead or stuck pixels so far.\nAdditionally, as you can see, I needed them VESA mounted and when I initially saw the back of them I moaned because they have a mounting stud sticking out of the VESA area for their stands. But a few seconds later I realized that lo-and-behold Sceptre had included standoffs and hardware necessary to accomplish a VESA mount! They even included a small screwdriver! They could have cheaped out on including that hardware (my expensive MSI curved displays did and are not VESA mountable out of the box) but these little guys didn't. Good show, Sceptre.\nI haven't used the stands so I cannot comment on those, but text is clear, color is good and the built-in menus are simple and effective. I have to say, for a monitor at this price-point I'm pretty impressed.",
                            "publication_date": "2019-01-10 00:00:00 +00:00",
                            "rating": {
                                "rating_type": "Max5",
                                "value": 5,
                                "votes_count": null,
                                "rating_max": 5
                            }
                        },
                        {
                            "type": "amazon_review_item",
                            "rank_group": 6,
                            "rank_absolute": 6,
                            "position": "right",
                            "xpath": "/html[1]/body[1]/div[1]/div[3]/div[1]/div[1]/div[1]/div[1]/div[5]/div[3]/div[1]/div[6]/div[1]/div[1]",
                            "verified": true,
                            "subtitle": "Reviewed in the United States on August 7, 2020",
                            "helpful_votes": 5,
                            "images": [
                                {
                                    "type": "images_element",
                                    "alt": "Customer image",
                                    "url": null,
                                    "image_url": "https://images-na.ssl-images-amazon.com/images/I/61DFgn-wy4L._SY88.jpg"
                                }
                            ],
                            "videos": null,
                            "user_profile": {
                                "name": "A. Wendt",
                                "avatar": "https://images-na.ssl-images-amazon.com/images/S/amazon-avatars-global/default._CR0,0,1024,1024_SX48_.png",
                                "url": "https://amazon.com/gp/profile/amzn1.account.AEQDWXMJFDRX4WLIVRDBRR3ASBSA/ref=cm_cr_arp_d_gw_btm?ie=UTF8",
                                "reviews_count": null,
                                "locations": null
                            },
                            "title": "Great price for size but small speaker's",
                            "url": "https://amazon.com/gp/customer-reviews/RJCBT3QG5XX4Q/ref=cm_cr_arp_d_rvw_ttl?ie=UTF8&ASIN=B0773ZY26F",
                            "review_text": "I bought 4 of these monitors for the wife to work from home during Pandemic!\nMounted all on a single monitor stand through Amazon.  Looks great!\nAll worked great and wife is no longer wearing cheaters glasses to read emails off of her laptop!\nHooked my tower computer to all four and love to watch streaming YouTube and Roku videos at same time while\nShopping on Amazon when the wife allows me her new office.\nSuggestions,\nGet power extension cables since the power wall jacks have short cables! Get them off of desk top\nGet surge strip for power cables!\nGet usb powered speakers, these monitor have small speakers that are just two small for office home use!\nGet a wireless keyboard set for no more wires!\nGet plenty of zip ties to secure cables to monitor stands!\nNow you have clean desk top and plenty of room for documents.",
                            "publication_date": "2020-08-07 00:00:00 +00:00",
                            "rating": {
                                "rating_type": "Max5",
                                "value": 4,
                                "votes_count": null,
                                "rating_max": 5
                            }
                        },
                        {
                            "type": "amazon_review_item",
                            "rank_group": 7,
                            "rank_absolute": 7,
                            "position": "right",
                            "xpath": "/html[1]/body[1]/div[1]/div[3]/div[1]/div[1]/div[1]/div[1]/div[5]/div[3]/div[1]/div[7]/div[1]/div[1]",
                            "verified": true,
                            "subtitle": "Reviewed in the United States on March 20, 2020",
                            "helpful_votes": 8,
                            "images": [
                                {
                                    "type": "images_element",
                                    "alt": "Customer image",
                                    "url": null,
                                    "image_url": "https://images-na.ssl-images-amazon.com/images/I/81Sw2nD7S8L._SY88.jpg"
                                },
                                {
                                    "type": "images_element",
                                    "alt": "Customer image",
                                    "url": null,
                                    "image_url": "https://images-na.ssl-images-amazon.com/images/I/91yQboYqaML._SY88.jpg"
                                }
                            ],
                            "videos": null,
                            "user_profile": {
                                "name": "Scottie Gee",
                                "avatar": "https://images-na.ssl-images-amazon.com/images/S/amazon-avatars-global/9bc61aed-8f21-44f6-b7ea-5cdc88f84ac7._CR0,0,500,500_SX48_.jpg",
                                "url": "https://amazon.com/gp/profile/amzn1.account.AHRZRAPPSSXAO6KZCZVVQXEK5SHA/ref=cm_cr_arp_d_gw_btm?ie=UTF8",
                                "reviews_count": null,
                                "locations": null
                            },
                            "title": "One dead pixel just spoiled the whole bunch, girl!",
                            "url": "https://amazon.com/gp/customer-reviews/RY3MGJW8L4RNU/ref=cm_cr_arp_d_rvw_ttl?ie=UTF8&ASIN=B0773ZY26F",
                            "review_text": "Original review March 19, 2020\nAs a graphic designer, one dead pixel is a deal breaker! Picture quality is great, but still ordered a replacement. If there’s another dead pixel in the replacement, then we are done. Stand by!\nUPDATE: March 25, 2020\nReceived replacement which also had a defect ... an odd black blemish deep below the screen surface.  Too Bad! It went back 10 minutes ago and the first one will go back as soon as I get a suitable replacement. Changed my rating from 2 stars to 1. I DO NOT recommend this monitor ... one dead pixel is one too many!",
                            "publication_date": "2020-03-20 00:00:00 +00:00",
                            "rating": {
                                "rating_type": "Max5",
                                "value": 1,
                                "votes_count": null,
                                "rating_max": 5
                            }
                        },
                        {
                            "type": "amazon_review_item",
                            "rank_group": 8,
                            "rank_absolute": 8,
                            "position": "right",
                            "xpath": "/html[1]/body[1]/div[1]/div[3]/div[1]/div[1]/div[1]/div[1]/div[5]/div[3]/div[1]/div[8]/div[1]/div[1]",
                            "verified": true,
                            "subtitle": "Reviewed in the United States on March 27, 2019",
                            "helpful_votes": 9,
                            "images": null,
                            "videos": [
                                {
                                    "type": "video_element",
                                    "source": "https://m.media-amazon.com/images/S/vse-vms-transcoding-artifact-us-east-1-prod/ac37ca4f-42e5-4cfe-9662-e73b5a211dca/default.jobtemplate.hls.m3u8",
                                    "preview": "https://m.media-amazon.com/images/I/31g6tK0pR4L._SY256._SY256.jpg"
                                }
                            ],
                            "user_profile": {
                                "name": "Chinedu P. Opara",
                                "avatar": "https://images-na.ssl-images-amazon.com/images/S/amazon-avatars-global/fb4830b6-738b-465f-a1b3-b1f210787a42._CR0,0,400,400_SX48_.jpg",
                                "url": "https://amazon.com/gp/profile/amzn1.account.AEBD22J767ELCY5MUHAPX57ZM4MQ/ref=cm_cr_arp_d_gw_btm?ie=UTF8",
                                "reviews_count": null,
                                "locations": null
                            },
                            "title": "Great value for the price!",
                            "url": "https://amazon.com/gp/customer-reviews/R2I1ZMRA2BERHZ/ref=cm_cr_arp_d_rvw_ttl?ie=UTF8&ASIN=B0773ZY26F",
                            "review_text": "The monitors arrived in good condition, and as you can see in the video, I mounted them on the dual-monitor stand that was part of the same order. It's set up a little awkwardly for now, since I am not sure I wanna drill holes in my desk yet. The monitors come with \"riser\" screws (I think they are called) in order to facilitate mounting on VESA-compatible monitor arms.\nThe monitors are light, sleek, and seem to work well so far. The picture quality doesn't disappoint! Very good value for $99.\nI'll update this review in the near future, after using the products for a few months.",
                            "publication_date": "2019-03-27 00:00:00 +00:00",
                            "rating": {
                                "rating_type": "Max5",
                                "value": 5,
                                "votes_count": null,
                                "rating_max": 5
                            }
                        },
                        {
                            "type": "amazon_review_item",
                            "rank_group": 9,
                            "rank_absolute": 9,
                            "position": "right",
                            "xpath": "/html[1]/body[1]/div[1]/div[3]/div[1]/div[1]/div[1]/div[1]/div[5]/div[3]/div[1]/div[9]/div[1]/div[1]",
                            "verified": true,
                            "subtitle": "Reviewed in the United States on August 9, 2021",
                            "helpful_votes": 1,
                            "images": [
                                {
                                    "type": "images_element",
                                    "alt": "Customer image",
                                    "url": null,
                                    "image_url": "https://m.media-amazon.com/images/I/91QeUMrKfbL._SY88.jpg"
                                },
                                {
                                    "type": "images_element",
                                    "alt": "Customer image",
                                    "url": null,
                                    "image_url": "https://m.media-amazon.com/images/I/A19b1vO061L._SY88.jpg"
                                }
                            ],
                            "videos": null,
                            "user_profile": {
                                "name": "Sav",
                                "avatar": "https://images-na.ssl-images-amazon.com/images/S/amazon-avatars-global/default._CR0,0,1024,1024_SX48_.png",
                                "url": "https://amazon.com/gp/profile/amzn1.account.AEB3PL6YGKQURERWOOKCKMR7JFBQ/ref=cm_cr_arp_d_gw_btm?ie=UTF8",
                                "reviews_count": null,
                                "locations": null
                            },
                            "title": "Extremely temperamental - can never disconnect",
                            "url": "https://amazon.com/gp/customer-reviews/R3EZ7IC5ZKMSTA/ref=cm_cr_arp_d_rvw_ttl?ie=UTF8&ASIN=B0773ZY26F",
                            "review_text": "Long story short: any disconnection from the main monitor makes it extremely difficult to reset the monitor display.\nI bought two of these to replace my old monitors. I work from home, am in college online, and play some PC games. What I used to do (and was hoping to continue doing) was keep my work laptop connected to the two monitors during the work day, then just switch my work laptop with my personal one and continue using them for school/games.\nHowever, ANY kind of disconnection makes it an extreme hassle to get these set back up. I mean any. I disconnected the HDMI cord from my work laptop the first day, and it took 2 hours (of constantly restarting and reconnecting) to get the displays set back up again. I resolved to just use these for work, but I genuinely may have to return them. Even when I just turn off my laptop at night - every morning when I go to turn it all back on at least one of them will not connect (picture is from this morning, just turning my laptop on. This has happened every morning since I’ve gotten these monitors.) and it wouldn’t be as big of a deal if it was just as easy as disconnecting and reconnecting the hdmi cords to reset the displays. But it’s not. I have to restart my computer with the monitors disconnected and powered off, then when my laptop restarts I have to take it off its port and reconnect that, then turn power the monitors on, then connect the hdmi cables. And it takes at least 3-4 times of doing it in that exact order before the monitors finally register that they’re connected and extend my laptop display. That’s an hour every morning just tinkering with a monitor. Which sucks because I spent so much time mounting these things.\nI’ve never had this issue with any monitors I’ve had in the past. I’m not sure what causes the disruption. I even tried replacing the HDMI cables thinking that may be the cause. But spending an hour each morning restarting my computer to try and get the monitor to register that it is, in fact, connected makes the picture resolution/other perks null and void in my opinion. If you can keep your main monitor/computer constantly turned on then maybe these are good monitors for you. Otherwise I’d suggest another monitor.",
                            "publication_date": "2021-08-09 00:00:00 +00:00",
                            "rating": {
                                "rating_type": "Max5",
                                "value": 2,
                                "votes_count": null,
                                "rating_max": 5
                            }
                        },
                        {
                            "type": "amazon_review_item",
                            "rank_group": 10,
                            "rank_absolute": 10,
                            "position": "right",
                            "xpath": "/html[1]/body[1]/div[1]/div[3]/div[1]/div[1]/div[1]/div[1]/div[5]/div[3]/div[1]/div[10]/div[1]/div[1]",
                            "verified": true,
                            "subtitle": "Reviewed in the United States on July 16, 2020",
                            "helpful_votes": null,
                            "images": [
                                {
                                    "type": "images_element",
                                    "alt": "Customer image",
                                    "url": null,
                                    "image_url": "https://images-na.ssl-images-amazon.com/images/I/715czh3CfEL._SY88.jpg"
                                },
                                {
                                    "type": "images_element",
                                    "alt": "Customer image",
                                    "url": null,
                                    "image_url": "https://images-na.ssl-images-amazon.com/images/I/71kCPw-3l3L._SY88.jpg"
                                },
                                {
                                    "type": "images_element",
                                    "alt": "Customer image",
                                    "url": null,
                                    "image_url": "https://images-na.ssl-images-amazon.com/images/I/71lQkA7yoGL._SY88.jpg"
                                }
                            ],
                            "videos": null,
                            "user_profile": {
                                "name": "Sean Crawford Sr.",
                                "avatar": "https://images-na.ssl-images-amazon.com/images/S/amazon-avatars-global/default._CR0,0,1024,1024_SX48_.png",
                                "url": "https://amazon.com/gp/profile/amzn1.account.AFN3OOAWWQFAAZMFCCMZUV7XNKYA/ref=cm_cr_arp_d_gw_btm?ie=UTF8",
                                "reviews_count": null,
                                "locations": null
                            },
                            "title": "Nice for the price",
                            "url": "https://amazon.com/gp/customer-reviews/R16YTSK3EMC9VE/ref=cm_cr_arp_d_rvw_ttl?ie=UTF8&ASIN=B0773ZY26F",
                            "review_text": "So the monitor I had for 5 years decided to stop working and forced me to buy a new on. I searched and came across this one. (Side note-I will check here on Amazon before I check somewhere else.\nI read the reviews on this monitor and was satisfied enough to make the purchase. Not one but, two. 2 24” monitors. Although the arrived a day later than the original target. Although had I not checked to see if they were delivered (because no one knock on the door, they dropped and left) I would have missed this fantastic product.\nIt fits perfectly in the spaces and no configurations were required. Picture is sharp and full screen. This was a great bargain and YES I would recommend it.\nNow I can do my podcast and monitor my radio station with a much better view. These monitors make the workspace sexy 😁",
                            "publication_date": "2020-07-16 00:00:00 +00:00",
                            "rating": {
                                "rating_type": "Max5",
                                "value": 5,
                                "votes_count": null,
                                "rating_max": 5
                            }
                        }
                    ]
                }
            ]
        }
    ]
}

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/amazon/reviews/task_get/advanced/00000000-0000-0000-0000-000000000000
The response will include all available items in the Amazon Reviews 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
            asin string asin received in a POST array
            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 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
            spell object autocorrection of the search engine
in this case, the value will be null
            title string title of the product on Amazon
the title of the product for which the reviews are collected
            image object product image data
                type string type of element = ‘images_element’
                alt string alt tag of the image
                url string relevant url
                image_url string URL of the product image featured in the results
            rating object rating of the product on Amazon
popularity rate based on reviews and displayed in SERP
                type string type of element = ‘rating_element’
                position string the alignment of the element in Amazon SERP
can take the following values:
left, right
                rating_type string type of rating
here you can find the following elements: Max5, Percents, CustomMax
                value float the average rating based on all reviews
                votes_count integer the number of votes
                rating_max integer the maximum value for a rating_type
            reviews_count integer the total number of reviews
            item_types array type of search results in Amazon SERP
contains types of search results (items) found in Amazon SERP;
possible item types:
amazon_review_item
            items_count integer the number of reviews items in the results array
you can get more results by using the depth parameter when setting a task
            items array found reviews
you can get more results by using the depth parameter when setting a task
                type string the review’s type
possible review types: "amazon_review_item"
                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 among all the listed reviews
absolute position among all reviews on the list
                position string the alignment of the review in SERP
can take the following values: right
                xpath string the XPath of the element
                verified boolean indicates whether the review has the “Verified Purchase” mark
                subtitle string subtitle of the review
                helpful_votes integer helpful votes count
number of users who clicked on the ‘Helpful” button under the review text
                images array images of the product submitted by the reviewer
                    type string type of element = ‘images_element’
                    alt string alt tag of the image
                    url string relevant url
                    image_url string URL of the product image featured in the review
                videos array videos of the product submitted by the reviewer
                    type string type of element = ‘video_element’
                    source string URL to the video source
                    preview string URL to the video preview image
                user_profile object user profile of the reviewer
                    name string the name of the reviewer
                    avatar string URL to the profile picture of the reviewer
                    url string URL to the reviewer’s profile
                    reviews_count integer total number of reviews submitted by the reviewer
                    locations string country of the reviewer
                title string title of the review
                url string URL to the review
                review_text string content of the review
                publication_date string date and time when the review was published
in the UTC format: “yyyy-mm-dd hh-mm-ss +00:00”;
example:
2019-11-15 12:57:46 +00:00
                rating object the rating score submitted by the reviewer
                    rating_type string the type of the rating
can take the following values: Max5
                    value float the value of the rating
                    votes_count integer the amount of feedback
in this case, the value will be null
                    rating_max integer the maximum value for a rating_type
the maximum value for Max5 is 5

‌‌