Amazon Product Reviews API
Scrape Amazon product reviews instantly with a simple API call
A GET request to our /api/getter/?platform="amazon_reviews"
endpoint allows you to scrape customer reviews for any product listing URL on Amazon.com in real-time.
Amazon Login Required
As of November 5th, 2024, Amazon now requires users to be logged in to view product reviews. To continue scraping more than the 8 most recent reviews, you'll need to provide your Amazon account's cookie with your API requests.
Scrape Reviews with Cookie
We've updated our API to support authenticated requests. Simply provide your Amazon account's cookie and continue scraping reviews as before. See the Cookie section below for detailed instructions on how to obtain and use your cookie.
New! Fetch Multiple Pages in One Request
You can now retrieve up to 10 pages of reviews (100 reviews) in a single API request using the new max_pages
parameter. This simplifies your integration and reduces the number of API calls needed.
Example
Here's how you can scrape reviews for this Dyson vacuum with our API — using either the product URL or ASIN with country code:
1 |
|
1 2 3 4 5 |
|
1 2 3 |
|
1 2 3 4 5 6 |
|
1 2 3 4 5 6 |
|
In this example, we're fetching critical reviews (1-2 stars) with media that are sorted by recency for the Dyson V8 vacuum. We're using the ASIN with country code format, and requesting up to 10 pages in a single call.
Pagination Example
When you need to retrieve reviews beyond the first page, simply increment the page parameter:
1 2 3 4 5 6 7 8 9 10 11 12 |
|
Multi-Page Example (New!)
You can now fetch multiple pages in a single request using the max_pages
parameter:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
|
1 2 3 4 5 6 7 8 |
|
Pagination Best Practices
Always start with page 1 for each new product. This ensures you get the most recent reviews and establishes a proper session.
If a request fails after page 1, start your retry with page 1. This is necessary to re-establish the session.
Query Parameters
Our endpoint accepts the following query parameters:
Product URL
url
Required if asin
not provided
Product listing's URL on Amazon. Remove unnecessary query parameters and encode the URL.
* **Do not mix page & filter jumps:** on Amazon's site, choosing a star filter always resets the view to page 1. Likewise, jumping to a different page keeps the existing filter. Respect this behaviour in your API calls—change **one** of `page` *or* any filter parameter per request, not both.
Getting the Cookie
Need help getting the cookie from your Amazon account? Follow this step-by-step guide.
Cookie Country
The cookie must be from an Amazon account registered in the same country as the Amazon domain you're accessing. For example, to scrape amazon.co.uk, use a cookie from a UK Amazon account.
8 Most Recent Reviews without Cookie
If getting the cookie from your Amazon account is not an option for you, you can still retrieve the 8 most recent reviews without the cookie. For the 8 top reviews, consider using the Amazon Product Data API.
Filtering Most Recent Unavailable without Cookie
Starting, 26th February 2025, Amazon has disabled the ability to view the 8 most recent reviews without a cookie. If you want to scrape the recent reviews for your product, you'll need to provide your Amazon account's cookie.
The Amazon Reviews API without cookie was briefly working but Amazon has now disabled it again. It appears that they have removed this option from their site altogether.
404 Error
If you receive a 404 error, this usually means the product is no longer available on Amazon. When using the API without a cookie, instead of a 404 error, you'll receive an empty response - but a credit will still be deducted from your account. To avoid unnecessary credit usage, we recommend first verifying the product's availability using our Amazon Product Data API before making a review request.
ASIN
asin
Required if url
not provided
The Amazon Standard Identification Number (ASIN) for the product. Required if url
is not provided.
Country Code
country_code
Required if asin
provided, otherwise optional
The 2-letter country code for the Amazon marketplace. Defaults to us
if not provided. See the Supported Countries section below for valid values.
Page Number
page
Optional
The page number for which you want the results. Default value is 1.
When not providing a cookie, you can only access the first page.
Please note that Amazon removed the ability to view reviews beyond page 10 starting July 2023.
When using max_pages
, this parameter specifies the starting page number.
Max Pages NEW
max_pages
Optional
The maximum number of pages to retrieve in a single request. Default value is 1.
Maximum allowed value is 10 pages (up to 100 reviews in one request).
The API will fetch pages sequentially starting from the page
parameter. For example, if page=3
and max_pages=5
, the API will attempt to fetch pages 3, 4, 5, 6, and 7.
Important: You are charged credits based on the actual number of pages fetched, not the requested max_pages value. The response includes a pages_fetched
field indicating how many pages were successfully retrieved.
If any page fails during multi-page fetching, the API returns all successfully fetched reviews up to that point rather than failing the entire request.
Critical Pagination Guidelines
1. Always start with page 1 for each new product - This is essential for establishing a proper session and getting the most recent reviews.
2. If a request fails after page 1, start your retry with page 1 - This is necessary to re-establish the session. Always begin retries from page 1, not from the failed page number.
3. When using max_pages, requests are made sequentially - The API automatically adds small random delays (up to 300ms) between page requests to improve success rates.
Sequential Requests for Better Success Rate
To achieve optimal success rates when scraping multiple pages of reviews:
- Make paginated requests sequentially - Always wait for one page request to complete before requesting the next page. Concurrent or parallel requests for the same product will likely fail.
- Respect rate limits per cookie - Each cookie has its own rate limit. Making requests too quickly with the same cookie will trigger Amazon's anti-bot protections and result in failed requests.
- Add delays between requests - Consider adding a 1-2 second delay between successive page requests to avoid triggering rate limits.
- Use max_pages for convenience - The new
max_pages
parameter handles sequential pagination automatically with built-in delays, improving success rates.
Following these practices will significantly improve your success rate and reduce the likelihood of your requests being blocked.
Page Limit
Even when the response mentions the no_of_pages
as greater than 10, the maximum page
number for which you can query reviews with the API is 10. This is because Amazon does not let users view reviews beyond page 10.
Using Filters
You can use all filtering and sorting options on page 1 and subsequent pages when providing a cookie. This includes sort_by
, filter_by_star
, media_type
, format_type
, reviewer_type
, and filter_by_keyword
.
Cookie Usage
While the response includes an updated cookie value in the meta_data
section, you do not need to use this updated cookie for pagination. You can continue using your original cookie for all requests.
Restrictions without Cookie
When not providing a cookie, the page
parameter defaults to 1
and cannot be changed and the following parameters are not supported: sort_by
, filter_by_star
, media_type
, format_type
and filter_by_keyword
.
Sort By
sort_by
Optional
The order in which you want the reviews to be sorted. Supported values are recent and helpful. The default value for this parameter is helpful.
This filter can be used on page 1 and subsequent pages when providing a cookie.
*Note:* When not providing a cookie, the `sort_by` parameter defaults to `recent` and cannot be changed.
Filter By Star
filter_by_star
Optional
This parameter allows you to filter reviews by star rating. Since Amazon now limits review pages to 10, using star filters is an effective way to access more than 100 reviews for a product. Supported values are: all_stars, five_star, four_star, three_star, two_star, one_star, positive and critical. The default value is all_stars.
This filter can be used on page 1 and subsequent pages when providing a cookie.
Media Type
media_type
Optional
The type of media you want to filter by. Supported values are all_content and media_reviews_only. The default value for this parameter is all_content.
This filter can be used on page 1 and subsequent pages when providing a cookie.
Format Type
format_type
Optional
Specifies the variants for which you want to retrieve reviews. Supported values are all_formats and current_format. The default value for this parameter is all_formats.
This filter can be used on page 1 and subsequent pages when providing a cookie.
Filter By Keyword
filter_by_keyword
Optional
Filter reviews that contain a specific keyword or phrase. The search is case-insensitive and matches partial words. For example, "ship" will match "shipping", "shipped", etc.
This filter can be used on page 1 and subsequent pages when providing a cookie.
Reviewer Type
reviewer_type
Optional
The type of reviews you want to retrieve. Supported values are all_reviews and avp_only_reviews (Verified Purchase only). The default value is all_reviews.
This filter can be used on page 1 and subsequent pages when providing a cookie.
Other Required Parameters
platform
Required
Specifies the scraping engine to use. For this API endpoint, set this parameter to amazon_reviews.
api_key
Required
Your API key token, which you can obtain by signing up here.
URL Encoding
The value of the query parameter url
must be URL encoded (also known as percent encoding). If you're using Python, you can use the urllib.parse.quote()
function to properly encode the URL.
How to get maximum reviews
Want to get ALL reviews for a product? Combine different page numbers, filters, and sort options to maximize your review collection. Our step-by-step tutorial shows you how you can scrape the complete review history for any product.
Pro tip: Use the new max_pages
parameter to fetch up to 100 reviews per request, significantly reducing the number of API calls needed!
Results
The response includes a reviews
array containing up to 10 reviews per page. Each review in the array will have the following attributes:
Attributes Returned | Data Type | Information Represented |
---|---|---|
id | string | Retailer ID of the review |
date | string | Date when review was published |
author_name | string | Reviewer's name |
author_url | string | Reviewer's retailer profile link |
rating | int | Rating by reviewer |
review_title | string | Review title |
review_url | string | Link to review |
review_text | string | Review's text content |
review_imgs | list | Links to reviewer's images, if any |
review_videos | list | Links to reviewer's videos, if any |
variant.asin | string | ASIN of the product variant |
variant.model_name | string | Model name of the product variant |
variant.size | string | Size of the product variant |
variant.color | string | Color of the product variant |
meta_data.variant_info | list | List of variant details as strings |
meta_data.verified_purchase | boolean | Whether the review is from a verified purchase |
meta_data.helpful_vote_count | int | Number of helpful votes for the review |
meta_data.is_vine_voice | boolean | Whether the review is from a Vine Voice |
location | string | Country-level location of reviewer |
rating_distribution | dict | Distribution of ratings for the product |
pages_fetched | int | Number of pages successfully fetched (when using max_pages) |
Rating Distribution
The ratings breakdown for each request is returned inside the meta_data.rating_distribution
object.
Two additional top‑level fields help you understand how many records match your query:
• filtered_total_reviews
– total number of reviews that satisfy the current filters.
• filtered_total_ratings
– total number of ratings that satisfy the current filters.
filtered_total_ratings
is updated only when filter_by_star
is set to a specific star value (one_star
through five_star
). It remains unchanged for the other filter values (positive
, negative
, or all_stars
) and is omitted entirely when filter_by_keyword
is used (i.e. the value will be same as total_results
).
Another detail worth noting is that the format_type
parameter also affects the filtered_total_ratings
value. For example, if you set format_type
to current_format
, the filtered_total_ratings
value will be the number of ratings for the current format of the product, which may be different from the total number of ratings for the product.
Please be aware that the filtered_total_ratings
value may sometimes be absent entirely from the response. This is due to Amazon's AB testing of their interface, which occasionally removes this field from their data. Your application should be designed to handle responses both with and without this field.
Pages Fetched
When using the max_pages
parameter, the response includes a pages_fetched
field indicating how many pages were successfully retrieved. This may be less than the requested max_pages
if:
- The product has fewer total pages available
- An error occurred while fetching one of the pages
- Amazon's 10-page limit was reached
Response Example
Each request returns up to 10 results per page (or 8 when no cookie is provided). When using max_pages
, you can get up to 100 results in a single request. Here's the response you can expect for the request showcased above:
{
"success": true,
"platform": "amazon_reviews",
"url": "https://www.amazon.com/Dyson-Cordless-Vacuum-Silver-Nickel/dp/B0CT9552BL",
"sort_by": "recent",
"reviewer_type": "all_reviews",
"filter_by_star": "critical",
"media_type": "media_reviews_only",
"format_type": "all_formats",
"filter_by_keyword": null,
"page": 1,
"total_results": 54,
"filtered_total_reviews": 54,
"filtered_total_ratings": null,
"no_of_pages": 6,
"result_count": 54,
"reviews": [
{
"id": "R2DA688YURRTFK",
"date": "2025-05-25",
"author_name": "J. Hume",
"author_url": "https://www.amazon.com/gp/profile/amzn1.account.AEE5F23NK7RK535VTTSZ3G6O7DPQ/ref=cm_cr_arp_d_gw_btm?ie=UTF8",
"rating": 2,
"review_title": "Only works for more than 3 minutes on the lower suction",
"review_url": "https://www.amazon.com/gp/customer-reviews/R2DA688YURRTFK/ref=cm_cr_arp_d_rvw_ttl?ie=UTF8&ASIN=B0CT9552BL",
"review_text": "The Dyson V8 Absolute has 2 suction speeds, High (Extended Run) and Max. On Max, this vacuum worked better than anything I've ever used to clean my flat-weave rugs. But even when fully charged, my V8 would never run for more than about 3 minutes on Max. Many people report having this problem with the V8, so I followed suggested fixes. First, I checked to make sure there was no blockage, and there definitely wasn't. Next, I replaced the filter, but that didn't solve the problem, so I replaced the battery too. Again, no fix, so I ended up taking my V8 to a Dyson store. A clerk there tried it out and voilá, it worked like a charm...but only on High, not Max. The clerk told me that I should really only ever use it on High, rather than Max. What? Why even offer the illusion of 2 speeds, if Dyson recommends you only use it on one? For what this costs, this is totally unsatisfactory, and for this reason, I can't recommend the V8.",
"review_imgs": [
"https://m.media-amazon.com/images/I/61bXJzxCiaL._SL1600_.jpg",
"https://m.media-amazon.com/images/I/71mfuhhiWxL._SL1600_.jpg"
],
"review_videos": [],
"variant": {
"asin": "B0CT9552BL",
"model_name": "V8 Plus"
},
"meta_data": {
"variant_info": [
"Model name: V8 Plus"
],
"verified_purchase": false,
"helpful_vote_count": 1,
"is_vine_voice": false
},
"location": "United States"
},
{
"id": "R3MRNXWE5378WB",
"date": "2025-05-14",
"author_name": "Peter Bielen",
"author_url": "https://www.amazon.com/gp/profile/amzn1.account.AHPA7JN4ORIEPUIGJPOY3NKB7A6A/ref=cm_cr_arp_d_gw_btm?ie=UTF8",
"rating": 2,
"review_title": "Prepare for scratched wood floors.",
"review_url": "https://www.amazon.com/gp/customer-reviews/R3MRNXWE5378WB/ref=cm_cr_arp_d_rvw_ttl?ie=UTF8&ASIN=B0CT9552BL",
"review_text": "After a few weeks, the rollers on the bottom became rough and jagged and scratch the floor...I have tried cleaning them, but the plastic itself is gnarly and there doesnt seem to be anything I can do (see pic).Suction is mostly fine...for a hardwood floor..the higher setting, which I would think would clean carpets better, is actually too strong and the internal rollers get stuck on the carpet and won't turn.Did a ton of research and super bummed that this is literally damaging our floors every time we use it",
"review_imgs": [
"https://m.media-amazon.com/images/I/71JktstozvL._SL1600_.jpg"
],
"review_videos": [],
"variant": {
"asin": "B0CT9552BL",
"model_name": "V8 Plus"
},
"meta_data": {
"variant_info": [
"Model name: V8 Plus"
],
"verified_purchase": true,
"helpful_vote_count": 3,
"is_vine_voice": false
},
"location": "United States"
},
{
"id": "R3V5TAQ7E3DTZX",
"date": "2025-05-01",
"author_name": "Kara E Harris",
"author_url": "https://www.amazon.com/gp/profile/amzn1.account.AE7GTBJFCMNCTMSXZBJMPVQSYU6Q/ref=cm_cr_arp_d_gw_btm?ie=UTF8",
"rating": 1,
"review_title": "No!!! Delivered in a trash bag!!!",
"review_url": "https://www.amazon.com/gp/customer-reviews/R3V5TAQ7E3DTZX/ref=cm_cr_arp_d_rvw_ttl?ie=UTF8&ASIN=B0CT9552BL",
"review_text": "If I could give no stars I would! Product was obviously used and open! Delivered in a trash bag!!!! Skip this!!!!!",
"review_imgs": [
"https://m.media-amazon.com/images/I/71-EVSVpBJL._SL1600_.jpg"
],
"review_videos": [],
"variant": {
"asin": "B0CT9552BL",
"model_name": "V8"
},
"meta_data": {
"variant_info": [
"Model name: V8"
],
"verified_purchase": true,
"helpful_vote_count": 1,
"is_vine_voice": false
},
"location": "United States"
},
{
"id": "RP7NPQNA2AWML",
"date": "2025-04-27",
"author_name": "Gino Berninzon Di Domenico",
"author_url": "https://www.amazon.com/gp/profile/amzn1.account.AEXFY3IUCW72BFZG3RQU4UF2O7EQ/ref=cm_cr_arp_d_gw_btm?ie=UTF8",
"rating": 1,
"review_title": "Dyson broken",
"review_url": "https://www.amazon.com/gp/customer-reviews/RP7NPQNA2AWML/ref=cm_cr_arp_d_rvw_ttl?ie=UTF8&ASIN=B0CT9552BL",
"review_text": "After 6 months of use the device stopped working. The problem is not with the power supply, but it seems to be with the battery.",
"review_imgs": [
"https://m.media-amazon.com/images/I/71T4HpE8+NL._SL1600_.jpg"
],
"review_videos": [],
"variant": {
"asin": "B0CT9552BL",
"model_name": "V8"
},
"meta_data": {
"variant_info": [
"Model name: V8"
],
"verified_purchase": true,
"helpful_vote_count": 1,
"is_vine_voice": false
},
"location": "United States"
},
{
"id": "R3FZ1EFF260WWI",
"date": "2025-04-12",
"author_name": "MaviJeans",
"author_url": "https://www.amazon.com/gp/profile/amzn1.account.AGRGJEVLZCRNIVS5HVM5FZENJCTA/ref=cm_cr_arp_d_gw_btm?ie=UTF8",
"rating": 2,
"review_title": "Leaving streaks on floor, low quality materials.",
"review_url": "https://www.amazon.com/gp/customer-reviews/R3FZ1EFF260WWI/ref=cm_cr_arp_d_rvw_ttl?ie=UTF8&ASIN=B0CT9552BL",
"review_text": "The vacuum does its job in sucking up dust from the floor, but ends up leaving the floor in worse shape because it leaves streaks of plastic on the floor (see attached floor photo). That’s because the silver-plastic wheels (see attached photo of wheels) are of extremely low quality, and the silver paint on them starts to come off after 2 weeks of light use, exposing the softer crayon-like material underneath. For such a high price, the low quality of materials is unacceptable.",
"review_imgs": [
"https://m.media-amazon.com/images/I/61meL2RxABL._SL1600_.jpg",
"https://m.media-amazon.com/images/I/81P9drw+8NL._SL1600_.jpg"
],
"review_videos": [],
"variant": {
"asin": "B0CT9552BL",
"model_name": "V8"
},
"meta_data": {
"variant_info": [
"Model name: V8"
],
"verified_purchase": true,
"helpful_vote_count": 3,
"is_vine_voice": false
},
"location": "United States"
},
{
"id": "R3H0HDFLBVTJGT",
"date": "2025-03-22",
"author_name": "Julia Matthews",
"author_url": "https://www.amazon.com/gp/profile/amzn1.account.AGFN3SQ4LV6DARGJCIICZ5XLJERQ/ref=cm_cr_arp_d_gw_btm?ie=UTF8",
"rating": 1,
"review_title": "Showed up used",
"review_url": "https://www.amazon.com/gp/customer-reviews/R3H0HDFLBVTJGT/ref=cm_cr_arp_d_rvw_ttl?ie=UTF8&ASIN=B0CT9552BL",
"review_text": "This vaccum has clearly been used and just repackaged",
"review_imgs": [
"https://m.media-amazon.com/images/I/61rflg9PrUL._SL1600_.jpg"
],
"review_videos": [],
"variant": {
"asin": "B0CT9552BL",
"model_name": "V8"
},
"meta_data": {
"variant_info": [
"Model name: V8"
],
"verified_purchase": true,
"helpful_vote_count": 0,
"is_vine_voice": false
},
"location": "United States"
},
{
"id": "R2H2RRZ38CCRPH",
"date": "2025-03-08",
"author_name": "Fariad",
"author_url": "https://www.amazon.com/gp/profile/amzn1.account.AEBTAGKNF57NBY3KMETXKNLYXWTQ/ref=cm_cr_arp_d_gw_btm?ie=UTF8",
"rating": 1,
"review_title": "Worst purchase ever Does not work",
"review_url": "https://www.amazon.com/gp/customer-reviews/R2H2RRZ38CCRPH/ref=cm_cr_arp_d_rvw_ttl?ie=UTF8&ASIN=B0CT9552BL",
"review_text": "The media could not be loaded.\n \n\n\n\nDo not buy this piece of crap I will send a video it sucks the blade does not work never did from the day I bought it I had a Dyson before but this one does not work so please do not buy it I am going to put it in the garbage",
"review_imgs": [],
"review_videos": [
"https://m.media-amazon.com/images/S/vse-vms-transcoding-artifact-us-east-1-prod/629530e4-f37f-425b-a8c4-3dd117fe00b0/default.jobtemplate.hls.m3u8"
],
"variant": {
"asin": "B0CT9552BL",
"model_name": "V8"
},
"meta_data": {
"variant_info": [
"Model name: V8"
],
"verified_purchase": true,
"helpful_vote_count": 2,
"is_vine_voice": false
},
"location": "United States"
},
{
"id": "R31XPKAFOUTFBB",
"date": "2025-02-28",
"author_name": "Kristin Rogne",
"author_url": "https://www.amazon.com/gp/profile/amzn1.account.AGOOHHOVMBRAPDJTLSKK43D2334A/ref=cm_cr_arp_d_gw_btm?ie=UTF8",
"rating": 1,
"review_title": "Stopped working after 1 month of light use",
"review_url": "https://www.amazon.com/gp/customer-reviews/R31XPKAFOUTFBB/ref=cm_cr_arp_d_rvw_ttl?ie=UTF8&ASIN=B0CT9552BL",
"review_text": "The media could not be loaded.\n \n\n\n\nDyson vacuum worked for 1 month with light use and abruptly stopped suction, motor only made a revving sound then would stop, revving sound then would stop again. Very dissatisfied with product and Amazon will not offer a return on this item and Amazon customer service has been reduced to bots and AI. Very unhappy with this Dyson purchase. Buyer beware.",
"review_imgs": [],
"review_videos": [
"https://m.media-amazon.com/images/S/vse-vms-transcoding-artifact-us-east-1-prod/d1ce3f7b-923f-41b2-9e06-8c416a3b99a7/default.vertical.jobtemplate.hls.m3u8"
],
"variant": {
"asin": "B0CT9552BL",
"model_name": "V8 Plus"
},
"meta_data": {
"variant_info": [
"Model name: V8 Plus"
],
"verified_purchase": true,
"helpful_vote_count": 7,
"is_vine_voice": false
},
"location": "United States"
},
{
"id": "R1Z1KRBPRUS0PB",
"date": "2025-02-27",
"author_name": "DK",
"author_url": "https://www.amazon.com/gp/profile/amzn1.account.AFZM5RCCEJZ2BOMWUZAXLK6MZTZA/ref=cm_cr_arp_d_gw_btm?ie=UTF8",
"rating": 1,
"review_title": "Extremely Disappointed – Malfunctioned in 6 Months, No Warranty Support",
"review_url": "https://www.amazon.com/gp/customer-reviews/R1Z1KRBPRUS0PB/ref=cm_cr_arp_d_rvw_ttl?ie=UTF8&ASIN=B0CT9552BL",
"review_text": "The media could not be loaded.\n \n\n\n\nI purchased the Dyson V8 Plus Cordless Vacuum (Silver/Nickel) in August 2024, expecting a high-quality product from a well-known brand. Unfortunately, just six months later (February 2025), it started malfunctioning. After a full charge, when I pull the trigger, it turns on and off a few times, then completely stops.I contacted Dyson customer service, and they confirmed that my unit needed a warranty replacement. However, they claimed the replacement was out of stock and told me to wait a couple of weeks. I patiently waited, but after two weeks, they still had no stock and no estimate of when they would have one.Here’s the worst part: The same vacuum is still being sold on Amazon while they refuse to honor my warranty! This is absolutely unacceptable. Dyson’s customer service is terrible, and I’m shocked that such a reputable brand would fail both in product reliability and customer support.I will never buy another Dyson again. If you’re considering this vacuum, be warned—it’s an overpriced product with poor longevity and zero accountability from the company.",
"review_imgs": [],
"review_videos": [
"https://m.media-amazon.com/images/S/vse-vms-transcoding-artifact-us-east-1-prod/2c2dadba-372c-4222-869d-9f23c49b7fcb/default.vertical.jobtemplate.hls.m3u8"
],
"variant": {
"asin": "B0CT9552BL",
"model_name": "V8 Plus"
},
"meta_data": {
"variant_info": [
"Model name: V8 Plus"
],
"verified_purchase": true,
"helpful_vote_count": 19,
"is_vine_voice": false
},
"location": "United States"
},
{
"id": "R32PFAZE0MZSVP",
"date": "2025-02-19",
"author_name": "Ram K",
"author_url": "https://www.amazon.com/gp/profile/amzn1.account.AFTNFRA6BD6JTLKJXVYVAP3XFOSA/ref=cm_cr_arp_d_gw_btm?ie=UTF8",
"rating": 1,
"review_title": "Used products",
"review_url": "https://www.amazon.com/gp/customer-reviews/R32PFAZE0MZSVP/ref=cm_cr_arp_d_rvw_ttl?ie=UTF8&ASIN=B0CT9552BL",
"review_text": "Both times sent used items. You can see damages dust",
"review_imgs": [
"https://m.media-amazon.com/images/I/61xx-ZYpiML._SL1600_.jpg"
],
"review_videos": [],
"variant": {
"asin": "B0CT9552BL",
"model_name": "V8 Plus"
},
"meta_data": {
"variant_info": [
"Model name: V8 Plus"
],
"verified_purchase": true,
"helpful_vote_count": 0,
"is_vine_voice": false
},
"location": "United States"
},
{
"id": "R3RE3I1CX7G26X",
"date": "2025-01-27",
"author_name": "Nathan R.",
"author_url": "https://www.www.amazon.com/gp/profile/amzn1.account.AH2V2F37ROVPA2WJ2NUGRBQTIHKQ/ref=cm_cr_getr_d_gw_btm?ie=UTF8",
"rating": 1,
"review_title": "Leaves marks on hardwood floors",
"review_url": "https://www.www.amazon.com/gp/customer-reviews/R3RE3I1CX7G26X/ref=cm_cr_arp_d_rvw_ttl?ie=UTF8&ASIN=B0CT9552BL",
"review_text": "At first I loved this vacuum. It was handy, powerful, easy to dump the dirt, then I started noticing little marks all over the hardwood floors. The 2 little wheels on the bottom eventually don't roll as smoothly as when it was new, now the plastic rollers just slide across the hardwood floor and leave streaks of plastic ALL OVER the floor. After vacuuming if we don't buff the floor with a towel or immediately mop the floor you can see these little plastic streaks everywhere. My question is why would you sell something this expensive and make it as good as it is and then make the wheels so cheap and faulty??? So disappointed in this thing now. I hate to throw it away, but probably will since my blood boils everything I use the thing now.",
"review_imgs": [
"https://m.media-amazon.com/images/I/71RLi6V1P7L._SY88.jpg",
"https://m.media-amazon.com/images/I/81KUeosv3cL._SY88.jpg",
"https://m.media-amazon.com/images/I/81Ob5PaYnQL._SY88.jpg",
"https://m.media-amazon.com/images/I/81yWp0o11uL._SY88.jpg"
],
"review_videos": [],
"variant": {
"asin": "B0CT9552BL"
},
"meta_data": {
"variant_info": "Model name: V8 Plus",
"verified_purchase": false,
"helpful_vote_count": 10,
"is_vine_voice": false
},
"location": "United States"
},
{
"id": "R1AFRMSCNWTX1I",
"date": "2025-01-13",
"author_name": "Vacuum",
"author_url": "https://www.www.amazon.com/gp/profile/amzn1.account.AFUWKNBK27YATF36MXM5CSWIQTWQ/ref=cm_cr_getr_d_gw_btm?ie=UTF8",
"rating": 2,
"review_title": "Dyson",
"review_url": "https://www.www.amazon.com/gp/customer-reviews/R1AFRMSCNWTX1I/ref=cm_cr_arp_d_rvw_ttl?ie=UTF8&ASIN=B0CT9552BL",
"review_text": "I’ve been saving to buy this product hearing a lot of great things about it. Finally receive it excited to try it, and it does not work on the rug shown above.! That was the main reason I bought it. I have multiple cats and I’ve tried several different vacuums and I thought this one would be the answer I was wrong. I wasted my money.",
"review_imgs": [
"https://m.media-amazon.com/images/I/717Es7F6DVL._SY88.jpg",
"https://m.media-amazon.com/images/I/71bNkPuMkcL._SY88.jpg"
],
"review_videos": [],
"variant": {
"asin": "B0CT9552BL"
},
"meta_data": {
"variant_info": "Model name: V8 Plus",
"verified_purchase": false,
"helpful_vote_count": 0,
"is_vine_voice": false
},
"location": "United States"
},
{
"id": "R3ITWF594JLMQB",
"date": "2025-01-12",
"author_name": "Aaron Bentz",
"author_url": "https://www.www.amazon.com/gp/profile/amzn1.account.AGX3FX5M3E3LEEGVYV2YE2LV3VLQ/ref=cm_cr_getr_d_gw_btm?ie=UTF8",
"rating": 1,
"review_title": "Don’t buy",
"review_url": "https://www.www.amazon.com/gp/customer-reviews/R3ITWF594JLMQB/ref=cm_cr_arp_d_rvw_ttl?ie=UTF8&ASIN=B0CT9552BL",
"review_text": "Bought this for cleaning up our floors which as you can see in the picture are hard floors. This vacuum lasted all of 5 months before it wouldn’t turn on except when it felt like it. Even with a fully charged battery sometimes you go to clean and the unit just WONT turn on. Emailed Dyson directly and they replaced our vacuum with a new one but lo-and-behold that one started the same issues about 5 months in. Save yourself some money and DONT BUY THIS!!",
"review_imgs": [
"https://m.media-amazon.com/images/I/715k0rliIJL._SY88.jpg"
],
"review_videos": [],
"variant": {
"asin": "B0CT9552BL"
},
"meta_data": {
"variant_info": "Model name: V8",
"verified_purchase": false,
"helpful_vote_count": 0,
"is_vine_voice": false
},
"location": "United States"
},
{
"id": "R2F13K3EHMNFHD",
"date": "2025-01-11",
"author_name": "J. Dunn",
"author_url": "https://www.www.amazon.com/gp/profile/amzn1.account.AFQU5E6BNZ5MNFHLLDWELNQEV65A/ref=cm_cr_getr_d_gw_btm?ie=UTF8",
"rating": 3,
"review_title": "Terrible battery life",
"review_url": "https://www.www.amazon.com/gp/customer-reviews/R2F13K3EHMNFHD/ref=cm_cr_arp_d_rvw_ttl?ie=UTF8&ASIN=B0CT9552BL",
"review_text": "This is our third such Dyson. The first one was excellent until it got about two years old and the battery would simply die after one minute of vacuuming. We replaced it with the exact same Dyson, but that one never got longer than a minute of use per charge. This is our third one and we expected better battery life, but while it's better than the last, it's still only gets maybe five or six minutes of consistent run time after charging for four hours. You can see that it's not fully charged although it's been on the charger for almost 6 hours now. There's definitely something wrong with this one and I don't want to go through the same problems we had the last time so I'm sending it back.",
"review_imgs": [
"https://m.media-amazon.com/images/I/61z1m6GnEQL._SY88.jpg"
],
"review_videos": [],
"variant": {
"asin": "B0CT9552BL"
},
"meta_data": {
"variant_info": "Model name: V8 Plus",
"verified_purchase": false,
"helpful_vote_count": 5,
"is_vine_voice": false
},
"location": "United States"
},
{
"id": "R2UVR7BQNTX7OS",
"date": "2025-01-02",
"author_name": "3boys",
"author_url": "https://www.www.amazon.com/gp/profile/amzn1.account.AGP7VQ2ELUC5SUMZUOJQ2UIXS5JA/ref=cm_cr_getr_d_gw_btm?ie=UTF8",
"rating": 1,
"review_title": "This is a piece of junk!",
"review_url": "https://www.www.amazon.com/gp/customer-reviews/R2UVR7BQNTX7OS/ref=cm_cr_arp_d_rvw_ttl?ie=UTF8&ASIN=B0CT9552BL",
"review_text": "The media could not be loaded.This is a piece of junk! I will edit if my problem is resolved, but this seller is selling defective items. The vacuum doesn't hold a charge and turns on and off when you vacuum. Filter is clean so the only other cause has to be a defect.",
"review_imgs": [],
"review_videos": [
"https://m.media-amazon.com/images/S/vse-vms-transcoding-artifact-us-east-1-prod/4ff1b6fc-bcbd-4933-ac45-131b9c4c4917/default.vertical.jobtemplate.hls.m3u8"
],
"variant": {
"asin": "B0CT9552BL"
},
"meta_data": {
"variant_info": "Model name: V8 Plus",
"verified_purchase": false,
"helpful_vote_count": 5,
"is_vine_voice": false
},
"location": "United States"
},
{
"id": "R1B3NHATKWSQX2",
"date": "2024-12-23",
"author_name": "helen",
"author_url": "https://www.www.amazon.com/gp/profile/amzn1.account.AGKM2TC2FRBZZJPKU2IIPHQV6DXQ/ref=cm_cr_getr_d_gw_btm?ie=UTF8",
"rating": 1,
"review_title": "Please. Read.",
"review_url": "https://www.www.amazon.com/gp/customer-reviews/R1B3NHATKWSQX2/ref=cm_cr_arp_d_rvw_ttl?ie=UTF8&ASIN=B0CT9552BL",
"review_text": "I have been wanting a Dyson for the LONGEST time, so I found this one on Amazon and put it on my registry! I was thrilled when it was purchased and gifted to me, and was so excited to use it in my new home. I unboxed it, charged it, and used it for maybe a couple minutes to clean up a small mess before leaving to travel for the holidays and all was well. When I returned, it no longer worked. It was fully charged, filter was brand new and clean, and the bin was empty. No flashing lights or any indications of battery troubles. I spent 2 hours on the phone with Dyson trying to troubleshoot only to find out it needed a new part and that they did not have that part in stock. My first red flag was the fact that a full part needed to be replaced only 3 weeks and a 2 minute run into having this thing. After much back and forth, i decided to return it as I did not feel confident in the vacuum. HERE, begins the headache. Firstly, it says it was sold by Amazon but it’s not. 3rd party seller made it RIDICULOUSLY difficult to return (because let’s be honest, Amazon has spoiled us so anything less is frustrating) and I spent hours on the phone with Amazon discussing the sellers return policy. The seller return policy stated I needed to contact them for them to approve a return yet never provided their contact info anywhere and Amazon employees themselves couldn’t find it for me. Secondly, they stated several parameters for restocking fees and I ensured that the item was not cracked,dropped, or damaged by me in any way with proof. Amazon somehow advocated on my behalf to the seller and I have now since received only 1/2 of the amount the vacuum was purchased for in the form of credit. I deserve a 100% refund for the defective item, and am still in the process of advocating for it.So, KEY TAKEAWAYS:-bad run time-defective-does not last long (according to several others)-3rd party seller-worst return policyIn short, purchase things like this from Costco or ensure there is a good return policy in place. I am so grateful that this was a gift to me, however I would hate for someone else’s money to be lost when they intended it as a gift. Thanks for reading!",
"review_imgs": [
"https://m.media-amazon.com/images/I/81KC8F-THvL._SY88.jpg"
],
"review_videos": [],
"variant": {
"asin": "B0CT9552BL"
},
"meta_data": {
"variant_info": "Model name: V8 Plus",
"verified_purchase": false,
"helpful_vote_count": 0,
"is_vine_voice": false
},
"location": "United States"
},
{
"id": "R3JVP61C5B4D1N",
"date": "2024-12-15",
"author_name": "Melissa Thomas",
"author_url": "https://www.www.amazon.com/gp/profile/amzn1.account.AEQTSSBMAAFL4SU5T4TVWCIVLDTQ/ref=cm_cr_getr_d_gw_btm?ie=UTF8",
"rating": 3,
"review_title": "Padding came off first use",
"review_url": "https://www.www.amazon.com/gp/customer-reviews/R3JVP61C5B4D1N/ref=cm_cr_arp_d_rvw_ttl?ie=UTF8&ASIN=B0CT9552BL",
"review_text": "Vacuum has decent suction, medicore battery life but first use the padding on bottom of roller cane off. Poor quality for couple hundred dollar vacuum",
"review_imgs": [
"https://m.media-amazon.com/images/I/71LEjS8c6GL._SY88.jpg"
],
"review_videos": [],
"variant": {
"asin": "B0CT9552BL"
},
"meta_data": {
"variant_info": "Model name: V8 Plus",
"verified_purchase": false,
"helpful_vote_count": 1,
"is_vine_voice": false
},
"location": "United States"
},
{
"id": "R29KEXC4475VHA",
"date": "2024-12-12",
"author_name": "DJ",
"author_url": "https://www.www.amazon.com/gp/profile/amzn1.account.AEVVUWUFZJLAFIAE7X7MFLSDEK7Q/ref=cm_cr_getr_d_gw_btm?ie=UTF8",
"rating": 2,
"review_title": "Production quality has dropped",
"review_url": "https://www.www.amazon.com/gp/customer-reviews/R29KEXC4475VHA/ref=cm_cr_arp_d_rvw_ttl?ie=UTF8&ASIN=B0CT9552BL",
"review_text": "My ex bought the same model a few years ago and this one is inferior in so many ways. The brushes hit the housing when the spins so it makes an unbearable noise. One of the attachments feel apart the first time using it and screws have already started falling out of the main unit. I've only used it twice! Not worth $300",
"review_imgs": [
"https://m.media-amazon.com/images/I/714mddzy-5L._SY88.jpg"
],
"review_videos": [],
"variant": {
"asin": "B0CT9552BL"
},
"meta_data": {
"variant_info": "Model name: V8 Plus",
"verified_purchase": false,
"helpful_vote_count": 0,
"is_vine_voice": false
},
"location": "United States"
},
{
"id": "R22137X56U742O",
"date": "2024-12-11",
"author_name": "Peggy Mcdonald",
"author_url": "https://www.www.amazon.com/gp/profile/amzn1.account.AGVCTA52VJZXQCQD7GFLXRJT6IVQ/ref=cm_cr_getr_d_gw_btm?ie=UTF8",
"rating": 2,
"review_title": "Dyson chargeable vacuum",
"review_url": "https://www.www.amazon.com/gp/customer-reviews/R22137X56U742O/ref=cm_cr_arp_d_rvw_ttl?ie=UTF8&ASIN=B0CT9552BL",
"review_text": "Received this vacuum on 12/2 and it’s not working. It worked for a few days and it appears there is an issue with the charger that I just discovered. I have to unplug and replug in order to get the charger to start working. It’s a great vacuum when it does work.",
"review_imgs": [
"https://m.media-amazon.com/images/I/61g9fXiOFWL._SY88.jpg",
"https://m.media-amazon.com/images/I/61o+RndkoGL._SY88.jpg"
],
"review_videos": [],
"variant": {
"asin": "B0CT9552BL"
},
"meta_data": {
"variant_info": "Model name: V8 Plus",
"verified_purchase": false,
"helpful_vote_count": 1,
"is_vine_voice": false
},
"location": "United States"
},
{
"id": "R3D6TO0Q67L6ZP",
"date": "2024-12-10",
"author_name": "Amazon Customer",
"author_url": "https://www.www.amazon.com/gp/profile/amzn1.account.AEQPK5CNSPPJIEXABE6TMWIKLIEA/ref=cm_cr_getr_d_gw_btm?ie=UTF8",
"rating": 1,
"review_title": "Beware with hardwoods",
"review_url": "https://www.www.amazon.com/gp/customer-reviews/R3D6TO0Q67L6ZP/ref=cm_cr_arp_d_rvw_ttl?ie=UTF8&ASIN=B0CT9552BL",
"review_text": "Update: I kept the vacuum because the previous problem was better when I didn’t use it on its max setting. However, that was not the end of my issues. Now, the plastic ball rolling mechanism is leaving large scuff marks on my floor. They are not scratches, and come up when I steam clean, but they’re very noticeable and are unsightly on original hardwoods. If you buy this, I recommend only using it on laminate floors (which it still scuffs but not as bad) and carpets… which kind of defeats the purpose of having a nice, expensive vacuum. I’m so disappointed in this machine. If I could still return it, I would.We had our hardwoods refinished just over a year ago (house built in 1959). After one use of the Dyson, I was noticing small holes between the wooden planks where it was sucking the wood filler out. Now we have to have spots refilled. Be careful!!",
"review_imgs": [
"https://m.media-amazon.com/images/I/714wIbMdclL._SY88.jpg",
"https://m.media-amazon.com/images/I/717nyqtDlvL._SY88.jpg",
"https://m.media-amazon.com/images/I/71xUDRi89dL._SY88.jpg",
"https://m.media-amazon.com/images/I/81ysTuULs7L._SY88.jpg",
"https://m.media-amazon.com/images/I/81yvAuSK9-L._SY88.jpg"
],
"review_videos": [],
"variant": {
"asin": "B0CT9552BL"
},
"meta_data": {
"variant_info": "Model name: V8",
"verified_purchase": false,
"helpful_vote_count": 2,
"is_vine_voice": false
},
"location": "United States"
},
{
"id": "R30KQZXIO0FCU2",
"date": "2024-12-05",
"author_name": "nicky ceron",
"author_url": "https://www.www.amazon.com/gp/profile/amzn1.account.AFPUPKK4XEBD3AD4DLLKSWPQ7IAQ/ref=cm_cr_getr_d_gw_btm?ie=UTF8",
"rating": 2,
"review_title": "Not worth the money in the end",
"review_url": "https://www.www.amazon.com/gp/customer-reviews/R30KQZXIO0FCU2/ref=cm_cr_arp_d_rvw_ttl?ie=UTF8&ASIN=B0CT9552BL",
"review_text": "As you can see my Dyson is kept and great condition. I've had it approximately 5 months. I did the 5 month payment plan because they are quite pricey. I just paid it off and now it stops working at the roller part at the bottom. I watched the video instructing me to take the roller out clean around the head and insert it back in. I'll get back in still does not work. Now the motor works the post works when you plug that part back in but without the roller at the bottom it is technically useless unless you're cleaning corners or need a pole but that's not what you buy a vacuum for. I go on Dice and site and you can't even order the bottom peace so lots of money to the garbage",
"review_imgs": [
"https://m.media-amazon.com/images/I/6192NTxQlPL._SY88.jpg",
"https://m.media-amazon.com/images/I/61gviUXiJHL._SY88.jpg",
"https://m.media-amazon.com/images/I/61lUEbxyRQL._SY88.jpg"
],
"review_videos": [],
"variant": {
"asin": "B0CT9552BL"
},
"meta_data": {
"variant_info": "Model name: V8 Plus",
"verified_purchase": false,
"helpful_vote_count": 3,
"is_vine_voice": false
},
"location": "United States"
},
{
"id": "R3IOXN1STZH",
"date": "2024-11-11",
"author_name": "Bonnie Remaley",
"author_url": "https://www.www.amazon.com/gp/profile/amzn1.account.AEI37CF5ZKUB2CVKBCY5FJVK35HQ/ref=cm_cr_getr_d_gw_btm?ie=UTF8",
"rating": 1,
"review_title": "Delivered a used product",
"review_url": "https://www.www.amazon.com/gp/customer-reviews/R3IOXN1STZH/ref=cm_cr_arp_d_rvw_ttl?ie=UTF8&ASIN=B0CT9552BL",
"review_text": "I’m extremely disappointed. I paid for a new Dyson product and received a poorly packaged obviously used vacuum. It still had dirt in the chamber from the previous buyer. Poor business practice to say the least. False description and now the hassle of return drop off and waiting for my money to be refunded.",
"review_imgs": [
"https://m.media-amazon.com/images/I/61K5jYwtykL._SY88.jpg",
"https://m.media-amazon.com/images/I/71N+7xKpy2L._SY88.jpg"
],
"review_videos": [],
"variant": {
"asin": "B0CT9552BL"
},
"meta_data": {
"variant_info": "Model name: V8 Plus",
"verified_purchase": false,
"helpful_vote_count": 1,
"is_vine_voice": false
},
"location": "United States"
},
{
"id": "R14RLIH1YWRGEF",
"date": "2024-10-18",
"author_name": "ANC",
"author_url": "https://www.www.amazon.com/gp/profile/amzn1.account.AHGFDMH42DHTKJEKLNC5NMW22GQQ/ref=cm_cr_getr_d_gw_btm?ie=UTF8",
"rating": 1,
"review_title": "Battery time varies 7-12 minutes",
"review_url": "https://www.www.amazon.com/gp/customer-reviews/R14RLIH1YWRGEF/ref=cm_cr_arp_d_rvw_ttl?ie=UTF8&ASIN=B0CT9552BL",
"review_text": "Brand new & was surprised upon charging for a few hours that the battery lasted less than 10 minutes. If on low mode (fine for flat floors) it lasts a little longer, but on maximum it’s 10 minutes max. If you’re expecting to recharge within an hour and try again, you’ll be lucky to get 5 minutes. It also requires that you hold down the trigger the entire time in use, so if you’re expecting an on/off button or your finger not to throb, this product is not it. I will never purchase again. We had a no name brand for years prior that I should’ve stuck with. This is like hiring a full time employee that does the job just fine but for only 10 minutes per shift.",
"review_imgs": [
"https://m.media-amazon.com/images/I/614iMe9FJSL._SY88.jpg",
"https://m.media-amazon.com/images/I/61Z4hBNYffL._SY88.jpg"
],
"review_videos": [],
"variant": {
"asin": "B0CT9552BL"
},
"meta_data": {
"variant_info": "Model name: V8 Plus",
"verified_purchase": false,
"helpful_vote_count": 12,
"is_vine_voice": false
},
"location": "United States"
},
{
"id": "R1ORQHSF2WYV2Z",
"date": "2024-09-18",
"author_name": "Marina",
"author_url": "https://www.www.amazon.com/gp/profile/amzn1.account.AEDIHFFLKZSMKVEHGH4HR3K6T2GA/ref=cm_cr_getr_d_gw_btm?ie=UTF8",
"rating": 1,
"review_title": "Save your time and money. Dyson sucks.",
"review_url": "https://www.www.amazon.com/gp/customer-reviews/R1ORQHSF2WYV2Z/ref=cm_cr_arp_d_rvw_ttl?ie=UTF8&ASIN=B0CT9552BL",
"review_text": "Would give 0 stars if I could. Customer service is an absolute joke. It's been 2 months since I've been able to vacuum my home. Not cool when you are a pet owner... I've spent over $500 for a new vacuum, and now 17+ hours troubleshooting and attempting to communicate with their \"customer service\", and there is still no resolve. Save your time and money and shop elsewhere. Dyson products are not what they used to be, and resolving problems with them has been an unsuccessful nightmare, costing hours of my time. Please see photos of the filth I have been living in for the past 2 months due to their negligence. Dyson has yet to send a replacement even though I returned my original machine under that promise (machine is under warranty), and they have refused a refund as well. I expected more from a \"reputable\" company. Super frustrated.",
"review_imgs": [
"https://m.media-amazon.com/images/I/81JGgl7NHfL._SY88.jpg",
"https://m.media-amazon.com/images/I/81cYw5pCjuL._SY88.jpg"
],
"review_videos": [],
"variant": {
"asin": "B0CT9552BL"
},
"meta_data": {
"variant_info": "Model name: V8 Plus",
"verified_purchase": false,
"helpful_vote_count": 71,
"is_vine_voice": false
},
"location": "United States"
},
{
"id": "R21GB7UF81TK2U",
"date": "2024-09-16",
"author_name": "Franksaw",
"author_url": "https://www.www.amazon.com/gp/profile/amzn1.account.AHLSYXAZSXLXMERJSZQBJ72KRX4A/ref=cm_cr_getr_d_gw_btm?ie=UTF8",
"rating": 1,
"review_title": "Very low quality for this money, very bad and useless support team, worst experience in my life :)",
"review_url": "https://www.www.amazon.com/gp/customer-reviews/R21GB7UF81TK2U/ref=cm_cr_arp_d_rvw_ttl?ie=UTF8&ASIN=B0CT9552BL",
"review_text": "Nightmare with Dyson V8 Cordless Vacuum CleanerI want to share my frustrating experience with Dyson here—maybe someone from their team will see it.I bought a Dyson V8 Cordless Vacuum Cleaner on Amazon in early July. One month in, it stopped charging, and the dust container jammed. I contacted Dyson support, sent it in for repair, and was told it was fixed within two days. They asked me to pick it up from their service center, which is very far from me. I asked if they could send it back to me, and they said they'd check with the repair center and get back to me within a couple of days—no one ever did.After two days, I followed up, and they gave me the same response. By the third time, they said it had been sent out four days ago (without notifying me), but I missed the delivery because I was at work. It was returned to the service center. I called Dyson again, explained my situation, and they sent it again (so they said), providing a tracking number. After a week, there were still no updates. I contacted the service center, and they told me it wasn't their responsibility anymore; I needed to contact UPS.UPS informed me that the package was lost in transit. I reached out to Dyson support again, even speaking to a supervisor, who promised it would be resolved within a week—and if not, they'd send me a new machine (another false promise). A week later, Dyson said UPS had found the machine and would return it to the service center, after which they'd send it back to me. Two weeks passed with no updates.When I followed up, Dyson told me UPS still hadn’t delivered the machine to their service center. After asking for a supervisor again, I was suddenly told I needed to pick it up from the service center in Plainview, NY—where it had apparently been sitting all this time! When I asked them to ship it to me, they claimed they don’t ship cordless machines anymore, even though they did so just a month ago.Despite escalating to a supervisor once again, I’m still waiting for my vacuum.",
"review_imgs": [
"https://m.media-amazon.com/images/I/711GtcSRReL._SY88.jpg"
],
"review_videos": [],
"variant": {
"asin": "B0CT9552BL"
},
"meta_data": {
"variant_info": "Model name: V8",
"verified_purchase": false,
"helpful_vote_count": 164,
"is_vine_voice": false
},
"location": "United States"
},
{
"id": "R1KYQFRIWGXV69",
"date": "2024-08-25",
"author_name": "Chase Gordon",
"author_url": "https://www.www.amazon.com/gp/profile/amzn1.account.AGL7BSEQRZ3TRFTHSO7UDNLFL7YQ/ref=cm_cr_getr_d_gw_btm?ie=UTF8",
"rating": 2,
"review_title": "Fine product but know you have to hold a trigger down in order to use it",
"review_url": "https://www.www.amazon.com/gp/customer-reviews/R1KYQFRIWGXV69/ref=cm_cr_arp_d_rvw_ttl?ie=UTF8&ASIN=B0CT9552BL",
"review_text": "The vacuum works great (has great suction) etc yeah it’s a Dyson so expected. However they don’t mention that you have to hold a trigger button down the entire time you want this vacuum to be on… there is no on switch. You literally have to hold your grip on a trigger button for the amount of time you need the vacuum on. I’m 33 and healthy..however the state of my right hand after doing this for the time it takes to vacuum my nyc studio apt (20 mins) is crippled. It’s absolutely insane.",
"review_imgs": [
"https://m.media-amazon.com/images/I/71rG5N5JKUL._SY88.jpg"
],
"review_videos": [],
"variant": {
"asin": "B0CT9552BL"
},
"meta_data": {
"variant_info": "Model name: V8 Plus",
"verified_purchase": false,
"helpful_vote_count": 28,
"is_vine_voice": false
},
"location": "United States"
},
{
"id": "R1M86QK4837Z9X",
"date": "2024-08-16",
"author_name": "XIAOFEI YUAN",
"author_url": "https://www.www.amazon.com/gp/profile/amzn1.account.AEL2EXYSNRTFCWLOSETQF74SSUGQ/ref=cm_cr_getr_d_gw_btm?ie=UTF8",
"rating": 1,
"review_title": "Please refund me as soon as possible, because I have to buy a new Dyson in Amazon again!!",
"review_url": "https://www.www.amazon.com/gp/customer-reviews/R1M86QK4837Z9X/ref=cm_cr_arp_d_rvw_ttl?ie=UTF8&ASIN=B0CT9552BL",
"review_text": "I launched a return and refund many days ago, and Amazon already received the bad product, why they didn't refund to me yet?",
"review_imgs": [
"https://m.media-amazon.com/images/I/711xcfSNUwL._SY88.jpg",
"https://m.media-amazon.com/images/I/712CpHWYl+L._SY88.jpg",
"https://m.media-amazon.com/images/I/71irBnVNnRL._SY88.jpg"
],
"review_videos": [],
"variant": {
"asin": "B0CT9552BL"
},
"meta_data": {
"variant_info": "Model name: V8 Plus",
"verified_purchase": false,
"helpful_vote_count": 2,
"is_vine_voice": false
},
"location": "United States"
},
{
"id": "R33ZQHUT7IHS5U",
"date": "2024-08-15",
"author_name": "Celeste Fellers",
"author_url": "https://www.www.amazon.com/gp/profile/amzn1.account.AGJVEGYOPA73RNZX2TE3XE4VDKGQ/ref=cm_cr_getr_d_gw_btm?ie=UTF8",
"rating": 1,
"review_title": "Worst vacuum ever. This product is advertised to work on carpet. It does not.",
"review_url": "https://www.www.amazon.com/gp/customer-reviews/R33ZQHUT7IHS5U/ref=cm_cr_arp_d_rvw_ttl?ie=UTF8&ASIN=B0CT9552BL",
"review_text": "I use this vacuum on hard wood and carpet it doesnt work on carpet",
"review_imgs": [
"https://m.media-amazon.com/images/I/811jDezfyTL._SY88.jpg"
],
"review_videos": [],
"variant": {
"asin": "B0CT9552BL"
},
"meta_data": {
"variant_info": "Model name: V8",
"verified_purchase": false,
"helpful_vote_count": 0,
"is_vine_voice": false
},
"location": "United States"
},
{
"id": "R2UTKOJOPI5S7E",
"date": "2024-08-05",
"author_name": "HCHailey",
"author_url": "https://www.www.amazon.com/gp/profile/amzn1.account.AEBABA62JM24O5O5JLIQ3H52GUFQ/ref=cm_cr_getr_d_gw_btm?ie=UTF8",
"rating": 1,
"review_title": "Burns my skin.",
"review_url": "https://www.www.amazon.com/gp/customer-reviews/R2UTKOJOPI5S7E/ref=cm_cr_arp_d_rvw_ttl?ie=UTF8&ASIN=B0CT9552BL",
"review_text": "Amazing Vaccuum! Battery life lasts through vacuuming the 4bedroom, 3 bath house. All tile with area rugs and carpet bedrooms.It burns my skin where the vaccuum naturally rests against my thumb after vacuuming the whole house. Needs a grip guard or barrier between where someone's thumb inevitably rests against the purple filter at the top of the vacuum. (Husband says its called a Pistol Grip Beaver Tail)This does not happen with short vacuuming sessions of one room here, or a mess there. But on days when I do the whole house this happens. (At least once a week.)I would say 5 stars for Portability, Battery life per session, easy to clean, easy to maneuver, the look of it, suction, and more!However, I can't call something that burns me once a week 5 stars. 😕 My husband will have to modify it to fix that issue. Hopefully this feedback leads to better products which I will continue to purchase and invest in!",
"review_imgs": [
"https://m.media-amazon.com/images/I/61lS-4GufJL._SY88.jpg",
"https://m.media-amazon.com/images/I/71Dg-1an9sL._SY88.jpg",
"https://m.media-amazon.com/images/I/71cWfHBaxSL._SY88.jpg"
],
"review_videos": [],
"variant": {
"asin": "B0CT9552BL"
},
"meta_data": {
"variant_info": "Model name: V8 Plus",
"verified_purchase": false,
"helpful_vote_count": 37,
"is_vine_voice": false
},
"location": "United States"
},
{
"id": "R3OY3JT589P0B9",
"date": "2024-07-27",
"author_name": "B",
"author_url": "https://www.www.amazon.com/gp/profile/amzn1.account.AGQWIIHPZCOZXQ4H2PWMPV5X7DZQ/ref=cm_cr_getr_d_gw_btm?ie=UTF8",
"rating": 1,
"review_title": "It’s a no",
"review_url": "https://www.www.amazon.com/gp/customer-reviews/R3OY3JT589P0B9/ref=cm_cr_arp_d_rvw_ttl?ie=UTF8&ASIN=B0CT9552BL",
"review_text": "So I got it, charged it. I’ve spent more time unclogging it than actually using it. Everything gets stuck in the tube. It’s messier than before I vacuumed. It’s a nightmare. I used it for the second time (it’s been on the charger for days) and the battery died within 15 minutes. So disappointed.",
"review_imgs": [
"https://m.media-amazon.com/images/I/719rp-9kfuL._SY88.jpg"
],
"review_videos": [],
"variant": {
"asin": "B0CT9552BL"
},
"meta_data": {
"variant_info": "Model name: V8 Plus",
"verified_purchase": false,
"helpful_vote_count": 3,
"is_vine_voice": false
},
"location": "United States"
},
{
"id": "R2ESUXIWUX3OZE",
"date": "2024-07-17",
"author_name": "Heath.vill2",
"author_url": "https://www.www.amazon.com/gp/profile/amzn1.account.AFUNLPYOMSRPTVOJJLLIANX2L6CQ/ref=cm_cr_getr_d_gw_btm?ie=UTF8",
"rating": 1,
"review_title": "Just received",
"review_url": "https://www.www.amazon.com/gp/customer-reviews/R2ESUXIWUX3OZE/ref=cm_cr_arp_d_rvw_ttl?ie=UTF8&ASIN=B0CT9552BL",
"review_text": "I recently purchased a new item, only to discover upon receipt that it appeared used, with dust and lint present. Additionally, it was missing pieces, one plastic piece had a crack despite the fact that I paid over $300. I am extremely disappointed, as I did not expect to receive a used or refurbished product.",
"review_imgs": [
"https://m.media-amazon.com/images/I/61yDnqwhlbL._SY88.jpg",
"https://m.media-amazon.com/images/I/71YkbydBR6L._SY88.jpg",
"https://m.media-amazon.com/images/I/71YyotzG3dL._SY88.jpg"
],
"review_videos": [],
"variant": {
"asin": "B0CT9552BL"
},
"meta_data": {
"variant_info": "Model name: V8 Plus",
"verified_purchase": false,
"helpful_vote_count": 4,
"is_vine_voice": false
},
"location": "United States"
},
{
"id": "RQHIDQ1S1JFP3",
"date": "2024-07-15",
"author_name": "Amazon Customer",
"author_url": "https://www.www.amazon.com/gp/profile/amzn1.account.AHNVXNBDAVC7XSEDY6RYMBMIIO2A/ref=cm_cr_getr_d_gw_btm?ie=UTF8",
"rating": 1,
"review_title": "Whistling vacuum",
"review_url": "https://www.www.amazon.com/gp/customer-reviews/RQHIDQ1S1JFP3/ref=cm_cr_arp_d_rvw_ttl?ie=UTF8&ASIN=B0CT9552BL",
"review_text": "The media could not be loaded.I was fooled by the current price and never been a fun of Dyson product, decided I would give it a try😒 and wasn’t surprised it came out garbage. Those body parts are loose and not sticking together and this noise while on is unbearable. Not to mention that battery last only one round vacuuming two bed apt with no pets. It a pass from me.",
"review_imgs": [],
"review_videos": [
"https://m.media-amazon.com/images/S/vse-vms-transcoding-artifact-us-east-1-prod/a1c0d63c-7c74-47fd-b337-1c9ab990c406/default.vertical.jobtemplate.hls.m3u8"
],
"variant": {
"asin": "B0CT9552BL"
},
"meta_data": {
"variant_info": "Model name: V8 Plus",
"verified_purchase": false,
"helpful_vote_count": 46,
"is_vine_voice": false
},
"location": "United States"
},
{
"id": "R2POK6V69VHVY6",
"date": "2024-07-11",
"author_name": "kory knight",
"author_url": "https://www.www.amazon.com/gp/profile/amzn1.account.AHPMOBDYYOIWOPTCCVK2WWAVVGYQ/ref=cm_cr_getr_d_gw_btm?ie=UTF8",
"rating": 3,
"review_title": "A year and a few months later",
"review_url": "https://www.www.amazon.com/gp/customer-reviews/R2POK6V69VHVY6/ref=cm_cr_arp_d_rvw_ttl?ie=UTF8&ASIN=B0CT9552BL",
"review_text": "The first time I bought this I was excited. But slightly disappointed from the battery life and how short it is. Am I surprised? No. But overall it gets the job done for a 2 bedroom apartment. It still works great, though I do have to pull the pellets out when they get stuck, but I expected as much. It doesn’t vacuum up slightly larger things on hardwood floors though, I have to lift it. But, it’s still reliable for the most part.",
"review_imgs": [
"https://m.media-amazon.com/images/I/61mVS+fETvL._SY88.jpg"
],
"review_videos": [],
"variant": {
"asin": "B0CT9552BL"
},
"meta_data": {
"variant_info": "Model name: V8",
"verified_purchase": false,
"helpful_vote_count": 7,
"is_vine_voice": false
},
"location": "United States"
},
{
"id": "R26020YVFOMWMQ",
"date": "2024-06-27",
"author_name": "LJ",
"author_url": "https://www.www.amazon.com/gp/profile/amzn1.account.AFVQGH3WNKBMZMPQKH2VHVS4C33Q/ref=cm_cr_getr_d_gw_btm?ie=UTF8",
"rating": 1,
"review_title": "It stopped working in 8 days",
"review_url": "https://www.www.amazon.com/gp/customer-reviews/R26020YVFOMWMQ/ref=cm_cr_arp_d_rvw_ttl?ie=UTF8&ASIN=B0CT9552BL",
"review_text": "8 days after my purchase, this machine stopped charging. I was very happy to finally get one for my new house. Most of my friends have it and they highly recommended it. I love the product until it stopped working. It’s very frustrating. Anything I can do to get this product replaced?",
"review_imgs": [
"https://m.media-amazon.com/images/I/718gmHGInAL._SY88.jpg"
],
"review_videos": [],
"variant": {
"asin": "B0CT9552BL"
},
"meta_data": {
"variant_info": "Model name: V8 Plus",
"verified_purchase": false,
"helpful_vote_count": 6,
"is_vine_voice": false
},
"location": "United States"
},
{
"id": "R1T1ZZ6SRE54MU",
"date": "2024-05-25",
"author_name": "shopcur",
"author_url": "https://www.www.amazon.com/gp/profile/amzn1.account.AHJQDKGL6QWCKJY77VTX3KTMS7KA/ref=cm_cr_getr_d_gw_btm?ie=UTF8",
"rating": 1,
"review_title": "It started strong and then so many problems...",
"review_url": "https://www.www.amazon.com/gp/customer-reviews/R1T1ZZ6SRE54MU/ref=cm_cr_arp_d_rvw_ttl?ie=UTF8&ASIN=B0CT9552BL",
"review_text": "Pro: Suction (when it works), Cordless, DysonCon: Suction issues within a month, TOO EXPENSIVE, Battery life extremely reduced after six months, customer service not helpful, stick design is too narrow and constantly needs to be cleaned out,I am writing this review for those who are considering this vacuum to not make the COSTLY mistake I made.I have had many different vacuums and this is the first cordless stick vacuum I have had. It started strong and for a ONE-BEDROOM APARTMENT, it doesn't have too much to clean. After only one month, I had to call the helpline for the first issue. This issue is so prominent they have a RECORDING of the sound and \"how to fix it\"! I have never called any customer service line where there was a recorded sound describing the issue you are having. Bizarre. Nevertheless, followed the directions and it worked a few more times but after at least 4 usages, the filters needed to be cleaned out again and takes a good 48 hours to dry. Lastly, after six months its battery life has dimensioned to cover only 150 ft somewhat reliably. Then I run my very old but still a trooper, Roomba, to finish the job (600 ft total carpeted space) I am extremely dissatisfied with this product and this experience has made me question the Dyson brand as a whole.So what did I use when this died to \"finish\" the job?Roomba (2015 version)Bissel Pet Hair Eraser (with attachments) (2019)https://a.co/d/2TdIj1jHope this helps!",
"review_imgs": [
"https://m.media-amazon.com/images/I/61i7lGe2HGL._SY88.jpg"
],
"review_videos": [],
"variant": {
"asin": "B0CT9552BL"
},
"meta_data": {
"variant_info": "Model name: V8",
"verified_purchase": false,
"helpful_vote_count": 3,
"is_vine_voice": false
},
"location": "United States"
},
{
"id": "R2XMZXX2EEZC7U",
"date": "2024-05-11",
"author_name": "Yanet Rodriguez",
"author_url": "https://www.www.amazon.com/gp/profile/amzn1.account.AEDJSS2BKNZLHIAWKTJ2H6TLGXOQ/ref=cm_cr_getr_d_gw_btm?ie=UTF8",
"rating": 1,
"review_title": "Dyson v8",
"review_url": "https://www.www.amazon.com/gp/customer-reviews/R2XMZXX2EEZC7U/ref=cm_cr_arp_d_rvw_ttl?ie=UTF8&ASIN=B0CT9552BL",
"review_text": "The media could not be loaded.The battery is. Oh not good enough please don’t buy that vacuum.",
"review_imgs": [],
"review_videos": [
"https://m.media-amazon.com/images/S/vse-vms-transcoding-artifact-us-east-1-prod/d0875179-2bdf-4dfa-b9c7-6cba3d3a48bb/default.vertical.jobtemplate.hls.m3u8"
],
"variant": {
"asin": "B0CT9552BL"
},
"meta_data": {
"variant_info": "Model name: V8 Plus",
"verified_purchase": false,
"helpful_vote_count": 14,
"is_vine_voice": false
},
"location": "United States"
},
{
"id": "R1D4GN1G379KA6",
"date": "2024-05-09",
"author_name": "Joel Polanco",
"author_url": "https://www.www.amazon.com/gp/profile/amzn1.account.AEVZ3MVUC2ZQ74LCBLWWVTOISKWA/ref=cm_cr_getr_d_gw_btm?ie=UTF8",
"rating": 1,
"review_title": "A lot of noise due the screw",
"review_url": "https://www.www.amazon.com/gp/customer-reviews/R1D4GN1G379KA6/ref=cm_cr_arp_d_rvw_ttl?ie=UTF8&ASIN=B0CT9552BL",
"review_text": "It makes a lot of noise, because a screw is touching the plastic part when it turns.That screw hits the plastic and makes a horrible noise.",
"review_imgs": [
"https://m.media-amazon.com/images/I/61mU1wxByhL._SY88.jpg"
],
"review_videos": [],
"variant": {
"asin": "B0CT9552BL"
},
"meta_data": {
"variant_info": "Model name: V8",
"verified_purchase": false,
"helpful_vote_count": 3,
"is_vine_voice": false
},
"location": "United States"
},
{
"id": "RI1G01IFNHNUK",
"date": "2024-04-29",
"author_name": "B. Schultz",
"author_url": "https://www.www.amazon.com/gp/profile/amzn1.account.AH336NSCHAUTKUF2G7WDRXEJZUSA/ref=cm_cr_getr_d_gw_btm?ie=UTF8",
"rating": 2,
"review_title": "terrible, especially at this price point",
"review_url": "https://www.www.amazon.com/gp/customer-reviews/RI1G01IFNHNUK/ref=cm_cr_arp_d_rvw_ttl?ie=UTF8&ASIN=B0CT9552BL",
"review_text": "The media could not be loaded.this is the second one I have owned. first went to my ex wife. the batteries don’t last long. life wise I mean. they do sell batteries for hundreds more $. the batteries (internal) are so bad I barely get hard wood floors anymore. let alone the power head. at $350 today I would expect more. better off just getting a corded mini vac of some sort.",
"review_imgs": [],
"review_videos": [
"https://m.media-amazon.com/images/S/vse-vms-transcoding-artifact-us-east-1-prod/8ae35697-b02d-4d82-8756-8ea903cae6b2/default.vertical.jobtemplate.hls.m3u8"
],
"variant": {
"asin": "B0CT9552BL"
},
"meta_data": {
"variant_info": "Model name: V8",
"verified_purchase": false,
"helpful_vote_count": 18,
"is_vine_voice": false
},
"location": "United States"
},
{
"id": "RGV3DF3XRVUDJ",
"date": "2024-04-20",
"author_name": "Amazon Customer",
"author_url": "https://www.www.amazon.com/gp/profile/amzn1.account.AESGMUQ5GKD2HXET4WCYLKXIZSZQ/ref=cm_cr_getr_d_gw_btm?ie=UTF8",
"rating": 2,
"review_title": "Part missing piece",
"review_url": "https://www.www.amazon.com/gp/customer-reviews/RGV3DF3XRVUDJ/ref=cm_cr_arp_d_rvw_ttl?ie=UTF8&ASIN=B0CT9552BL",
"review_text": "One of the attachments is missing a piece so it is not able to clip to the vacuum and be used. Very frustrating and disappointing because this is the one attachment I really wanted to use!",
"review_imgs": [
"https://m.media-amazon.com/images/I/613T0GS4xZL._SY88.jpg",
"https://m.media-amazon.com/images/I/61IFHACV+vL._SY88.jpg",
"https://m.media-amazon.com/images/I/61eYgzXGipL._SY88.jpg"
],
"review_videos": [],
"variant": {
"asin": "B0CT9552BL"
},
"meta_data": {
"variant_info": "Model name: V8 Plus",
"verified_purchase": false,
"helpful_vote_count": 1,
"is_vine_voice": false
},
"location": "United States"
},
{
"id": "RDW26V063GS4M",
"date": "2024-03-21",
"author_name": "William W.",
"author_url": "https://www.www.amazon.com/gp/profile/amzn1.account.AHHWPRZNPOSHEPSCABH5L6MCBRYQ/ref=cm_cr_getr_d_gw_btm?ie=UTF8",
"rating": 3,
"review_title": "Don’t bump a chair leg, Dyson warranty excludes “accidental damage”",
"review_url": "https://www.www.amazon.com/gp/customer-reviews/RDW26V063GS4M/ref=cm_cr_arp_d_rvw_ttl?ie=UTF8&ASIN=B0CT9552BL",
"review_text": "Bought in November 2023, bottom hub broke off suction tube in February. Unrepairable. Very poorly engineered to have a flimsy plastic hub on the metal tube, if you bump something near the outer edge of the brush the torque snaps the hub. I am careful with my tools, I didn’t ram it into a chair leg, it is simply a weak point in the design.My rating is actually 1 star but I think more people read the 3 star reviews to save time.The Dyson support system feels designed to make it difficult, after several emails and a chat I have given up.I’ll never buy another Dyson product.",
"review_imgs": [
"https://m.media-amazon.com/images/I/710uBG4qQ9L._SY88.jpg",
"https://m.media-amazon.com/images/I/71feq8R85pL._SY88.jpg"
],
"review_videos": [],
"variant": {
"asin": "B0CT9552BL"
},
"meta_data": {
"variant_info": "Model name: V8",
"verified_purchase": false,
"helpful_vote_count": 2,
"is_vine_voice": false
},
"location": "United States"
},
{
"id": "RZHFY5XY25AEG",
"date": "2024-02-19",
"author_name": "s.r.",
"author_url": "https://www.www.amazon.com/gp/profile/amzn1.account.AFIG4WVLOF6J6BLUBPUI5PTLITBA/ref=cm_cr_getr_d_gw_btm?ie=UTF8",
"rating": 1,
"review_title": "Poor battery life",
"review_url": "https://www.www.amazon.com/gp/customer-reviews/RZHFY5XY25AEG/ref=cm_cr_arp_d_rvw_ttl?ie=UTF8&ASIN=B0CT9552BL",
"review_text": "After 5 months , vacuum only last 15 minutes chargeI’m requesting my money back",
"review_imgs": [
"https://m.media-amazon.com/images/I/71sjxi0fdmL._SY88.jpg"
],
"review_videos": [],
"variant": {
"asin": "B0CT9552BL"
},
"meta_data": {
"variant_info": "Model name: V8",
"verified_purchase": false,
"helpful_vote_count": 1,
"is_vine_voice": false
},
"location": "United States"
},
{
"id": "R7BI5I3ZEQ8AA",
"date": "2024-02-19",
"author_name": "Christopher Johnson",
"author_url": "https://www.www.amazon.com/gp/profile/amzn1.account.AHNXFUPOFYOWL3T6DU273CWZFPNQ/ref=cm_cr_getr_d_gw_btm?ie=UTF8",
"rating": 1,
"review_title": "False Advertising",
"review_url": "https://www.www.amazon.com/gp/customer-reviews/R7BI5I3ZEQ8AA/ref=cm_cr_arp_d_rvw_ttl?ie=UTF8&ASIN=B0CT9552BL",
"review_text": "This is false advertising which is illegal. I purchase this vacuum for the bending option shown on the video. Called support and they couldn’t provide an answer besides this vacuum does not support this feature. HIGHLY DISAPPOINTED in Dyson and may contact my attorney through my legal insurance for consumer protection. The company could not even provide me any discount or refund.",
"review_imgs": [
"https://m.media-amazon.com/images/I/51C5w2fhkGL._SY88.jpg",
"https://m.media-amazon.com/images/I/71kmdOd9UaL._SY88.jpg"
],
"review_videos": [],
"variant": {
"asin": "B0CT9552BL"
},
"meta_data": {
"variant_info": "Model name: V8",
"verified_purchase": false,
"helpful_vote_count": 13,
"is_vine_voice": false
},
"location": "United States"
},
{
"id": "R3RKFKYSRXL01R",
"date": "2024-02-15",
"author_name": "Desiree",
"author_url": "https://www.www.amazon.com/gp/profile/amzn1.account.AH4GFZQ5BIQ7LMZNJ7IA7CA72DZA/ref=cm_cr_getr_d_gw_btm?ie=UTF8",
"rating": 1,
"review_title": "DO NOT BUY, CHARGE LASTS 15 minutes, confirmed by a Dyson Representative.",
"review_url": "https://www.www.amazon.com/gp/customer-reviews/R3RKFKYSRXL01R/ref=cm_cr_arp_d_rvw_ttl?ie=UTF8&ASIN=B0CT9552BL",
"review_text": "I bought it in October 2023 and didn't use it until December. We had just moved to our new home and were still settling down in this property (putting our stuff away). I immediately realized that the battery lasted only to clean one room. After procrastinating the call for technical support with Dyson, I just hung up, and the Rep confirmed that this is the OLDEST model, and INDEED, this is only for quick and small purposes!PLEASE AMAZON: ADD IN THE DESCRIPTION that the charge lasts only 7-10 minutes. It means, that you can vacuum only a small room.A total waste of MONEY!",
"review_imgs": [
"https://m.media-amazon.com/images/I/71QRoaVr1hL._SY88.jpg",
"https://m.media-amazon.com/images/I/71jRNzXjjUL._SY88.jpg"
],
"review_videos": [],
"variant": {
"asin": "B0CT9552BL"
},
"meta_data": {
"variant_info": "Model name: V8",
"verified_purchase": false,
"helpful_vote_count": 17,
"is_vine_voice": false
},
"location": "United States"
},
{
"id": "RKUF2761PTU2V",
"date": "2024-02-14",
"author_name": "diane hooper",
"author_url": "https://www.www.amazon.com/gp/profile/amzn1.account.AEW4ICRKETY77NJVEGOXB6JU4SRA/ref=cm_cr_getr_d_gw_btm?ie=UTF8",
"rating": 2,
"review_title": "Doesn’t stay charged long",
"review_url": "https://www.www.amazon.com/gp/customer-reviews/RKUF2761PTU2V/ref=cm_cr_arp_d_rvw_ttl?ie=UTF8&ASIN=B0CT9552BL",
"review_text": "Very unhappy with this vacuum! This will not stay charged long enough to vacuum my car. I get one and a half rooms vacuumed before it dies. Will never buy again or suggest this for anyone. I hate this vacuum so much!! I wouldn’t even call the vacuum. I called a waste of money.",
"review_imgs": [
"https://m.media-amazon.com/images/I/71kUq0srk-L._SY88.jpg"
],
"review_videos": [],
"variant": {
"asin": "B0CT9552BL"
},
"meta_data": {
"variant_info": "Model name: V8",
"verified_purchase": false,
"helpful_vote_count": 2,
"is_vine_voice": false
},
"location": "United States"
},
{
"id": "RVCG9U1PGELW5",
"date": "2024-01-17",
"author_name": "Karl williams",
"author_url": "https://www.www.amazon.com/gp/profile/amzn1.account.AGRZEYERR24UTEMPCV7TOSGAV7AA/ref=cm_cr_getr_d_gw_btm?ie=UTF8",
"rating": 1,
"review_title": "Product might break down",
"review_url": "https://www.www.amazon.com/gp/customer-reviews/RVCG9U1PGELW5/ref=cm_cr_arp_d_rvw_ttl?ie=UTF8&ASIN=B0CT9552BL",
"review_text": "The media could not be loaded.Bought this 6 months ago and tried to get ahold of Dyson come to find out there 1800 number doesn’t go through..after 6 months it started to stop working on the trigger … Amazon tried to help me out with a refund come to find out there is about a $80 restocking fee from Dyson that they don’t tell you and I wouldn’t be made whole…. A company this big should stand by their product and actually have a number that works … so be warned if you buy this product be prepared if something happens to it.. you will lose money and won’t get a replacement …not saying all Dyson are bad it was just mine and am little upset on how this BIG company handles and honors its warranty especially with a product that is so expensive",
"review_imgs": [],
"review_videos": [
"https://m.media-amazon.com/images/S/vse-vms-transcoding-artifact-us-east-1-prod/46b3632a-ab77-4be8-b267-a328567483fc/embedded.cc.default.vertical.jobtemplate.hls.m3u8"
],
"variant": {
"asin": "B0CT9552BL"
},
"meta_data": {
"variant_info": "Model name: V8",
"verified_purchase": false,
"helpful_vote_count": 118,
"is_vine_voice": false
},
"location": "United States"
},
{
"id": "R2BL0L0YDZ9GV6",
"date": "2024-01-16",
"author_name": "SC",
"author_url": "https://www.www.amazon.com/gp/profile/amzn1.account.AE3HIC7H5BMFVJV6X33NZQ3RFNOA/ref=cm_cr_getr_d_gw_btm?ie=UTF8",
"rating": 1,
"review_title": "The plastic is too weak.",
"review_url": "https://www.www.amazon.com/gp/customer-reviews/R2BL0L0YDZ9GV6/ref=cm_cr_arp_d_rvw_ttl?ie=UTF8&ASIN=B0CT9552BL",
"review_text": "I have three of this and if lean them against the wall and they slide to the floor the plastic cracks. I had to put glue and tape on all three of them. I had other Dysons and no matter how many times they fell there was never a problem. This thing are too expensive to be this weak. The pictures are of the three vacuums I have.",
"review_imgs": [
"https://m.media-amazon.com/images/I/61guv7hiY5L._SY88.jpg",
"https://m.media-amazon.com/images/I/71Mnxof6jnL._SY88.jpg",
"https://m.media-amazon.com/images/I/71UJTrM3EYL._SY88.jpg"
],
"review_videos": [],
"variant": {
"asin": "B0CT9552BL"
},
"meta_data": {
"variant_info": "Model name: V8",
"verified_purchase": false,
"helpful_vote_count": 2,
"is_vine_voice": false
},
"location": "United States"
},
{
"id": "R3NKZYL5KW7HKO",
"date": "2023-12-06",
"author_name": "Maribel",
"author_url": "https://www.www.amazon.com/gp/profile/amzn1.account.AHYI6TE4LKDIFCIBKAWC6JXNW6DQ/ref=cm_cr_getr_d_gw_btm?ie=UTF8",
"rating": 2,
"review_title": "1st use !!!!!",
"review_url": "https://www.www.amazon.com/gp/customer-reviews/R3NKZYL5KW7HKO/ref=cm_cr_arp_d_rvw_ttl?ie=UTF8&ASIN=B0CT9552BL",
"review_text": "The vacuum succión is good overall but the parts are not very well made in the 1st use it’s falling apart too much money for such a bad made parts , and of course the battery life it’s not the best max use is 30 min and then it dies",
"review_imgs": [
"https://m.media-amazon.com/images/I/713f8RmEtUL._SY88.jpg"
],
"review_videos": [],
"variant": {
"asin": "B0CT9552BL"
},
"meta_data": {
"variant_info": "Model name: V8",
"verified_purchase": false,
"helpful_vote_count": 3,
"is_vine_voice": false
},
"location": "United States"
},
{
"id": "R2L7RI8YQ8AXFI",
"date": "2023-12-03",
"author_name": "Sara",
"author_url": "https://www.www.amazon.com/gp/profile/amzn1.account.AEBF5PPFZSDB7EJZH3YETM4O2E2A/ref=cm_cr_getr_d_gw_btm?ie=UTF8",
"rating": 1,
"review_title": "Ripping off",
"review_url": "https://www.www.amazon.com/gp/customer-reviews/R2L7RI8YQ8AXFI/ref=cm_cr_arp_d_rvw_ttl?ie=UTF8&ASIN=B0CT9552BL",
"review_text": "Would noise from very first day and the. Upon using this only once it’s coming off",
"review_imgs": [
"https://m.media-amazon.com/images/I/71v3qTCyuvL._SY88.jpg"
],
"review_videos": [],
"variant": {
"asin": "B0CT9552BL"
},
"meta_data": {
"variant_info": "Model name: V8",
"verified_purchase": false,
"helpful_vote_count": 8,
"is_vine_voice": false
},
"location": "United States"
},
{
"id": "R28A5ZS2RRO9ZP",
"date": "2023-11-05",
"author_name": "Shaun S.",
"author_url": "https://www.www.amazon.com/gp/profile/amzn1.account.AGZW43REDDTP7NYOMDXZPEEWD7GQ/ref=cm_cr_getr_d_gw_btm?ie=UTF8",
"rating": 1,
"review_title": "Dyson Vacuum",
"review_url": "https://www.www.amazon.com/gp/customer-reviews/R28A5ZS2RRO9ZP/ref=cm_cr_arp_d_rvw_ttl?ie=UTF8&ASIN=B0CT9552BL",
"review_text": "The media could not be loaded.Very disappointed stopped working after 23 days. I just got it. SMH.",
"review_imgs": [],
"review_videos": [
"https://m.media-amazon.com/images/S/vse-vms-transcoding-artifact-us-east-1-prod/c20beb00-80e6-406f-9fcc-f5082d098871/default.vertical.jobtemplate.hls.m3u8"
],
"variant": {
"asin": "B0CT9552BL"
},
"meta_data": {
"variant_info": "Model name: V8",
"verified_purchase": false,
"helpful_vote_count": 39,
"is_vine_voice": false
},
"location": "United States"
},
{
"id": "R3MUU3PMLWYZZ3",
"date": "2023-11-03",
"author_name": "Sarah Raab",
"author_url": "https://www.www.amazon.com/gp/profile/amzn1.account.AEBYTPYAYZN3GXZJRB2T47NOCTAA/ref=cm_cr_getr_d_gw_btm?ie=UTF8",
"rating": 1,
"review_title": "Great for a few minutes",
"review_url": "https://www.www.amazon.com/gp/customer-reviews/R3MUU3PMLWYZZ3/ref=cm_cr_arp_d_rvw_ttl?ie=UTF8&ASIN=B0CT9552BL",
"review_text": "9 minutes and 17 seconds is the exact run time. tested three times. this is just a rich person dust buster not a vacuum so you're welcome.",
"review_imgs": [
"https://m.media-amazon.com/images/I/51mcuF06U9L._SY88.jpg"
],
"review_videos": [],
"variant": {
"asin": "B0CT9552BL"
},
"meta_data": {
"variant_info": "Model name: V8",
"verified_purchase": false,
"helpful_vote_count": 12,
"is_vine_voice": false
},
"location": "United States"
},
{
"id": "RBHWPFNX2WPW4",
"date": "2023-10-12",
"author_name": "Robert",
"author_url": "https://www.www.amazon.com/gp/profile/amzn1.account.AFRELNZCWBX2B4BHWOJUFKOIP45A/ref=cm_cr_getr_d_gw_btm?ie=UTF8",
"rating": 1,
"review_title": "USED",
"review_url": "https://www.www.amazon.com/gp/customer-reviews/RBHWPFNX2WPW4/ref=cm_cr_arp_d_rvw_ttl?ie=UTF8&ASIN=B0CT9552BL",
"review_text": "I was so excited to receive this vacuum until I opened up the box and saw that it was used.",
"review_imgs": [
"https://m.media-amazon.com/images/I/71uDCs08JmL._SY88.jpg"
],
"review_videos": [],
"variant": {
"asin": "B0CT9552BL"
},
"meta_data": {
"variant_info": "Model name: V8",
"verified_purchase": false,
"helpful_vote_count": 4,
"is_vine_voice": false
},
"location": "United States"
},
{
"id": "R2K8CZG1IQBRET",
"date": "2023-09-08",
"author_name": "Sheldon H.",
"author_url": "https://www.www.amazon.com/gp/profile/amzn1.account.AE3URSXHCBGENZQALH3MXQC2IOBQ/ref=cm_cr_getr_d_gw_btm?ie=UTF8",
"rating": 1,
"review_title": "Pre owned but paid for new",
"review_url": "https://www.www.amazon.com/gp/customer-reviews/R2K8CZG1IQBRET/ref=cm_cr_arp_d_rvw_ttl?ie=UTF8&ASIN=B0CT9552BL",
"review_text": "Seems to work really well but I paid for new and received a dusty used one. Sending back and will purchase directly from manufacturer",
"review_imgs": [
"https://m.media-amazon.com/images/I/8196oJzet2L._SY88.jpg"
],
"review_videos": [],
"variant": {
"asin": "B0CT9552BL"
},
"meta_data": {
"variant_info": "Model name: V8",
"verified_purchase": false,
"helpful_vote_count": 6,
"is_vine_voice": false
},
"location": "United States"
},
{
"id": "RVCCJK1F24PM5",
"date": "2023-07-02",
"author_name": "Brandon Braun",
"author_url": "https://www.www.amazon.com/gp/profile/amzn1.account.AGAOAL7ZRIHMDVPJWDA226VCOHOQ/ref=cm_cr_getr_d_gw_btm?ie=UTF8",
"rating": 2,
"review_title": "Wore out way too fast!",
"review_url": "https://www.www.amazon.com/gp/customer-reviews/RVCCJK1F24PM5/ref=cm_cr_arp_d_rvw_ttl?ie=UTF8&ASIN=B0CT9552BL",
"review_text": "The media could not be loaded.Purchased about 1 year ago, only use it as supplemental as we have other vacuums. The battery, after a complete charge, only lasts 2-3 minutes TOPS. The dust bin latch no longer grabs so the bottom falls right out.I expect much more durability for the price, $400 at the time I purchased it. I've had $100 vacuums last longer. This vacuum should be $99. Not a pennie more.",
"review_imgs": [
"https://m.media-amazon.com/images/I/717YU1+jsWL._SY88.jpg"
],
"review_videos": [
"https://m.media-amazon.com/images/S/vse-vms-transcoding-artifact-us-east-1-prod/d76b163d-3118-4eca-8d5f-1d1732375cb0/default.vertical.jobtemplate.hls.m3u8"
],
"variant": {
"asin": "B0CT9552BL"
},
"meta_data": {
"variant_info": "Model name: V8",
"verified_purchase": false,
"helpful_vote_count": 45,
"is_vine_voice": false
},
"location": "United States"
},
{
"id": "RK3KA9BB2MYEV",
"date": "2023-06-20",
"author_name": "The_Blacked_IPs",
"author_url": "https://www.www.amazon.com/gp/profile/amzn1.account.AG5QRV3EWLKHQWAR5WBDYK6JWRPQ/ref=cm_cr_getr_d_gw_btm?ie=UTF8",
"rating": 1,
"review_title": "Weak suction, battery doesnt last",
"review_url": "https://www.www.amazon.com/gp/customer-reviews/RK3KA9BB2MYEV/ref=cm_cr_arp_d_rvw_ttl?ie=UTF8&ASIN=B0CT9552BL",
"review_text": "Where to start, this is a BAD vacuum. Suction is so terrible, I kept passing over SAME strands of hair and dust collections again and again, turns out if you add ANYTHING to the vacuum any extension tube it comes with or its accessories the suction is GONE. I test and feel with my hand, quite good suction without anything attached, put just a brush and suction drops to nothing.Maneuverability is terrible, back and forth only. Every extension is stiff no joints does not permit movement.Corners and edges and this vacuum neither has power nor shape to clean there.MAX power overheats and the battery life on MAX is 3 minutes, no joke, in just 3 minutes only cleaned under the desk and from full battery went depleted. After depleting, I placed vac in the charger and already had 2 LEDs like it charged some instantly meaning the battery already having cell memory effect.Filter is cleaned and dust bin is empty after each use.Nothing to excuse it here, this is just a terrible vacuum.",
"review_imgs": [
"https://m.media-amazon.com/images/I/610j7q3YXBL._SY88.jpg"
],
"review_videos": [],
"variant": {
"asin": "B0CT9552BL"
},
"meta_data": {
"variant_info": "Model name: V8",
"verified_purchase": false,
"helpful_vote_count": 11,
"is_vine_voice": false
},
"location": "United States"
}
],
"meta_data": {
"total_ratings": 5821,
"rating_distribution": {
"5 star": "69%",
"4 star": "11%",
"3 star": "6%",
"2 star": "3%",
"1 star": "11%"
},
"csrf_token": "hJ%2BVEsYJhOwRZI3wrQtUzoFPGwTzyW90y%2FBX9SU8Iu2aAAAAAGg%2BDnYAAAAB",
"session_id": 33630,
"using_system_cookie": true
},
"pages_fetched": 6,
"credits_used": 60,
"remaining_credits": 1722819.5
}
Request Cost
• 1 credit is deducted for each page successfully fetched from Amazon USA
• 2.5 credits are deducted for each page successfully fetched from all other Amazon marketplaces
Multi-Page Credit Calculation
When using the max_pages
parameter, credits are calculated as:
Credits Used = Base Credit Cost × Pages Fetched
For example:
- Requesting max_pages=5
from Amazon USA and successfully fetching 5 pages = 5 credits
- Requesting max_pages=10
from Amazon UK but only 7 pages exist = 17.5 credits (2.5 × 7)
- Requesting max_pages=3
but encountering an error on page 2 = credits for pages fetched (1 or 2 depending on when the error occurred)
Supported Countries
The countries we support to scrape Amazon's search results from are listed below:
Country | Domain | Code |
---|---|---|
USA | Amazon.com | us |
Canada | Amazon.ca | ca |
UK | Amazon.co.uk | gb |
France | Amazon.fr | fr |
Germany | Amazon.de | de |
Spain | Amazon.es | es |
Japan | Amazon.co.jp | jp |
Australia | Amazon.com.au | au |
India | Amazon.in | in |
Brazil | Amazon.com.br | br |
Italy | Amazon.it | it |
Belgium | Amazon.com.be | be |
Support
If you don't see the country you need data from, want to add a parameter to our response, or have any questions or feedback, please contact us at support@unwrangle.com.