Getting Started
🧭What Is EasyParser?
EasyParser is a flexible and scalable data extraction API designed to turn public e-commerce pages into structured, machine-readable data. It currently focuses on Amazon, enabling you to retrieve detailed product information, search results, offers, and more — all through clean and reliable endpoints.
Regardless of whether you're using the Real-Time API or the Bulk API, all responses are delivered in a standardized JSON format. This ensures consistency and makes it easy to parse, store, or process the returned data in your applications — whether you're handling a single operation or managing thousands of tasks in bulk.
With support for both real-time and bulk processing, EasyParser is built to handle a wide range of use cases — from one-off lookups to high-volume data pipelines. Future support for additional marketplaces is also part of the roadmap.
🔄Real-Time vs. Bulk API: Which One Do You Need?
Real-Time API
The Real-Time API is designed for instant responses — ideal for on-demand requests where you need immediate results. It supports all EasyParser operations, offering flexible and fast access to structured data.
This method is best suited for:
Live applications and dashboards
Trigger-based workflows
Time-sensitive use cases
Testing and development environments
You send a request and receive the parsed data instantly, making it perfect when low latency is essential
Bulk API
The Bulk API is designed for processing multiple operations in a single asynchronous job. Instead of getting responses instantly, you receive a callback or later fetch the result using job IDs. This is ideal for:
Running multi-product or multi-operation tasks in a single API call
Automating large-scale operations like scheduled data collection or monitoring
Reducing API overhead and improving throughput for heavy workloads
Whether you need speed or scale, EasyParser offers both options — use one or combine both depending on your data strategy.
Request Type
Synchronous (instant)
Asynchronous (via callback URL)
Ideal For
Low-volume or instant needs
High-volume or scheduled processing
Response
Immediate (inline)
Delivered via webhook
Not sure which one fits your workflow? Start with Real-Time API for quick tests, or explore Bulk Integration for large-scale data tasks.
📦 Address Targeting Support
Depending on your subscription plan, EasyParser allows you to define one or more delivery addresses through the Address Creation Page available in the EasyParser Web App. Each added address is assigned a unique address_id
, which you can include in your requests
Why does this matter? When sending a request to Amazon, the specified address acts as a delivery location — helping you receive region-specific results such as availability, shipping options, and pricing.
For a full walkthrough on how to add and manage delivery addresses, please refer to the Address Management Guide.
⚙️Supported Operations
All operations supported by EasyParser are compatible with both Real-Time and Bulk API integrations. This ensures flexibility depending on your use case — whether you’re looking for instant results with single-item calls or prefer scalable, asynchronous processing for larger tasks.
Below you’ll find a brief overview of the available operation types. These summaries provide a general understanding of what each operation does. For more in-depth details—such as payload structures, implementation tips, and sample responses—you can visit the relevant documentation pages for Detail, Offer, Search, and Product Search, along with additional operation types covered in the Operations section.
Fetch detailed information about a single product, such as title, brand, images, price, stock status, and more.
✅ Supports both Realtime and Bulk services ✅ Accepts ASIN or URL as input ✅ Ideal for product analysis and enrichment
Use Realtime for single-item queries; use Bulk for batch product lookups.
Get multiple price offers for a product along with seller info, shipping details, and basic product data (title, rating, etc.).
✅ Available via Realtime and Bulk ✅ Input via ASIN
Use it to analyze competition, seller pricing, or availability on a product.
Find general or category-specific products by entering a keyword or phrase, and view product listings with summarized information.
✅ Works with both Realtime and Bulk ✅ Input via keyword or search URL
Ideal for keyword analysis, market research, or product discovery.
🧪Try It Out Quickly!
You can now test the API using sample requests directly from:
Here is the product we’ll use in this sample request:



Real-Time Integration Request – Sample
curl --location 'https://realtime.easyparser.com/v1/request?api_key=YOUR_API_KEY&platform=AMZ&domain=.com&asin=B0F25371FH&output=json&operation=DETAIL'
import requests
url = "https://realtime.easyparser.com/v1/request?api_key=YOUR_API_KEY&platform=AMZ&domain=.com&asin=B0F25371FH&output=json&operation=DETAIL"
payload = {}
headers = {}
response = requests.request("GET", url, headers=headers, data=payload)
print(response.text)
var request = require('request');
var options = {
'method': 'GET',
'url': 'https://realtime.easyparser.com/v1/request?api_key=YOUR_API_KEY&platform=AMZ&domain=.com&asin=B0F25371FH&output=json&operation=DETAIL',
'headers': {
}
};
request(options, function (error, response) {
if (error) throw new Error(error);
console.log(response.body);
});
GET /v1/request?api_key=YOUR_API_KEY&platform=AMZ&domain=.com&asin=B0F25371FH&output=json&operation=DETAIL HTTP/1.1
Host: realtime.easyparser.com
<?php
$curl = curl_init();
curl_setopt_array($curl, array(
CURLOPT_URL => 'https://realtime.easyparser.com/v1/request?api_key=YOUR_API_KEY&platform=AMZ&domain=.com&asin=B0F25371FH&output=json&operation=DETAIL',
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => '',
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 0,
CURLOPT_FOLLOWLOCATION => true,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => 'GET',
));
$response = curl_exec($curl);
curl_close($curl);
echo $response;
package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://realtime.easyparser.com/v1/request?api_key=YOUR_API_KEY&platform=AMZ&domain=.com&asin=B0F25371FH&output=json&operation=DETAIL"
method := "GET"
client := &http.Client {
}
req, err := http.NewRequest(method, url, nil)
if err != nil {
fmt.Println(err)
return
}
res, err := client.Do(req)
if err != nil {
fmt.Println(err)
return
}
defer res.Body.Close()
body, err := io.ReadAll(res.Body)
if err != nil {
fmt.Println(err)
return
}
fmt.Println(string(body))
}
var client = new HttpClient();
var request = new HttpRequestMessage(HttpMethod.Get, "https://realtime.easyparser.com/v1/request?api_key=YOUR_API_KEY&platform=AMZ&domain=.com&asin=B0F25371FH&output=json&operation=DETAIL");
var response = await client.SendAsync(request);
response.EnsureSuccessStatusCode();
Console.WriteLine(await response.Content.ReadAsStringAsync());
OkHttpClient client = new OkHttpClient().newBuilder()
.build();
MediaType mediaType = MediaType.parse("text/plain");
RequestBody body = RequestBody.create(mediaType, "");
Request request = new Request.Builder()
.url("https://realtime.easyparser.com/v1/request?api_key=YOUR_API_KEY&platform=AMZ&domain=.com&asin=B0F25371FH&output=json&operation=DETAIL")
.method("GET", body)
.build();
Response response = client.newCall(request).execute();
Real-Time Integration Response
Response
{
"request_info": {
"id": "715fbb64-8892-475f-a7cd-3af77f3a4058",
"success": true,
"status_code": 200,
"error_details": [],
"credits_used": 19,
"credit_used_this_request": 1,
"credits_remaining": 99,
"credits_reset_at": "2025-08-28T12:41:09.000Z",
"address": {
"city": null,
"district": null,
"country_code": null,
"zipCode": [
"19805"
]
}
},
"request_parameters": {
"output": "json",
"language": "en_US",
"include_html": false,
"asin": "B0F25371FH",
"a_plus_content": false,
"type": "DETAIL"
},
"request_metadata": {
"created_at": "2025-08-05T11:27:09.799Z",
"processed_at": "2025-08-05T11:27:19.731Z",
"total_time_taken": 9.932
},
"result": {
"detail": {
"a_plus_content": {
"has_a_plus_content": true,
"has_brand_story": false,
"third_party": false
},
"asin": "B0F25371FH",
"attributes": [
{
"name": "Brand",
"value": "STANLEY"
},
{
"name": "Material",
"value": "Stainless Steel"
},
{
"name": "Color",
"value": "Summer Lichen"
},
{
"name": "Style",
"value": "40 oz"
},
{
"name": "Included Components",
"value": "Reuseable Straw"
}
],
"bestsellers_rank": [
{
"category": "Kitchen & Dg",
"link": "https://www.amazon.com/gp/bestsellers/kitchen/ref=pd_zg_ts_kitchen",
"rank": 1
},
{
"category": "Insulated Tumblers",
"link": "https://www.amazon.com/gp/bestsellers/kitchen/21613423011/ref=pd_zg_hrsr_kitchen",
"rank": 1
}
],
"bestsellers_rank_flat": "Category: Kitchen & Dg | Rank: 1,Category: Insulated Tumblers | Rank: 1",
"bought_activity": {
"period": "past month",
"raw": "1K+ bought in past month",
"symbol": "K",
"value": 1000
},
"brand": "STANLEY",
"brand_store": {
"id": "47A7E765-00AF-4F34-AC01-240A7EDD822A",
"link": "https://www.amazon.com/stores/Stanley/page/47A7E765-00AF-4F34-AC01-240A7EDD822A?lp_asin=B0F25371FH&ref_=ast_bln&store_ref=bl_ast_dp_brandLogo_sto"
},
"buybox_winner": {
"availability": {
"min_quantity": 20,
"raw": "In Stock",
"real_count": false
},
"condition": {
"is_new": false
},
"fulfillment": {
"fastest_delivery": {
"date": "Today 10 AM - 3 PM",
"raw": "FREE"
},
"standard_delivery": {
"date": "Sunday, August 10",
"raw": "FREE"
}
},
"is_amazon_fresh": false,
"is_prime": false,
"maximum_order_quantity": {
"hard_maximum": true,
"value": 2
},
"offer_id": "PBxQ2%2F7%2FgShL8L12yt7lCmEEK1%2FCpGHUarcPAu8Fb3vRt%2BJgKncwKsNVWPSWHymXlxV%2F4ESFavlh5MCgCwGYwIbW6dH3ort0uOQLV7UeKTMK%2FS3EADPJQnK85wwNtDK8AsYwfO1IFiH7qrcmvegvNQ%3D%3D",
"price": {
"currency": "USD",
"raw": "$45.00",
"symbol": "$",
"value": "45.00"
},
"seller_type": {
"fba": false,
"fbm": true,
"is_fulfilled_by_amazon": false,
"is_fulfilled_by_third_party": true,
"is_sold_by_amazon": false,
"is_sold_by_third_party": true,
"sba": false,
"type": "FBM"
},
"shipping": {
"raw": "FREE"
}
},
"categories": [
{
"category_id": "1055398",
"link": "/home-garden-kitchen-furniture-bedding/b/ref=dp_bc_1?ie=UTF8&node=1055398",
"name": "Home & Kitchen"
},
{
"category_id": "284507",
"link": "/kitchen-dining/b/ref=dp_bc_2?ie=UTF8&node=284507",
"name": "Kitchen & Dining"
},
{
"category_id": "510136",
"link": "/kitchen-storage-organization/b/ref=dp_bc_3?ie=UTF8&node=510136",
"name": "Storage & Organization"
},
{
"category_id": "21613418011",
"link": "/b/ref=dp_bc_4?ie=UTF8&node=21613418011",
"name": "Thermoses"
},
{
"category_id": "21613420011",
"link": "/b/ref=dp_bc_5?ie=UTF8&node=21613420011",
"name": "Insulated Beverage Containers"
},
{
"category_id": "21613423011",
"link": "/b/ref=dp_bc_6?ie=UTF8&node=21613423011",
"name": "Tumblers"
}
],
"categories_flat": "Home & Kitchen > Kitchen & Dining > Storage & Organization > Thermoses > Insulated Beverage Containers > Tumblers",
"color": "Summer Lichen",
"delivered_to": "Wilmington 19805",
"description": "Can you feel it? Those good vibes that carry you through the day. From fresh Lichen to Agave and Pink Mesa Sunset, it’s about being present now. Going where you want. And getting exactly what you want. This is your Summer Edit. The 40-ounce Quencher H2.0 FlowState Tumbler keeps your drink ice cold for hours, thanks to double-wall vacuum insulation. The versatile FlowState 3-position lid has three sip settings: one for the reusable straw, one without and the option to rotate the silicone cover shut when you’re on the go.",
"dimensions": "5.83 x 3.94 x 12.52 inches",
"feature_bullets": [
"SEEK SOMETHING DIFFERENT THIS SUMMER: All you gotta do is choose - discover our new Summer colors (Pink Mesa Sunset, Lichen & Agave). Whichever way your day flows, the H2.0 FlowState tumbler keeps you refreshed with fewer refills. Double wall vacuum insulation means drinks stay cold, iced or hot for hours. Choose between our 30oz and 40oz sizes in this exclusive range. The narrow base fits most car cup holders.",
"ADVANCED LID CONSTRUCTION: Whether you prefer small sips or maximum thirst quenching, Stanley has developed an advanced FlowState lid, featuring a rotating cover with three positions: a straw opening designed to resist splashes with a seal that holds the reusable straw in place, a drink opening, and a full-cover top for added leak resistance. We’ve also included an ergonomic, comfort-grip handle, so you can easily carry your ice-cold water to work, meetings, the gym or trips out of town.",
"EARTH-FRIENDLY DURABILITY: Constructed of 90% recycled BPA free stainless steel for sustainable sipping, the Stanley Quencher H2.0 has the durability to stand up to a lifetime of use. Eliminate the use of single-use plastic bottles and straws with a travel tumbler built with sustainability in mind.",
"DISHWASHER SAFE: Cleaning your tumbler and lid couldn't be easier, just pop them into the dishwasher. Unlike plastic bottles that retain stains & smells, this metallic beauty comes out pristine.",
"LIFETIME WARRANTY: Since 1913 we’ve promised to provide rugged, capable gear for food and drink - accessories built to last a lifetime. It’s a promise we still keep. Stanley products purchased from Stanley Resellers come with a lifetime warranty. Rest easy knowing we’ve got your back through it all."
],
"feature_bullets_count": 5,
"feature_bullets_flat": "SEEK SOMETHING DIFFERENT THIS SUMMER: All you gotta do is choose - discover our new Summer colors (Pink Mesa Sunset, Lichen & Agave). Whichever way your day flows, the H2.0 FlowState tumbler keeps you refreshed with fewer refills. Double wall vacuum insulation means drinks stay cold, iced or hot for hours. Choose between our 30oz and 40oz sizes in this exclusive range. The narrow base fits most car cup holders..ADVANCED LID CONSTRUCTION: Whether you prefer small sips or maximum thirst quenching, Stanley has developed an advanced FlowState lid, featuring a rotating cover with three positions: a straw opening designed to resist splashes with a seal that holds the reusable straw in place, a drink opening, and a full-cover top for added leak resistance. We’ve also included an ergonomic, comfort-grip handle, so you can easily carry your ice-cold water to work, meetings, the gym or trips out of town..EARTH-FRIENDLY DURABILITY: Constructed of 90% recycled BPA free stainless steel for sustainable sipping, the Stanley Quencher H2.0 has the durability to stand up to a lifetime of use. Eliminate the use of single-use plastic bottles and straws with a travel tumbler built with sustainability in mind..DISHWASHER SAFE: Cleaning your tumbler and lid couldn't be easier, just pop them into the dishwasher. Unlike plastic bottles that retain stains & smells, this metallic beauty comes out pristine..LIFETIME WARRANTY: Since 1913 we’ve promised to provide rugged, capable gear for food and drink - accessories built to last a lifetime. It’s a promise we still keep. Stanley products purchased from Stanley Resellers come with a lifetime warranty. Rest easy knowing we’ve got your back through it all.",
"first_available": {
"raw": "June 24, 2025",
"utc": "2025-06-24T00:00:00Z"
},
"gtin": "041604458187",
"has_360_view": true,
"has_size_guide": true,
"images": [
{
"link": "https://m.media-amazon.com/images/I/31rOUDQ1YuL._AC_.jpg",
"variant": "MAIN"
},
{
"link": "https://m.media-amazon.com/images/I/41p4oa2zTmL._AC_.jpg",
"variant": "SIDE"
},
{
"link": "https://m.media-amazon.com/images/I/31v9gNfbHgL._AC_.jpg",
"variant": "BACK"
},
{
"link": "https://m.media-amazon.com/images/I/31UzO63j5yL._AC_.jpg",
"variant": "PT01"
},
{
"link": "https://m.media-amazon.com/images/I/318x+YrLIEL._AC_.jpg",
"variant": "PT02"
},
{
"link": "https://m.media-amazon.com/images/I/51+MGmmIZsL._AC_.jpg",
"variant": "PT03"
},
{
"link": "https://m.media-amazon.com/images/I/41KuKsL825L._AC_.jpg",
"variant": "PT04"
},
{
"link": "https://m.media-amazon.com/images/I/41KEoiOXsTL._AC_.jpg",
"variant": "PT05"
}
],
"images_count": 8,
"images_flat": "https://m.media-amazon.com/images/I/31rOUDQ1YuL._AC_.jpg,https://m.media-amazon.com/images/I/41p4oa2zTmL._AC_.jpg,https://m.media-amazon.com/images/I/31v9gNfbHgL._AC_.jpg,https://m.media-amazon.com/images/I/31UzO63j5yL._AC_.jpg,https://m.media-amazon.com/images/I/318x+YrLIEL._AC_.jpg,https://m.media-amazon.com/images/I/51+MGmmIZsL._AC_.jpg,https://m.media-amazon.com/images/I/41KuKsL825L._AC_.jpg,https://m.media-amazon.com/images/I/41KEoiOXsTL._AC_.jpg",
"is_bundle": true,
"keywords": "STANLEY,Quencher,H2.0,Tumbler,with,Handle,and,Straw,40,oz,|,Flowstate,3-Position,Lid,|,Cup,Holder,Compatible,for,Travel,|,Insulated,Stainless,Steel,Cup,|,BPA-Free,|,Lichen",
"keywords_list": [
"STANLEY",
"Quencher",
"H2.0",
"Tumbler",
"with",
"Handle",
"and",
"Straw",
"40",
"oz",
"Flowstate",
"3-Position",
"Lid",
"Cup",
"Holder",
"Compatible",
"for",
"Travel",
"Insulated",
"Stainless",
"Steel",
"BPA-Free",
"Lichen",
"STANLEY Quencher H2.0 Tumbler with Handle and Straw 40 oz",
"Flowstate 3-Position Lid",
"Cup Holder Compatible for Travel",
"Insulated Stainless Steel Cup"
],
"link": "https://www.amazon.com/STANLEY-Quencher-Tumbler-Handle-Straw/dp/B0F165F7V9",
"main_image": {
"link": "51n8Ng1cyLL"
},
"manufacturer": "Stanley",
"marketplace_id": "ATVPDKIKX0DER",
"model_number": "10-12552-178",
"not_match": [
"requires_business_account",
"authors",
"series",
"format",
"promotions",
"promotions_feature",
"parent_asin",
"protection_plans",
"add_an_accessory",
"documents",
"sell_on_amazon",
"audible_sample",
"proposition_65_warning",
"size_guide_html",
"energy_efficiency",
"rich_product_description",
"has_coupon",
"coupon_text",
"book_description",
"editorial_reviews",
"editorial_reviews_flat",
"runtime",
"videos_additional",
"bundles",
"bundle_contents",
"publisher",
"is_collection",
"collection_children",
"collection_size",
"release_date",
"language",
"material",
"recommended_age",
"whats_in_the_box",
"important_information",
"additional_details",
"additional_details_flat",
"more_buying_choices",
"frequently_bought_together",
"similar_to_consider",
"compare_with_similar",
"amazons_choice",
"bestseller_badge",
"kindle_unlimited",
"climate_pledge_friendly",
"request_invite"
],
"rating": "4.7",
"rating_breakdown": {
"five_star": {
"count": 56113,
"percentage": 86
},
"four_star": {
"count": 4567,
"percentage": 7
},
"one_star": {
"count": 1957,
"percentage": 3
},
"three_star": {
"count": 1957,
"percentage": 3
},
"two_star": {
"count": 652,
"percentage": 1
}
},
"ratings_total": 65248,
"search_alias": {
"title": "Sports & Outdoors",
"value": "sporting"
},
"shipping_weight": "1.75 pounds",
"specifications": [
{
"name": "Brand",
"value": "STANLEY"
},
{
"name": "Material",
"value": "Stainless Steel"
},
{
"name": "Color",
"value": "Summer Lichen"
},
{
"name": "Style",
"value": "40 oz"
},
{
"name": "Included Components",
"value": "Reuseable Straw"
},
{
"name": "Brand",
"value": "STANLEY"
},
{
"name": "Material",
"value": "Stainless Steel"
},
{
"name": "Color",
"value": "Summer Lichen"
},
{
"name": "Style",
"value": "40 oz"
},
{
"name": "Included Components",
"value": "Reuseable Straw"
},
{
"name": "Manufacturer",
"value": "Stanley"
},
{
"name": "UPC",
"value": "041604458187"
},
{
"name": "Size",
"value": "40 Ounces"
},
{
"name": "Product Dimensions",
"value": "5.83 x 3.94 x 12.52 inches"
},
{
"name": "Item Weight",
"value": "1.75 pounds"
},
{
"name": "Department",
"value": "Unisex-Adult"
},
{
"name": "ASIN",
"value": "B0F25371FH"
},
{
"name": "Country of Origin",
"value": "China"
},
{
"name": "Item model number",
"value": "10-12552-178"
},
{
"name": "Customer Reviews",
"value": "4.7 out of 5 stars"
},
{
"name": "Best Sellers Rank",
"value": ""
},
{
"name": "Date First Available",
"value": "June 24, 2025"
}
],
"specifications_flat": "Brand: STANLEY.Material: Stainless Steel.Color: Summer Lichen.Style: 40 oz.Included Components: Reuseable Straw.Brand: STANLEY.Material: Stainless Steel.Color: Summer Lichen.Style: 40 oz.Included Components: Reuseable Straw.Manufacturer: Stanley.UPC: 041604458187.Size: 40 Ounces.Product Dimensions: 5.83 x 3.94 x 12.52 inches.Item Weight: 1.75 pounds.Department: Unisex-Adult.ASIN: B0F25371FH.Country of Origin: China.Item model number: 10-12552-178.Customer Reviews: 4.7 out of 5 stars.Best Sellers Rank: .Date First Available: June 24, 2025.",
"sub_title": {
"link": "https://www.amazon.com/stores/Stanley/page/47A7E765-00AF-4F34-AC01-240A7EDD822A?lp_asin=B0F25371FH&ref_=ast_bln&store_ref=bl_ast_dp_brandLogo_sto",
"text": "Visit the STANLEY Store"
},
"syntax_errors": [],
"title": "STANLEY Quencher H2.0 Tumbler with Handle and Straw 40 oz | Flowstate 3-Position Lid | Cup Holder Compatible for Travel | Insulated Stainless Steel Cup | BPA-Free | Lichen",
"title_excluding_variant_name": "STANLEY Quencher H2.0 Tumbler with Handle and Straw 40 oz | Flowstate 3-Position Lid | Cup Holder Compatible for Travel | Insulated Stainless Steel Cup | BPA-Free | Lichen",
"top_reviews": [
{
"body": "I purchased 7 different colors of the Stanley Quencher H2.0 Tumbler 30 oz (Rose Quartz 2.0 included) for friends and family, and every single person has absolutely loved theirs.The FlowState 3-position lid, comfortable handle, and cup-holder-friendly design make it incredibly practical for daily use—whether at work, on the go, or during outdoor activities. The insulation is excellent, keeping drinks cold for hours, and the color selection is stunning in person—vibrant yet elegant, especially the Rose Quartz.The feedback across the board has been glowing—everyone was impressed with both the style and functionality. It’s truly a perfect blend of form and performance, and easily one of the best gift choices I’ve made.Big home run, indeed. Strongly recommended for anyone looking to treat themselves or others.",
"body_html": "<script> (function() { P.when('cr-A', 'ready').execute(function(A) { if(typeof A.toggleExpanderAriaLabel === 'function') { A.toggleExpanderAriaLabel('review_text_read_more', 'Read more of this review', 'Read less of this review'); } }); })(); </script> <style> .review-text-read-more-expander:focus-visible { outline: 2px solid #2162a1; outline-offset: 2px; border-radius: 5px; } </style><div data-a-expander-name=\"review_text_read_more\" data-a-expander-collapsed-height=\"300\" class=\"a-expander-collapsed-height a-row a-expander-container a-expander-partial-collapse-container review-text-read-more-expander\" style=\"max-height:300px\"><div data-hook=\"review-collapsed\" data-expanded=\"false\" class=\"a-expander-content reviewText review-text-content a-expander-partial-collapse-content\"> <span>I purchased 7 different colors of the Stanley Quencher H2.0 Tumbler 30 oz (Rose Quartz 2.0 included) for friends and family, and every single person has absolutely loved theirs.<br/><br/>The FlowState 3-position lid, comfortable handle, and cup-holder-friendly design make it incredibly practical for daily use—whether at work, on the go, or during outdoor activities. The insulation is excellent, keeping drinks cold for hours, and the color selection is stunning in person—vibrant yet elegant, especially the Rose Quartz.<br/><br/>The feedback across the board has been glowing—everyone was impressed with both the style and functionality. It’s truly a perfect blend of form and performance, and easily one of the best gift choices I’ve made.<br/><br/>Big home run, indeed. Strongly recommended for anyone looking to treat themselves or others.<br/></span> </div><div class=\"a-expander-header a-expander-partial-collapse-header\"><div class=\"a-expander-content-fade\"></div><a href=\"javascript:void(0)\" data-hook=\"expand-collapse-read-more-less\" aria-label=\"Read more of this review\" aria-expanded=\"false\" role=\"button\" data-action=\"a-expander-toggle\" class=\"a-declarative\" data-a-expander-toggle=\"{"allowLinkDefault":true, "expand_prompt":"Read more", "collapse_prompt":"Read less"}\"><i class=\"a-icon a-icon-extender-expand\"></i><span class=\"a-expander-prompt\">Read more</span></a></div></div>",
"date": {
"raw": "Reviewed in the United States on July 21, 2025"
},
"helpful_votes": 4,
"id": "R72I237PT7ZI1",
"is_global_review": true,
"link": "https://www.amazon.com/gp/customer-reviews/R72I237PT7ZI1/ref=cm_cr_dp_d_rvw_ttl?ie=UTF8",
"profile": {
"id": "AFUWHVGJIEWEIULKLQRTME3UJPQQ",
"link": "https://www.amazon.com/gp/profile/amzn1.account.AFUWHVGJIEWEIULKLQRTME3UJPQQ/ref=cm_cr_dp_d_gw_tr?ie=UTF8",
"name": "Jason K."
},
"rating": "5.0",
"review_country": "USA",
"title": "A Grand Slam Gift for Everyone – Beautiful Colors and Unmatched Quality",
"verified_purchase": true,
"vine_program": false
},
{
"body": "I absolutely love my 30 oz Stanley Cup! The pink color is beautiful and super cute, and the cup itself is incredibly durable. It keeps drinks cold for over 6–8 hours, ice stays solid for hours and hot drinks stay warm for a long time too. The insulation is truly impressive.Since I started using it, it’s been much easier to reach my daily 2-liter water goal. It helps me keep track, and because it’s so pretty and stylish, I actually enjoy carrying it everywhere. It’s practical, reliable, and honestly my favorite tumbler of all time. I’m obsessed!",
"body_html": "<div data-a-expander-name=\"review_text_read_more\" data-a-expander-collapsed-height=\"300\" class=\"a-expander-collapsed-height a-row a-expander-container a-expander-partial-collapse-container review-text-read-more-expander\" style=\"max-height:300px\"><div data-hook=\"review-collapsed\" data-expanded=\"false\" class=\"a-expander-content reviewText review-text-content a-expander-partial-collapse-content\"> <span>I absolutely love my 30 oz Stanley Cup! The pink color is beautiful and super cute, and the cup itself is incredibly durable. It keeps drinks cold for over 6–8 hours, ice stays solid for hours and hot drinks stay warm for a long time too. The insulation is truly impressive.<br/>Since I started using it, it’s been much easier to reach my daily 2-liter water goal. It helps me keep track, and because it’s so pretty and stylish, I actually enjoy carrying it everywhere. It’s practical, reliable, and honestly my favorite tumbler of all time. I’m obsessed!<br/></span> </div><div class=\"a-expander-header a-expander-partial-collapse-header\"><div class=\"a-expander-content-fade\"></div><a href=\"javascript:void(0)\" data-hook=\"expand-collapse-read-more-less\" aria-label=\"Read more of this review\" aria-expanded=\"false\" role=\"button\" data-action=\"a-expander-toggle\" class=\"a-declarative\" data-a-expander-toggle=\"{"allowLinkDefault":true, "expand_prompt":"Read more", "collapse_prompt":"Read less"}\"><i class=\"a-icon a-icon-extender-expand\"></i><span class=\"a-expander-prompt\">Read more</span></a></div></div>",
"date": {
"raw": "Reviewed in the United States on July 18, 2025"
},
"helpful_votes": 5,
"id": "R2KFMGR7YIPCGW",
"is_global_review": true,
"link": "https://www.amazon.com/gp/customer-reviews/R2KFMGR7YIPCGW/ref=cm_cr_dp_d_rvw_ttl?ie=UTF8",
"profile": {
"id": "AEUDUCKR7ADCG7EGX436GKHQUIVA",
"link": "https://www.amazon.com/gp/profile/amzn1.account.AEUDUCKR7ADCG7EGX436GKHQUIVA/ref=cm_cr_dp_d_gw_tr?ie=UTF8",
"name": "Laury DSLaury DS"
},
"rating": "5.0",
"review_country": "USA",
"title": "Very girly! I love it 😍",
"verified_purchase": true,
"vine_program": false
},
{
"body": "Have more than one Stanley product and have for years. Yes they do cost a little more, quality over anything else well worth the price, do some research and you will find discount codes sometimes.I purchased the beige off white one love the soft color, nice lid can use a straw keeps clean, there are replace lids for purchase if needed as well, or if you lose a part.Used Stanley for literally years now and will continue to always view new products by them. Nice camping brand as well. Very durable, comfortable to hold, will fit in cup holder in car, won't leak. Nice, keeps my drinks very cold for a long time.",
"body_html": "<div data-a-expander-name=\"review_text_read_more\" data-a-expander-collapsed-height=\"300\" class=\"a-expander-collapsed-height a-row a-expander-container a-expander-partial-collapse-container review-text-read-more-expander\" style=\"max-height:300px\"><div data-hook=\"review-collapsed\" data-expanded=\"false\" class=\"a-expander-content reviewText review-text-content a-expander-partial-collapse-content\"> <span>Have more than one Stanley product and have for years. Yes they do cost a little more, quality over anything else well worth the price, do some research and you will find discount codes sometimes.<br/>I purchased the beige off white one love the soft color, nice lid can use a straw keeps clean, there are replace lids for purchase if needed as well, or if you lose a part.<br/>Used Stanley for literally years now and will continue to always view new products by them. Nice camping brand as well. Very durable, comfortable to hold, will fit in cup holder in car, won't leak. Nice, keeps my drinks very cold for a long time.<br/></span> </div><div class=\"a-expander-header a-expander-partial-collapse-header\"><div class=\"a-expander-content-fade\"></div><a href=\"javascript:void(0)\" data-hook=\"expand-collapse-read-more-less\" aria-label=\"Read more of this review\" aria-expanded=\"false\" role=\"button\" data-action=\"a-expander-toggle\" class=\"a-declarative\" data-a-expander-toggle=\"{"allowLinkDefault":true, "expand_prompt":"Read more", "collapse_prompt":"Read less"}\"><i class=\"a-icon a-icon-extender-expand\"></i><span class=\"a-expander-prompt\">Read more</span></a></div></div>",
"date": {
"raw": "Reviewed in the United States on June 19, 2025"
},
"helpful_votes": 6,
"id": "R39GS2A7OXRVWO",
"is_global_review": true,
"link": "https://www.amazon.com/gp/customer-reviews/R39GS2A7OXRVWO/ref=cm_cr_dp_d_rvw_ttl?ie=UTF8",
"profile": {
"id": "AFZV25KDQSC6RNTPFANSIULHGKVA",
"link": "https://www.amazon.com/gp/profile/amzn1.account.AFZV25KDQSC6RNTPFANSIULHGKVA/ref=cm_cr_dp_d_gw_tr?ie=UTF8",
"name": "Kat =^.^="
},
"rating": "5.0",
"review_country": "USA",
"title": "STANLEY Quencher H2.0 Tumbler",
"verified_purchase": true,
"vine_program": false
},
{
"body": "The Stanley Quencher H2.0 is hands down my favorite tumbler ever! It keeps my water cold literally all day—even overnight. The double-wall vacuum insulation works amazingly well, and the handle makes it super easy to carry around, especially when my hands are full.I love the straw lid design and how the cup fits in my car’s cupholder despite being a larger size. It’s leak-resistant, sturdy, and the finish doesn’t scratch easily. I’ve dropped it a few times and it still looks brand new!Perfect for staying hydrated throughout the day, whether I’m at home, work, or on the go. If you’re thinking about getting one—just do it. It totally lives up to the hype!",
"body_html": "<div data-a-expander-name=\"review_text_read_more\" data-a-expander-collapsed-height=\"300\" class=\"a-expander-collapsed-height a-row a-expander-container a-expander-partial-collapse-container review-text-read-more-expander\" style=\"max-height:300px\"><div data-hook=\"review-collapsed\" data-expanded=\"false\" class=\"a-expander-content reviewText review-text-content a-expander-partial-collapse-content\"> <span>The Stanley Quencher H2.0 is hands down my favorite tumbler ever! It keeps my water cold literally all day—even overnight. The double-wall vacuum insulation works amazingly well, and the handle makes it super easy to carry around, especially when my hands are full.<br/><br/>I love the straw lid design and how the cup fits in my car’s cupholder despite being a larger size. It’s leak-resistant, sturdy, and the finish doesn’t scratch easily. I’ve dropped it a few times and it still looks brand new!<br/><br/>Perfect for staying hydrated throughout the day, whether I’m at home, work, or on the go. If you’re thinking about getting one—just do it. It totally lives up to the hype!<br/></span> </div><div class=\"a-expander-header a-expander-partial-collapse-header\"><div class=\"a-expander-content-fade\"></div><a href=\"javascript:void(0)\" data-hook=\"expand-collapse-read-more-less\" aria-label=\"Read more of this review\" aria-expanded=\"false\" role=\"button\" data-action=\"a-expander-toggle\" class=\"a-declarative\" data-a-expander-toggle=\"{"allowLinkDefault":true, "expand_prompt":"Read more", "collapse_prompt":"Read less"}\"><i class=\"a-icon a-icon-extender-expand\"></i><span class=\"a-expander-prompt\">Read more</span></a></div></div>",
"date": {
"raw": "Reviewed in the United States on July 8, 2025"
},
"helpful_votes": 9,
"id": "R1EID1R4ZIG6ZA",
"is_global_review": true,
"link": "https://www.amazon.com/gp/customer-reviews/R1EID1R4ZIG6ZA/ref=cm_cr_dp_d_rvw_ttl?ie=UTF8",
"profile": {
"id": "AHDH3J3G6UCSCETQZ7CFZNNZGFNA",
"link": "https://www.amazon.com/gp/profile/amzn1.account.AHDH3J3G6UCSCETQZ7CFZNNZGFNA/ref=cm_cr_dp_d_gw_tr?ie=UTF8",
"name": "Cassandra Hernandez"
},
"rating": "5.0",
"review_country": "USA",
"title": "Hydration Game-Changer! Worth the Hype!",
"verified_purchase": true,
"vine_program": false
},
{
"body": "The ice last for hours. It fit on my car so easily. Love the color. Great for travel. Very functional and durable. I love it.",
"body_html": "<div data-a-expander-name=\"review_text_read_more\" data-a-expander-collapsed-height=\"300\" class=\"a-expander-collapsed-height a-row a-expander-container a-expander-partial-collapse-container review-text-read-more-expander\" style=\"max-height:300px\"><div data-hook=\"review-collapsed\" data-expanded=\"false\" class=\"a-expander-content reviewText review-text-content a-expander-partial-collapse-content\"> <span>The ice last for hours. It fit on my car so easily. Love the color. Great for travel. Very functional and durable. I love it.<br/></span> </div><div class=\"a-expander-header a-expander-partial-collapse-header\"><div class=\"a-expander-content-fade\"></div><a href=\"javascript:void(0)\" data-hook=\"expand-collapse-read-more-less\" aria-label=\"Read more of this review\" aria-expanded=\"false\" role=\"button\" data-action=\"a-expander-toggle\" class=\"a-declarative\" data-a-expander-toggle=\"{"allowLinkDefault":true, "expand_prompt":"Read more", "collapse_prompt":"Read less"}\"><i class=\"a-icon a-icon-extender-expand\"></i><span class=\"a-expander-prompt\">Read more</span></a></div></div>",
"date": {
"raw": "Reviewed in the United States on July 28, 2025"
},
"helpful_votes": 0,
"id": "R1WA7Y0OPQRLPJ",
"is_global_review": true,
"link": "https://www.amazon.com/gp/customer-reviews/R1WA7Y0OPQRLPJ/ref=cm_cr_dp_d_rvw_ttl?ie=UTF8",
"profile": {
"id": "AFKOVT4WLXRAIVYRYA7FQBPCT2FQ",
"link": "https://www.amazon.com/gp/profile/amzn1.account.AFKOVT4WLXRAIVYRYA7FQBPCT2FQ/ref=cm_cr_dp_d_gw_tr?ie=UTF8",
"name": "Nuridalia Hernandez"
},
"rating": "5.0",
"review_country": "USA",
"title": "Great cup.",
"verified_purchase": true,
"vine_program": false
},
{
"body": "Need a quick gift for the wife? This will do the trick! I order a new one each birthday, anniversary, mothers day, etc. She loves it each time and even names them. Highest quality you can get for a Tumbler. There are such a variety of colors it keeps the Mrs Happy!!! The design is amazing because the bottom can fit in virtually any cup holder and still holds as much as you need. Very functional to keep your drink cool all day. Good value for the money!",
"body_html": "<div data-a-expander-name=\"review_text_read_more\" data-a-expander-collapsed-height=\"300\" class=\"a-expander-collapsed-height a-row a-expander-container a-expander-partial-collapse-container review-text-read-more-expander\" style=\"max-height:300px\"><div data-hook=\"review-collapsed\" data-expanded=\"false\" class=\"a-expander-content reviewText review-text-content a-expander-partial-collapse-content\"> <span>Need a quick gift for the wife? This will do the trick! I order a new one each birthday, anniversary, mothers day, etc. She loves it each time and even names them. Highest quality you can get for a Tumbler. There are such a variety of colors it keeps the Mrs Happy!!! The design is amazing because the bottom can fit in virtually any cup holder and still holds as much as you need. Very functional to keep your drink cool all day. Good value for the money!<br/></span> </div><div class=\"a-expander-header a-expander-partial-collapse-header\"><div class=\"a-expander-content-fade\"></div><a href=\"javascript:void(0)\" data-hook=\"expand-collapse-read-more-less\" aria-label=\"Read more of this review\" aria-expanded=\"false\" role=\"button\" data-action=\"a-expander-toggle\" class=\"a-declarative\" data-a-expander-toggle=\"{"allowLinkDefault":true, "expand_prompt":"Read more", "collapse_prompt":"Read less"}\"><i class=\"a-icon a-icon-extender-expand\"></i><span class=\"a-expander-prompt\">Read more</span></a></div></div>",
"date": {
"raw": "Reviewed in the United States on July 17, 2025"
},
"helpful_votes": 2,
"id": "R167TFACJCDV27",
"is_global_review": true,
"link": "https://www.amazon.com/gp/customer-reviews/R167TFACJCDV27/ref=cm_cr_dp_d_rvw_ttl?ie=UTF8",
"profile": {
"id": "AFVWD22GKLHUL56F4WB55DWBDPHA",
"link": "https://www.amazon.com/gp/profile/amzn1.account.AFVWD22GKLHUL56F4WB55DWBDPHA/ref=cm_cr_dp_d_gw_tr?ie=UTF8",
"name": "Russell Moran"
},
"rating": "5.0",
"review_country": "USA",
"title": "Great Gifts for the Wife! She loves the variety of colors!!!",
"verified_purchase": true,
"vine_program": false
},
{
"body": "I’ve been using the STANLEY Quencher H2.0 for a few weeks now, and it definitely lives up to the hype. It keeps my water ice cold for hours — even in a hot car — and the 3-position Flowstate lid is super convenient. I love being able to switch between closed, sip, and straw modes depending on what I’m doing.The handle is solid and makes carrying it around so easy, and it fits perfectly in my car cup holder, which was a big win. The Ash color looks sleek and modern too.My only minor complaint is that it can be a little tricky to clean the straw area thoroughly unless you have a narrow brush. But overall, this is a fantastic tumbler — durable, functional, and great for daily use! Would definitely buy again.",
"body_html": "<div data-a-expander-name=\"review_text_read_more\" data-a-expander-collapsed-height=\"300\" class=\"a-expander-collapsed-height a-row a-expander-container a-expander-partial-collapse-container review-text-read-more-expander\" style=\"max-height:300px\"><div data-hook=\"review-collapsed\" data-expanded=\"false\" class=\"a-expander-content reviewText review-text-content a-expander-partial-collapse-content\"> <span>I’ve been using the STANLEY Quencher H2.0 for a few weeks now, and it definitely lives up to the hype. It keeps my water ice cold for hours — even in a hot car — and the 3-position Flowstate lid is super convenient. I love being able to switch between closed, sip, and straw modes depending on what I’m doing.<br/><br/>The handle is solid and makes carrying it around so easy, and it fits perfectly in my car cup holder, which was a big win. The Ash color looks sleek and modern too.<br/><br/>My only minor complaint is that it can be a little tricky to clean the straw area thoroughly unless you have a narrow brush. But overall, this is a fantastic tumbler — durable, functional, and great for daily use! Would definitely buy again.<br/></span> </div><div class=\"a-expander-header a-expander-partial-collapse-header\"><div class=\"a-expander-content-fade\"></div><a href=\"javascript:void(0)\" data-hook=\"expand-collapse-read-more-less\" aria-label=\"Read more of this review\" aria-expanded=\"false\" role=\"button\" data-action=\"a-expander-toggle\" class=\"a-declarative\" data-a-expander-toggle=\"{"allowLinkDefault":true, "expand_prompt":"Read more", "collapse_prompt":"Read less"}\"><i class=\"a-icon a-icon-extender-expand\"></i><span class=\"a-expander-prompt\">Read more</span></a></div></div>",
"date": {
"raw": "Reviewed in the United States on June 29, 2025"
},
"helpful_votes": 11,
"id": "R3BSKZMLNJAQIN",
"is_global_review": true,
"link": "https://www.amazon.com/gp/customer-reviews/R3BSKZMLNJAQIN/ref=cm_cr_dp_d_rvw_ttl?ie=UTF8",
"profile": {
"id": "AGIKWUJVTSU3NM264ZGTFBXI43VA",
"link": "https://www.amazon.com/gp/profile/amzn1.account.AGIKWUJVTSU3NM264ZGTFBXI43VA/ref=cm_cr_dp_d_gw_tr?ie=UTF8",
"name": "Larry Jones"
},
"rating": "4.0",
"review_country": "USA",
"title": "Stylish, Sturdy, and Keeps Drinks Cold – Almost Perfect!",
"verified_purchase": true,
"vine_program": false
},
{
"body": "I scored this Stanley Quencher H2.0 during Prime Days, and the deal was too good to pass up—especially in my favorite color, fuschia! I had received one as a gift at work and loved it so much that I knew I needed a second one for home.As someone who’s a huge fan of Contigo Cortland bottles for biking and workouts, I wasn’t sure if the Stanley would live up to the hype. I also own a few Stanley Homage tumblers, but this one really changed my mind. The insulation is incredible—I left it in a hot car for over two hours, and my water was still cold with ice barely melted. That alone makes it worth it!The FlowState lid is super convenient, and I love the three-position design—it’s easy to switch between sipping, sealing, and using the straw. The handle is sturdy, and the tumbler fits perfectly in my car’s cup holder, which is a huge plus for travel.It’s also BPA-free, doesn’t sweat, and feels very durable without being too heavy. Overall, this tumbler is functional, stylish, and totally worth the price—especially if you can catch it on sale.",
"body_html": "<div data-a-expander-name=\"review_text_read_more\" data-a-expander-collapsed-height=\"300\" class=\"a-expander-collapsed-height a-row a-expander-container a-expander-partial-collapse-container review-text-read-more-expander\" style=\"max-height:300px\"><div data-hook=\"review-collapsed\" data-expanded=\"false\" class=\"a-expander-content reviewText review-text-content a-expander-partial-collapse-content\"> <span>I scored this Stanley Quencher H2.0 during Prime Days, and the deal was too good to pass up—especially in my favorite color, fuschia! I had received one as a gift at work and loved it so much that I knew I needed a second one for home.<br/><br/>As someone who’s a huge fan of Contigo Cortland bottles for biking and workouts, I wasn’t sure if the Stanley would live up to the hype. I also own a few Stanley Homage tumblers, but this one really changed my mind. The insulation is incredible—I left it in a hot car for over two hours, and my water was still cold with ice barely melted. That alone makes it worth it!<br/><br/>The FlowState lid is super convenient, and I love the three-position design—it’s easy to switch between sipping, sealing, and using the straw. The handle is sturdy, and the tumbler fits perfectly in my car’s cup holder, which is a huge plus for travel.<br/><br/>It’s also BPA-free, doesn’t sweat, and feels very durable without being too heavy. Overall, this tumbler is functional, stylish, and totally worth the price—especially if you can catch it on sale.<br/></span> </div><div class=\"a-expander-header a-expander-partial-collapse-header\"><div class=\"a-expander-content-fade\"></div><a href=\"javascript:void(0)\" data-hook=\"expand-collapse-read-more-less\" aria-label=\"Read more of this review\" aria-expanded=\"false\" role=\"button\" data-action=\"a-expander-toggle\" class=\"a-declarative\" data-a-expander-toggle=\"{"allowLinkDefault":true, "expand_prompt":"Read more", "collapse_prompt":"Read less"}\"><i class=\"a-icon a-icon-extender-expand\"></i><span class=\"a-expander-prompt\">Read more</span></a></div></div>",
"date": {
"raw": "Reviewed in the United States on July 13, 2025"
},
"helpful_votes": 0,
"id": "RGZF2ER3JFJOY",
"is_global_review": true,
"link": "https://www.amazon.com/gp/customer-reviews/RGZF2ER3JFJOY/ref=cm_cr_dp_d_rvw_ttl?ie=UTF8",
"profile": {
"id": "AEZJS2VCWAYNKP2XPSLJVQO4O2SQ",
"link": "https://www.amazon.com/gp/profile/amzn1.account.AEZJS2VCWAYNKP2XPSLJVQO4O2SQ/ref=cm_cr_dp_d_gw_tr?ie=UTF8",
"name": "RM"
},
"rating": "5.0",
"review_country": "USA",
"title": "Now I Get the Hype – Keeps Water Ice Cold and Looks Great Doing It!",
"verified_purchase": true,
"vine_program": false
},
{
"body": "Am wondering if authentic as came in a plastic bag. There are markings on the bottom so could be the real deal, but first impressions were ahhhh it's a fake.",
"body_html": "<script> (function() { P.when('cr-A', 'ready').execute(function(A) { if(typeof A.toggleExpanderAriaLabel === 'function') { A.toggleExpanderAriaLabel('review_text_read_more', 'Read more of this review', 'Read less of this review'); } }); })(); </script> <style> .review-text-read-more-expander:focus-visible { outline: 2px solid #2162a1; outline-offset: 2px; border-radius: 5px; } </style><div data-a-expander-name=\"review_text_read_more\" data-a-expander-collapsed-height=\"300\" class=\"a-expander-collapsed-height a-row a-expander-container a-expander-partial-collapse-container review-text-read-more-expander\" style=\"max-height:300px\"><div data-hook=\"review-collapsed\" data-expanded=\"false\" class=\"a-expander-content reviewText review-text-content a-expander-partial-collapse-content\"> <span>Am wondering if authentic as came in a plastic bag. There are markings on the bottom so could be the real deal, but first impressions were ahhhh it's a fake.<br/></span> </div><div class=\"a-expander-header a-expander-partial-collapse-header\"><div class=\"a-expander-content-fade\"></div><a href=\"javascript:void(0)\" data-hook=\"expand-collapse-read-more-less\" aria-label=\"Read more of this review\" aria-expanded=\"false\" role=\"button\" data-action=\"a-expander-toggle\" class=\"a-declarative\" data-a-expander-toggle=\"{"allowLinkDefault":true, "expand_prompt":"Read more", "collapse_prompt":"Read less"}\"><i class=\"a-icon a-icon-extender-expand\"></i><span class=\"a-expander-prompt\">Read more</span></a></div></div>",
"date": {
"raw": "Reviewed in Australia on December 18, 2024"
},
"helpful_votes": 0,
"id": "R105I7C2XPRU27",
"is_global_review": false,
"link": "https://www.amazon.com/gp/help/customer/display.html/ref=cm_cr_dp_d_rvw_avp?nodeId=G8UYX7LALQC8V9KA",
"profile": {
"id": "",
"link": "",
"name": "NN"
},
"rating": "2.0",
"review_country": "USA",
"title": "Came in a plastic bag",
"verified_purchase": true,
"vine_program": false
},
{
"body": "The size below the giant Stanley cups and absolutely spot on , never stopped using it since it arrived.",
"body_html": "<div data-a-expander-name=\"review_text_read_more\" data-a-expander-collapsed-height=\"300\" class=\"a-expander-collapsed-height a-row a-expander-container a-expander-partial-collapse-container review-text-read-more-expander\" style=\"max-height:300px\"><div data-hook=\"review-collapsed\" data-expanded=\"false\" class=\"a-expander-content reviewText review-text-content a-expander-partial-collapse-content\"> <span>The size below the giant Stanley cups and absolutely spot on , never stopped using it since it arrived.<br/></span> </div><div class=\"a-expander-header a-expander-partial-collapse-header\"><div class=\"a-expander-content-fade\"></div><a href=\"javascript:void(0)\" data-hook=\"expand-collapse-read-more-less\" aria-label=\"Read more of this review\" aria-expanded=\"false\" role=\"button\" data-action=\"a-expander-toggle\" class=\"a-declarative\" data-a-expander-toggle=\"{"allowLinkDefault":true, "expand_prompt":"Read more", "collapse_prompt":"Read less"}\"><i class=\"a-icon a-icon-extender-expand\"></i><span class=\"a-expander-prompt\">Read more</span></a></div></div>",
"date": {
"raw": "Reviewed in the United Kingdom on July 31, 2024"
},
"helpful_votes": 0,
"id": "R11Y5AXSRT28HW",
"is_global_review": false,
"link": "https://www.amazon.com/gp/help/customer/display.html/ref=cm_cr_dp_d_rvw_avp?nodeId=G8UYX7LALQC8V9KA",
"profile": {
"id": "",
"link": "",
"name": "allan heeps"
},
"rating": "5.0",
"review_country": "USA",
"title": "Brilliant",
"verified_purchase": true,
"vine_program": false
},
{
"body": "Recommend very practical",
"body_html": "<div data-a-expander-name=\"review_text_read_more\" data-a-expander-collapsed-height=\"300\" class=\"a-expander-collapsed-height a-row a-expander-container a-expander-partial-collapse-container review-text-read-more-expander\" style=\"max-height:300px\"><div data-hook=\"review-collapsed\" data-expanded=\"false\" class=\"a-expander-content reviewText review-text-content a-expander-partial-collapse-content\"> <span>Recommend very practical<br/></span> </div><div class=\"a-expander-header a-expander-partial-collapse-header\"><div class=\"a-expander-content-fade\"></div><a href=\"javascript:void(0)\" data-hook=\"expand-collapse-read-more-less\" aria-label=\"Read more of this review\" aria-expanded=\"false\" role=\"button\" data-action=\"a-expander-toggle\" class=\"a-declarative\" data-a-expander-toggle=\"{"allowLinkDefault":true, "expand_prompt":"Read more", "collapse_prompt":"Read less"}\"><i class=\"a-icon a-icon-extender-expand\"></i><span class=\"a-expander-prompt\">Read more</span></a></div></div>",
"date": {
"raw": "Reviewed in France on April 26, 2025"
},
"helpful_votes": 0,
"id": "R134FR2ET49N7M",
"is_global_review": false,
"link": "https://www.amazon.com/gp/help/customer/display.html/ref=cm_cr_dp_d_rvw_avp?nodeId=G8UYX7LALQC8V9KA",
"profile": {
"id": "",
"link": "",
"name": "Client d'Amazon"
},
"rating": "4.0",
"review_country": "USA",
"title": "Recommend",
"verified_purchase": true,
"vine_program": false
},
{
"body": "Me encantó el baso, nose si si sea original pero esta hermoso",
"body_html": "<div data-a-expander-name=\"review_text_read_more\" data-a-expander-collapsed-height=\"300\" class=\"a-expander-collapsed-height a-row a-expander-container a-expander-partial-collapse-container review-text-read-more-expander\" style=\"max-height:300px\"><div data-hook=\"review-collapsed\" data-expanded=\"false\" class=\"a-expander-content reviewText review-text-content a-expander-partial-collapse-content\"> <span class=\"cr-original-review-content\">Me encantó el baso, nose si si sea original pero esta hermoso<br/></span><span class=\"cr-translated-review-content aok-hidden\"></span> </div><div class=\"a-expander-header a-expander-partial-collapse-header\"><div class=\"a-expander-content-fade\"></div><a href=\"javascript:void(0)\" data-hook=\"expand-collapse-read-more-less\" aria-label=\"Read more of this review\" aria-expanded=\"false\" role=\"button\" data-action=\"a-expander-toggle\" class=\"a-declarative\" data-a-expander-toggle=\"{"allowLinkDefault":true, "expand_prompt":"Read more", "collapse_prompt":"Read less"}\"><i class=\"a-icon a-icon-extender-expand\"></i><span class=\"a-expander-prompt\">Read more</span></a></div></div>",
"date": {
"raw": "Reviewed in Mexico on February 13, 2025"
},
"helpful_votes": 0,
"id": "R14BZZ74EAL6GL",
"is_global_review": false,
"link": "https://www.amazon.com/gp/help/customer/display.html/ref=cm_cr_dp_d_rvw_avp?nodeId=G8UYX7LALQC8V9KA",
"profile": {
"id": "",
"link": "",
"name": "Paty"
},
"rating": "5.0",
"review_country": "USA",
"title": "Stanley",
"verified_purchase": true,
"vine_program": false
},
{
"body": "Not very well made? Seems to have an inconsistent rim at the top (pictured)",
"body_html": "<div data-a-expander-name=\"review_text_read_more\" data-a-expander-collapsed-height=\"300\" class=\"a-expander-collapsed-height a-row a-expander-container a-expander-partial-collapse-container review-text-read-more-expander\" style=\"max-height:300px\"><div data-hook=\"review-collapsed\" data-expanded=\"false\" class=\"a-expander-content reviewText review-text-content a-expander-partial-collapse-content\"> <span>Not very well made? Seems to have an inconsistent rim at the top (pictured)<br/></span> </div><div class=\"a-expander-header a-expander-partial-collapse-header\"><div class=\"a-expander-content-fade\"></div><a href=\"javascript:void(0)\" data-hook=\"expand-collapse-read-more-less\" aria-label=\"Read more of this review\" aria-expanded=\"false\" role=\"button\" data-action=\"a-expander-toggle\" class=\"a-declarative\" data-a-expander-toggle=\"{"allowLinkDefault":true, "expand_prompt":"Read more", "collapse_prompt":"Read less"}\"><i class=\"a-icon a-icon-extender-expand\"></i><span class=\"a-expander-prompt\">Read more</span></a></div></div>",
"date": {
"raw": "Reviewed in Singapore on March 16, 2024"
},
"helpful_votes": 0,
"id": "R14EXOFQ0AX414",
"is_global_review": false,
"link": "https://www.amazon.com/gp/help/customer/display.html/ref=cm_cr_dp_d_rvw_avp?nodeId=G8UYX7LALQC8V9KA",
"profile": {
"id": "",
"link": "",
"name": "EleEle"
},
"rating": "4.0",
"review_country": "USA",
"title": "Inconsistent rim",
"verified_purchase": true,
"vine_program": false
}
],
"variant_asins_flat": "B0DQY7G73F,B0F24YVN6R,B0DVF954P6,B0CP9YQDZ3,B0FB7LKQXV,B0BQZC46PC,B0CRMTWY41,B0DQYC7C3R,B0F25BBQ63,B0CRMZ9PFR,B0DZQ7R3TQ,B0DZQ9GZNS,B0CV4JV93G,B0F24ZH2FB,B0CP9YF9W7,B0CP9Z56SW,B0DQY9848K,B0FB7PW98Q,B0DQY82KTB,B0CP9YBWMG,B0DR9PNXX3,B0CP9YDB43,B0CJZW65R3,B0DQY6LSWL,B0DQY79NHN,B0FB7H9BZ8,B0DQY96DM8,B0DQYBMGPM,B0DCV38YTM,B0CJZMP7L1,B0CP9Z1S51,B0CRMYT2WC,B0DZQLW4DG,B0DVFGFBS7,B0CK9GTLJY,B0CRMXP5R5,B0DQY79NHP,B0CRMZT4Z1,B0CP9Y2SKW,B0DQY8C2M2,B0DZQLTXG8,B0FB7P1P7B,B0FB7QVYX3,B0DVF2WFKK,B0CP9Y3152,B0DR9QBRNJ,B0DQY9HM3B,B0CRMY5BMK,B0DR9PPMRP,B0CP9YB3Q4,B0DQY8R96G,B0FB81NQRF,B0DVFCHX2V,B0DR9P42G9,B0DRLC124S,B0F25371FH,B0F24Z23DR,B0FB7RPM1G,B0CRMZHDG8,B0F24ZBFYG,B0DR9PCY9H,B0DQY78DQD,B0BS1TSN3V,B0CRMTZ1Q3,B0CP9Z667B,B0CRMZSWXD,B0CRMXMM5P,B0CQ1DBQS2,B0CRMXG22M,B0DVF9NCLJ,B0DQY86FJF,B0CRMXD5GN,B0CTS7223W,B0CRMWHW47,B0CP9YBWMH,B0D2Z2HH8D,B0DQY82SS9,B0CV64341S,B0CP9ZX49N,B0CRN1XC69,B0CJZZNS72,B0DR9P8TBY,B0CJZF9XZZ,B0DQY845Q5,B0CPZYJDBQ,B0DCTZZ9HG,B0DRLFRBSL,B0DQY7FHQ1,B0DRLDPM5R,B0DQY7C2K4,B0CK9PT53B,B0DR9PL7Y8,B0CV63QB3X,B0DQY6112N,B0BS1XH3YG,B0DQY7Y43C,B0DQY7LP4H,B0FB7KNN6K,B0DQY8DL61,B0DR9MZ563,B0DQY93KTY,B0DR9PJLWC,B0DQY78Q7H,B0DCV3GLYF,B0DQY8WQNL,B0DVDSSV4G,B0DZQK7NR6,B0CRMYHY1B,B0DR9PMJ3C,B0CRMP3RQT,B0DQY6J9TL,B0FB7XGQXG,B0DZQDK376,B0BS1T1VRD,B0DR9Q42SF,B0DQY6M595,B0FB7GNJ53,B0DQY7NS8S,B0DVF83FNK,B0DH8G9QZ5,B0DQY5JK9G,B0DQY65BX6,B0DCV47JXX",
"variants": [
{
"asin": "B0DQY7G73F",
"dimensions": [
{
"name": "Size",
"value": "40 Ounces"
},
{
"name": "Color",
"value": "Twilight"
}
],
"is_current_product": false,
"link": "https://www.amazon.com/dp/B0DQY7G73F?th=1&psc=1",
"title": "40 Ounces Twilight"
},
{
"asin": "B0F24YVN6R",
"dimensions": [
{
"name": "Size",
"value": "30 Ounces"
},
{
"name": "Color",
"value": "Summer Agave"
}
],
"is_current_product": false,
"link": "https://www.amazon.com/dp/B0F24YVN6R?th=1&psc=1",
"title": "30 Ounces Summer Agave"
},
{
"asin": "B0DVF954P6",
"dimensions": [
{
"name": "Size",
"value": "30 Ounces"
},
{
"name": "Color",
"value": "Oasis Cornflower Gloss"
}
],
"is_current_product": false,
"link": "https://www.amazon.com/dp/B0DVF954P6?th=1&psc=1",
"title": "30 Ounces Oasis Cornflower Gloss"
},
{
"asin": "B0CP9YQDZ3",
"dimensions": [
{
"name": "Size",
"value": "64 Ounces"
},
{
"name": "Color",
"value": "Cream 2.0"
}
],
"is_current_product": false,
"link": "https://www.amazon.com/dp/B0CP9YQDZ3?th=1&psc=1",
"title": "64 Ounces Cream 2.0"
},
{
"asin": "B0FB7LKQXV",
"dimensions": [
{
"name": "Size",
"value": "40 Ounces"
},
{
"name": "Color",
"value": "Cranberry"
}
],
"is_current_product": false,
"link": "https://www.amazon.com/dp/B0FB7LKQXV?th=1&psc=1",
"title": "40 Ounces Cranberry"
},
{
"asin": "B0BQZC46PC",
"dimensions": [
{
"name": "Size",
"value": "40 Ounces"
},
{
"name": "Color",
"value": "Stainless Steel Shale"
}
],
"is_current_product": false,
"link": "https://www.amazon.com/dp/B0BQZC46PC?th=1&psc=1",
"title": "40 Ounces Stainless Steel Shale"
},
{
"asin": "B0CRMTWY41",
"dimensions": [
{
"name": "Size",
"value": "30 Ounces"
},
{
"name": "Color",
"value": "Pomelo"
}
],
"is_current_product": false,
"link": "https://www.amazon.com/dp/B0CRMTWY41?th=1&psc=1",
"title": "30 Ounces Pomelo"
},
{
"asin": "B0DQYC7C3R",
"dimensions": [
{
"name": "Size",
"value": "40 Ounces"
},
{
"name": "Color",
"value": "Dried Pine"
}
],
"is_current_product": false,
"link": "https://www.amazon.com/dp/B0DQYC7C3R?th=1&psc=1",
"title": "40 Ounces Dried Pine"
},
{
"asin": "B0F25BBQ63",
"dimensions": [
{
"name": "Size",
"value": "30 Ounces"
},
{
"name": "Color",
"value": "Summer Pink Mesa Sunset"
}
],
"is_current_product": false,
"link": "https://www.amazon.com/dp/B0F25BBQ63?th=1&psc=1",
"title": "30 Ounces Summer Pink Mesa Sunset"
},
{
"asin": "B0CRMZ9PFR",
"dimensions": [
{
"name": "Size",
"value": "30 Ounces"
},
{
"name": "Color",
"value": "Fuchsia"
}
],
"is_current_product": false,
"link": "https://www.amazon.com/dp/B0CRMZ9PFR?th=1&psc=1",
"title": "30 Ounces Fuchsia"
},
{
"asin": "B0DZQ7R3TQ",
"dimensions": [
{
"name": "Size",
"value": "30 Ounces"
},
{
"name": "Color",
"value": "Exclusive Blue Cactus"
}
],
"is_current_product": false,
"link": "https://www.amazon.com/dp/B0DZQ7R3TQ?th=1&psc=1",
"title": "30 Ounces Exclusive Blue Cactus"
},
{
"asin": "B0DZQ9GZNS",
"dimensions": [
{
"name": "Size",
"value": "30 Ounces"
},
{
"name": "Color",
"value": "Exclusive Lupine"
}
],
"is_current_product": false,
"link": "https://www.amazon.com/dp/B0DZQ9GZNS?th=1&psc=1",
"title": "30 Ounces Exclusive Lupine"
},
{
"asin": "B0CV4JV93G",
"dimensions": [
{
"name": "Size",
"value": "40 Ounces"
},
{
"name": "Color",
"value": "Seafoam"
}
],
"is_current_product": false,
"link": "https://www.amazon.com/dp/B0CV4JV93G?th=1&psc=1",
"title": "40 Ounces Seafoam"
},
{
"asin": "B0F24ZH2FB",
"dimensions": [
{
"name": "Size",
"value": "30 Ounces"
},
{
"name": "Color",
"value": "Summer Lichen"
}
],
"is_current_product": false,
"link": "https://www.amazon.com/dp/B0F24ZH2FB?th=1&psc=1",
"title": "30 Ounces Summer Lichen"
},
{
"asin": "B0CP9YF9W7",
"dimensions": [
{
"name": "Size",
"value": "30 Ounces"
},
{
"name": "Color",
"value": "Black 2.0"
}
],
"is_current_product": false,
"link": "https://www.amazon.com/dp/B0CP9YF9W7?th=1&psc=1",
"title": "30 Ounces Black 2.0"
},
{
"asin": "B0CP9Z56SW",
"dimensions": [
{
"name": "Size",
"value": "40 Ounces"
},
{
"name": "Color",
"value": "Rose Quartz 2.0"
}
],
"is_current_product": false,
"link": "https://www.amazon.com/dp/B0CP9Z56SW?th=1&psc=1",
"title": "40 Ounces Rose Quartz 2.0"
},
{
"asin": "B0DQY9848K",
"dimensions": [
{
"name": "Size",
"value": "40 Ounces"
},
{
"name": "Color",
"value": "Meadow"
}
],
"is_current_product": false,
"link": "https://www.amazon.com/dp/B0DQY9848K?th=1&psc=1",
"title": "40 Ounces Meadow"
},
{
"asin": "B0FB7PW98Q",
"dimensions": [
{
"name": "Size",
"value": "20 Ounces"
},
{
"name": "Color",
"value": "Dew Drop"
}
],
"is_current_product": false,
"link": "https://www.amazon.com/dp/B0FB7PW98Q?th=1&psc=1",
"title": "20 Ounces Dew Drop"
},
{
"asin": "B0DQY82KTB",
"dimensions": [
{
"name": "Size",
"value": "20 Ounces"
},
{
"name": "Color",
"value": "Lilac"
}
],
"is_current_product": false,
"link": "https://www.amazon.com/dp/B0DQY82KTB?th=1&psc=1",
"title": "20 Ounces Lilac"
},
{
"asin": "B0CP9YBWMG",
"dimensions": [
{
"name": "Size",
"value": "30 Ounces"
},
{
"name": "Color",
"value": "Cream 2.0"
}
],
"is_current_product": false,
"link": "https://www.amazon.com/dp/B0CP9YBWMG?th=1&psc=1",
"title": "30 Ounces Cream 2.0"
},
{
"asin": "B0DR9PNXX3",
"dimensions": [
{
"name": "Size",
"value": "30 Ounces"
},
{
"name": "Color",
"value": "Cherry Blossom"
}
],
"is_current_product": false,
"link": "https://www.amazon.com/dp/B0DR9PNXX3?th=1&psc=1",
"title": "30 Ounces Cherry Blossom"
},
{
"asin": "B0CP9YDB43",
"dimensions": [
{
"name": "Size",
"value": "64 Ounces"
},
{
"name": "Color",
"value": "Frost"
}
],
"is_current_product": false,
"link": "https://www.amazon.com/dp/B0CP9YDB43?th=1&psc=1",
"title": "64 Ounces Frost"
},
{
"asin": "B0CJZW65R3",
"dimensions": [
{
"name": "Size",
"value": "40 Ounces"
},
{
"name": "Color",
"value": "Ash"
}
],
"is_current_product": false,
"link": "https://www.amazon.com/dp/B0CJZW65R3?th=1&psc=1",
"title": "40 Ounces Ash"
},
{
"asin": "B0DQY6LSWL",
"dimensions": [
{
"name": "Size",
"value": "20 Ounces"
},
{
"name": "Color",
"value": "Rose Quartz 2.0"
}
],
"is_current_product": false,
"link": "https://www.amazon.com/dp/B0DQY6LSWL?th=1&psc=1",
"title": "20 Ounces Rose Quartz 2.0"
},
{
"asin": "B0DQY79NHN",
"dimensions": [
{
"name": "Size",
"value": "14 Ounces"
},
{
"name": "Color",
"value": "Seafoam"
}
],
"is_current_product": false,
"link": "https://www.amazon.com/dp/B0DQY79NHN?th=1&psc=1",
"title": "14 Ounces Seafoam"
},
{
"asin": "B0FB7H9BZ8",
"dimensions": [
{
"name": "Size",
"value": "40 Ounces"
},
{
"name": "Color",
"value": "Dew Drop"
}
],
"is_current_product": false,
"link": "https://www.amazon.com/dp/B0FB7H9BZ8?th=1&psc=1",
"title": "40 Ounces Dew Drop"
},
{
"asin": "B0DQY96DM8",
"dimensions": [
{
"name": "Size",
"value": "20 Ounces"
},
{
"name": "Color",
"value": "Azure"
}
],
"is_current_product": false,
"link": "https://www.amazon.com/dp/B0DQY96DM8?th=1&psc=1",
"title": "20 Ounces Azure"
},
{
"asin": "B0DQYBMGPM",
"dimensions": [
{
"name": "Size",
"value": "20 Ounces"
},
{
"name": "Color",
"value": "Frost"
}
],
"is_current_product": false,
"link": "https://www.amazon.com/dp/B0DQYBMGPM?th=1&psc=1",
"title": "20 Ounces Frost"
},
{
"asin": "B0DCV38YTM",
"dimensions": [
{
"name": "Size",
"value": "30 Ounces"
},
{
"name": "Color",
"value": "Violet Blossom"
}
],
"is_current_product": false,
"link": "https://www.amazon.com/dp/B0DCV38YTM?th=1&psc=1",
"title": "30 Ounces Violet Blossom"
},
{
"asin": "B0CJZMP7L1",
"dimensions": [
{
"name": "Size",
"value": "30 Ounces"
},
{
"name": "Color",
"value": "Lilac"
}
],
"is_current_product": false,
"link": "https://www.amazon.com/dp/B0CJZMP7L1?th=1&psc=1",
"title": "30 Ounces Lilac"
},
{
"asin": "B0CP9Z1S51",
"dimensions": [
{
"name": "Size",
"value": "40 Ounces"
},
{
"name": "Color",
"value": "Black 2.0"
}
],
"is_current_product": false,
"link": "https://www.amazon.com/dp/B0CP9Z1S51?th=1&psc=1",
"title": "40 Ounces Black 2.0"
},
{
"asin": "B0CRMYT2WC",
"dimensions": [
{
"name": "Size",
"value": "40 Ounces"
},
{
"name": "Color",
"value": "Plum"
}
],
"is_current_product": false,
"link": "https://www.amazon.com/dp/B0CRMYT2WC?th=1&psc=1",
"title": "40 Ounces Plum"
},
{
"asin": "B0DZQLW4DG",
"dimensions": [
{
"name": "Size",
"value": "40 Ounces"
},
{
"name": "Color",
"value": "Exclusive Sienna"
}
],
"is_current_product": false,
"link": "https://www.amazon.com/dp/B0DZQLW4DG?th=1&psc=1",
"title": "40 Ounces Exclusive Sienna"
},
{
"asin": "B0DVFGFBS7",
"dimensions": [
{
"name": "Size",
"value": "40 Ounces"
},
{
"name": "Color",
"value": "Oasis Cream Royal"
}
],
"is_current_product": false,
"link": "https://www.amazon.com/dp/B0DVFGFBS7?th=1&psc=1",
"title": "40 Ounces Oasis Cream Royal"
},
{
"asin": "B0CK9GTLJY",
"dimensions": [
{
"name": "Size",
"value": "40 Ounces"
},
{
"name": "Color",
"value": "Frost"
}
],
"is_current_product": false,
"link": "https://www.amazon.com/dp/B0CK9GTLJY?th=1&psc=1",
"title": "40 Ounces Frost"
},
{
"asin": "B0CRMXP5R5",
"dimensions": [
{
"name": "Size",
"value": "30 Ounces"
},
{
"name": "Color",
"value": "Blue Spruce"
}
],
"is_current_product": false,
"link": "https://www.amazon.com/dp/B0CRMXP5R5?th=1&psc=1",
"title": "30 Ounces Blue Spruce"
},
{
"asin": "B0DQY79NHP",
"dimensions": [
{
"name": "Size",
"value": "64 Ounces"
},
{
"name": "Color",
"value": "Lilac"
}
],
"is_current_product": false,
"link": "https://www.amazon.com/dp/B0DQY79NHP?th=1&psc=1",
"title": "64 Ounces Lilac"
},
{
"asin": "B0CRMZT4Z1",
"dimensions": [
{
"name": "Size",
"value": "40 Ounces"
},
{
"name": "Color",
"value": "Blue Spruce"
}
],
"is_current_product": false,
"link": "https://www.amazon.com/dp/B0CRMZT4Z1?th=1&psc=1",
"title": "40 Ounces Blue Spruce"
},
{
"asin": "B0CP9Y2SKW",
"dimensions": [
{
"name": "Size",
"value": "40 Ounces"
},
{
"name": "Color",
"value": "Stone"
}
],
"is_current_product": false,
"link": "https://www.amazon.com/dp/B0CP9Y2SKW?th=1&psc=1",
"title": "40 Ounces Stone"
},
{
"asin": "B0DQY8C2M2",
"dimensions": [
{
"name": "Size",
"value": "20 Ounces"
},
{
"name": "Color",
"value": "Pomelo"
}
],
"is_current_product": false,
"link": "https://www.amazon.com/dp/B0DQY8C2M2?th=1&psc=1",
"title": "20 Ounces Pomelo"
},
{
"asin": "B0DZQLTXG8",
"dimensions": [
{
"name": "Size",
"value": "40 Ounces"
},
{
"name": "Color",
"value": "Exclusive Blue Cactus"
}
],
"is_current_product": false,
"link": "https://www.amazon.com/dp/B0DZQLTXG8?th=1&psc=1",
"title": "40 Ounces Exclusive Blue Cactus"
},
{
"asin": "B0FB7P1P7B",
"dimensions": [
{
"name": "Size",
"value": "30 Ounces"
},
{
"name": "Color",
"value": "Dew Drop"
}
],
"is_current_product": false,
"link": "https://www.amazon.com/dp/B0FB7P1P7B?th=1&psc=1",
"title": "30 Ounces Dew Drop"
},
{
"asin": "B0FB7QVYX3",
"dimensions": [
{
"name": "Size",
"value": "40 Ounces"
},
{
"name": "Color",
"value": "Pistachio"
}
],
"is_current_product": false,
"link": "https://www.amazon.com/dp/B0FB7QVYX3?th=1&psc=1",
"title": "40 Ounces Pistachio"
},
{
"asin": "B0DVF2WFKK",
"dimensions": [
{
"name": "Size",
"value": "40 Ounces"
},
{
"name": "Color",
"value": "Oasis Cornflower Gloss"
}
],
"is_current_product": false,
"link": "https://www.amazon.com/dp/B0DVF2WFKK?th=1&psc=1",
"title": "40 Ounces Oasis Cornflower Gloss"
},
{
"asin": "B0CP9Y3152",
"dimensions": [
{
"name": "Size",
"value": "40 Ounces"
},
{
"name": "Color",
"value": "Cream 2.0"
}
],
"is_current_product": false,
"link": "https://www.amazon.com/dp/B0CP9Y3152?th=1&psc=1",
"title": "40 Ounces Cream 2.0"
},
{
"asin": "B0DR9QBRNJ",
"dimensions": [
{
"name": "Size",
"value": "30 Ounces"
},
{
"name": "Color",
"value": "Hot Coral"
}
],
"is_current_product": false,
"link": "https://www.amazon.com/dp/B0DR9QBRNJ?th=1&psc=1",
"title": "30 Ounces Hot Coral"
},
{
"asin": "B0DQY9HM3B",
"dimensions": [
{
"name": "Size",
"value": "14 Ounces"
},
{
"name": "Color",
"value": "Azure"
}
],
"is_current_product": false,
"link": "https://www.amazon.com/dp/B0DQY9HM3B?th=1&psc=1",
"title": "14 Ounces Azure"
},
{
"asin": "B0CRMY5BMK",
"dimensions": [
{
"name": "Size",
"value": "30 Ounces"
},
{
"name": "Color",
"value": "Mist"
}
],
"is_current_product": false,
"link": "https://www.amazon.com/dp/B0CRMY5BMK?th=1&psc=1",
"title": "30 Ounces Mist"
},
{
"asin": "B0DR9PPMRP",
"dimensions": [
{
"name": "Size",
"value": "40 Ounces"
},
{
"name": "Color",
"value": "Cherry Blossom"
}
],
"is_current_product": false,
"link": "https://www.amazon.com/dp/B0DR9PPMRP?th=1&psc=1",
"title": "40 Ounces Cherry Blossom"
},
{
"asin": "B0CP9YB3Q4",
"dimensions": [
{
"name": "Size",
"value": "30 Ounces"
},
{
"name": "Color",
"value": "Rose Quartz 2.0"
}
],
"is_current_product": false,
"link": "https://www.amazon.com/dp/B0CP9YB3Q4?th=1&psc=1",
"title": "30 Ounces Rose Quartz 2.0"
},
{
"asin": "B0DQY8R96G",
"dimensions": [
{
"name": "Size",
"value": "64 Ounces"
},
{
"name": "Color",
"value": "Meadow"
}
],
"is_current_product": false,
"link": "https://www.amazon.com/dp/B0DQY8R96G?th=1&psc=1",
"title": "64 Ounces Meadow"
},
{
"asin": "B0FB81NQRF",
"dimensions": [
{
"name": "Size",
"value": "64 Ounces"
},
{
"name": "Color",
"value": "Dew Drop"
}
],
"is_current_product": false,
"link": "https://www.amazon.com/dp/B0FB81NQRF?th=1&psc=1",
"title": "64 Ounces Dew Drop"
},
{
"asin": "B0DVFCHX2V",
"dimensions": [
{
"name": "Size",
"value": "40 Ounces"
},
{
"name": "Color",
"value": "Oasis Peach Whip Gloss"
}
],
"is_current_product": false,
"link": "https://www.amazon.com/dp/B0DVFCHX2V?th=1&psc=1",
"title": "40 Ounces Oasis Peach Whip Gloss"
},
{
"asin": "B0DR9P42G9",
"dimensions": [
{
"name": "Size",
"value": "20 Ounces"
},
{
"name": "Color",
"value": "Hot Coral"
}
],
"is_current_product": false,
"link": "https://www.amazon.com/dp/B0DR9P42G9?th=1&psc=1",
"title": "20 Ounces Hot Coral"
},
{
"asin": "B0DRLC124S",
"dimensions": [
{
"name": "Size",
"value": "14 Ounces"
},
{
"name": "Color",
"value": "Lilac"
}
],
"is_current_product": false,
"link": "https://www.amazon.com/dp/B0DRLC124S?th=1&psc=1",
"title": "14 Ounces Lilac"
},
{
"asin": "B0F25371FH",
"dimensions": [
{
"name": "Size",
"value": "40 Ounces"
},
{
"name": "Color",
"value": "Summer Lichen"
}
],
"is_current_product": true,
"link": "https://www.amazon.com/dp/B0F25371FH?th=1&psc=1",
"title": "40 Ounces Summer Lichen"
},
{
"asin": "B0F24Z23DR",
"dimensions": [
{
"name": "Size",
"value": "40 Ounces"
},
{
"name": "Color",
"value": "Summer Pink Mesa Sunset"
}
],
"is_current_product": false,
"link": "https://www.amazon.com/dp/B0F24Z23DR?th=1&psc=1",
"title": "40 Ounces Summer Pink Mesa Sunset"
},
{
"asin": "B0FB7RPM1G",
"dimensions": [
{
"name": "Size",
"value": "30 Ounces"
},
{
"name": "Color",
"value": "Cranberry"
}
],
"is_current_product": false,
"link": "https://www.amazon.com/dp/B0FB7RPM1G?th=1&psc=1",
"title": "30 Ounces Cranberry"
},
{
"asin": "B0CRMZHDG8",
"dimensions": [
{
"name": "Size",
"value": "40 Ounces"
},
{
"name": "Color",
"value": "Fuchsia"
}
],
"is_current_product": false,
"link": "https://www.amazon.com/dp/B0CRMZHDG8?th=1&psc=1",
"title": "40 Ounces Fuchsia"
},
{
"asin": "B0F24ZBFYG",
"dimensions": [
{
"name": "Size",
"value": "40 Ounces"
},
{
"name": "Color",
"value": "Summer Agave"
}
],
"is_current_product": false,
"link": "https://www.amazon.com/dp/B0F24ZBFYG?th=1&psc=1",
"title": "40 Ounces Summer Agave"
},
{
"asin": "B0DR9PCY9H",
"dimensions": [
{
"name": "Size",
"value": "14 Ounces"
},
{
"name": "Color",
"value": "Hot Coral"
}
],
"is_current_product": false,
"link": "https://www.amazon.com/dp/B0DR9PCY9H?th=1&psc=1",
"title": "14 Ounces Hot Coral"
},
{
"asin": "B0DQY78DQD",
"dimensions": [
{
"name": "Size",
"value": "20 Ounces"
},
{
"name": "Color",
"value": "Seafoam"
}
],
"is_current_product": false,
"link": "https://www.amazon.com/dp/B0DQY78DQD?th=1&psc=1",
"title": "20 Ounces Seafoam"
},
{
"asin": "B0BS1TSN3V",
"dimensions": [
{
"name": "Size",
"value": "14 Ounces"
},
{
"name": "Color",
"value": "Stainless Steel Shale"
}
],
"is_current_product": false,
"link": "https://www.amazon.com/dp/B0BS1TSN3V?th=1&psc=1",
"title": "14 Ounces Stainless Steel Shale"
},
{
"asin": "B0CRMTZ1Q3",
"dimensions": [
{
"name": "Size",
"value": "30 Ounces"
},
{
"name": "Color",
"value": "Azure"
}
],
"is_current_product": false,
"link": "https://www.amazon.com/dp/B0CRMTZ1Q3?th=1&psc=1",
"title": "30 Ounces Azure"
},
{
"asin": "B0CP9Z667B",
"dimensions": [
{
"name": "Size",
"value": "64 Ounces"
},
{
"name": "Color",
"value": "Ash"
}
],
"is_current_product": false,
"link": "https://www.amazon.com/dp/B0CP9Z667B?th=1&psc=1",
"title": "64 Ounces Ash"
},
{
"asin": "B0CRMZSWXD",
"dimensions": [
{
"name": "Size",
"value": "20 Ounces"
},
{
"name": "Color",
"value": "Mist"
}
],
"is_current_product": false,
"link": "https://www.amazon.com/dp/B0CRMZSWXD?th=1&psc=1",
"title": "20 Ounces Mist"
},
{
"asin": "B0CRMXMM5P",
"dimensions": [
{
"name": "Size",
"value": "14 Ounces"
},
{
"name": "Color",
"value": "Mist"
}
],
"is_current_product": false,
"link": "https://www.amazon.com/dp/B0CRMXMM5P?th=1&psc=1",
"title": "14 Ounces Mist"
},
{
"asin": "B0CQ1DBQS2",
"dimensions": [
{
"name": "Size",
"value": "64 Ounces"
},
{
"name": "Color",
"value": "Stone"
}
],
"is_current_product": false,
"link": "https://www.amazon.com/dp/B0CQ1DBQS2?th=1&psc=1",
"title": "64 Ounces Stone"
},
{
"asin": "B0CRMXG22M",
"dimensions": [
{
"name": "Size",
"value": "40 Ounces"
},
{
"name": "Color",
"value": "Azure"
}
],
"is_current_product": false,
"link": "https://www.amazon.com/dp/B0CRMXG22M?th=1&psc=1",
"title": "40 Ounces Azure"
},
{
"asin": "B0DVF9NCLJ",
"dimensions": [
{
"name": "Size",
"value": "20 Ounces"
},
{
"name": "Color",
"value": "Oasis Peach Whip Gloss"
}
],
"is_current_product": false,
"link": "https://www.amazon.com/dp/B0DVF9NCLJ?th=1&psc=1",
"title": "20 Ounces Oasis Peach Whip Gloss"
},
{
"asin": "B0DQY86FJF",
"dimensions": [
{
"name": "Size",
"value": "64 Ounces"
},
{
"name": "Color",
"value": "Twilight"
}
],
"is_current_product": false,
"link": "https://www.amazon.com/dp/B0DQY86FJF?th=1&psc=1",
"title": "64 Ounces Twilight"
},
{
"asin": "B0CRMXD5GN",
"dimensions": [
{
"name": "Size",
"value": "40 Ounces"
},
{
"name": "Color",
"value": "Mist"
}
],
"is_current_product": false,
"link": "https://www.amazon.com/dp/B0CRMXD5GN?th=1&psc=1",
"title": "40 Ounces Mist"
},
{
"asin": "B0CTS7223W",
"dimensions": [
{
"name": "Size",
"value": "30 Ounces"
},
{
"name": "Color",
"value": "Seafoam"
}
],
"is_current_product": false,
"link": "https://www.amazon.com/dp/B0CTS7223W?th=1&psc=1",
"title": "30 Ounces Seafoam"
},
{
"asin": "B0CRMWHW47",
"dimensions": [
{
"name": "Size",
"value": "30 Ounces"
},
{
"name": "Color",
"value": "Peony"
}
],
"is_current_product": false,
"link": "https://www.amazon.com/dp/B0CRMWHW47?th=1&psc=1",
"title": "30 Ounces Peony"
},
{
"asin": "B0CP9YBWMH",
"dimensions": [
{
"name": "Size",
"value": "64 Ounces"
},
{
"name": "Color",
"value": "Rose Quartz 2.0"
}
],
"is_current_product": false,
"link": "https://www.amazon.com/dp/B0CP9YBWMH?th=1&psc=1",
"title": "64 Ounces Rose Quartz 2.0"
},
{
"asin": "B0D2Z2HH8D",
"dimensions": [
{
"name": "Size",
"value": "64 Ounces"
},
{
"name": "Color",
"value": "Seafoam"
}
],
"is_current_product": false,
"link": "https://www.amazon.com/dp/B0D2Z2HH8D?th=1&psc=1",
"title": "64 Ounces Seafoam"
},
{
"asin": "B0DQY82SS9",
"dimensions": [
{
"name": "Size",
"value": "30 Ounces"
},
{
"name": "Color",
"value": "Toast"
}
],
"is_current_product": false,
"link": "https://www.amazon.com/dp/B0DQY82SS9?th=1&psc=1",
"title": "30 Ounces Toast"
},
{
"asin": "B0CV64341S",
"dimensions": [
{
"name": "Size",
"value": "30 Ounces"
},
{
"name": "Color",
"value": "Nectarine"
}
],
"is_current_product": false,
"link": "https://www.amazon.com/dp/B0CV64341S?th=1&psc=1",
"title": "30 Ounces Nectarine"
},
{
"asin": "B0CP9ZX49N",
"dimensions": [
{
"name": "Size",
"value": "30 Ounces"
},
{
"name": "Color",
"value": "Stone"
}
],
"is_current_product": false,
"link": "https://www.amazon.com/dp/B0CP9ZX49N?th=1&psc=1",
"title": "30 Ounces Stone"
},
{
"asin": "B0CRN1XC69",
"dimensions": [
{
"name": "Size",
"value": "30 Ounces"
},
{
"name": "Color",
"value": "Plum"
}
],
"is_current_product": false,
"link": "https://www.amazon.com/dp/B0CRN1XC69?th=1&psc=1",
"title": "30 Ounces Plum"
},
{
"asin": "B0CJZZNS72",
"dimensions": [
{
"name": "Size",
"value": "40 Ounces"
},
{
"name": "Color",
"value": "Lilac"
}
],
"is_current_product": false,
"link": "https://www.amazon.com/dp/B0CJZZNS72?th=1&psc=1",
"title": "40 Ounces Lilac"
},
{
"asin": "B0DR9P8TBY",
"dimensions": [
{
"name": "Size",
"value": "30 Ounces"
},
{
"name": "Color",
"value": "Splash"
}
],
"is_current_product": false,
"link": "https://www.amazon.com/dp/B0DR9P8TBY?th=1&psc=1",
"title": "30 Ounces Splash"
},
{
"asin": "B0CJZF9XZZ",
"dimensions": [
{
"name": "Size",
"value": "30 Ounces"
},
{
"name": "Color",
"value": "Ash"
}
],
"is_current_product": false,
"link": "https://www.amazon.com/dp/B0CJZF9XZZ?th=1&psc=1",
"title": "30 Ounces Ash"
},
{
"asin": "B0DQY845Q5",
"dimensions": [
{
"name": "Size",
"value": "14 Ounces"
},
{
"name": "Color",
"value": "Pomelo"
}
],
"is_current_product": false,
"link": "https://www.amazon.com/dp/B0DQY845Q5?th=1&psc=1",
"title": "14 Ounces Pomelo"
},
{
"asin": "B0CPZYJDBQ",
"dimensions": [
{
"name": "Size",
"value": "64 Ounces"
},
{
"name": "Color",
"value": "Black 2.0"
}
],
"is_current_product": false,
"link": "https://www.amazon.com/dp/B0CPZYJDBQ?th=1&psc=1",
"title": "64 Ounces Black 2.0"
},
{
"asin": "B0DCTZZ9HG",
"dimensions": [
{
"name": "Size",
"value": "30 Ounces"
},
{
"name": "Color",
"value": "Goldenrod Coral"
}
],
"is_current_product": false,
"link": "https://www.amazon.com/dp/B0DCTZZ9HG?th=1&psc=1",
"title": "30 Ounces Goldenrod Coral"
},
{
"asin": "B0DRLFRBSL",
"dimensions": [
{
"name": "Size",
"value": "20 Ounces"
},
{
"name": "Color",
"value": "Peony"
}
],
"is_current_product": false,
"link": "https://www.amazon.com/dp/B0DRLFRBSL?th=1&psc=1",
"title": "20 Ounces Peony"
},
{
"asin": "B0DQY7FHQ1",
"dimensions": [
{
"name": "Size",
"value": "40 Ounces"
},
{
"name": "Color",
"value": "Chili Red"
}
],
"is_current_product": false,
"link": "https://www.amazon.com/dp/B0DQY7FHQ1?th=1&psc=1",
"title": "40 Ounces Chili Red"
},
{
"asin": "B0DRLDPM5R",
"dimensions": [
{
"name": "Size",
"value": "14 Ounces"
},
{
"name": "Color",
"value": "Frost"
}
],
"is_current_product": false,
"link": "https://www.amazon.com/dp/B0DRLDPM5R?th=1&psc=1",
"title": "14 Ounces Frost"
},
{
"asin": "B0DQY7C2K4",
"dimensions": [
{
"name": "Size",
"value": "14 Ounces"
},
{
"name": "Color",
"value": "Black 2.0"
}
],
"is_current_product": false,
"link": "https://www.amazon.com/dp/B0DQY7C2K4?th=1&psc=1",
"title": "14 Ounces Black 2.0"
},
{
"asin": "B0CK9PT53B",
"dimensions": [
{
"name": "Size",
"value": "30 Ounces"
},
{
"name": "Color",
"value": "Frost"
}
],
"is_current_product": false,
"link": "https://www.amazon.com/dp/B0CK9PT53B?th=1&psc=1",
"title": "30 Ounces Frost"
},
{
"asin": "B0DR9PL7Y8",
"dimensions": [
{
"name": "Size",
"value": "30 Ounces"
},
{
"name": "Color",
"value": "Hydrangea"
}
],
"is_current_product": false,
"link": "https://www.amazon.com/dp/B0DR9PL7Y8?th=1&psc=1",
"title": "30 Ounces Hydrangea"
},
{
"asin": "B0CV63QB3X",
"dimensions": [
{
"name": "Size",
"value": "40 Ounces"
},
{
"name": "Color",
"value": "Nectarine"
}
],
"is_current_product": false,
"link": "https://www.amazon.com/dp/B0CV63QB3X?th=1&psc=1",
"title": "40 Ounces Nectarine"
},
{
"asin": "B0DQY6112N",
"dimensions": [
{
"name": "Size",
"value": "14 Ounces"
},
{
"name": "Color",
"value": "Meadow"
}
],
"is_current_product": false,
"link": "https://www.amazon.com/dp/B0DQY6112N?th=1&psc=1",
"title": "14 Ounces Meadow"
},
{
"asin": "B0BS1XH3YG",
"dimensions": [
{
"name": "Size",
"value": "30 Ounces"
},
{
"name": "Color",
"value": "Stainless Steel Shale"
}
],
"is_current_product": false,
"link": "https://www.amazon.com/dp/B0BS1XH3YG?th=1&psc=1",
"title": "30 Ounces Stainless Steel Shale"
},
{
"asin": "B0DQY7Y43C",
"dimensions": [
{
"name": "Size",
"value": "30 Ounces"
},
{
"name": "Color",
"value": "Dried Pine"
}
],
"is_current_product": false,
"link": "https://www.amazon.com/dp/B0DQY7Y43C?th=1&psc=1",
"title": "30 Ounces Dried Pine"
},
{
"asin": "B0DQY7LP4H",
"dimensions": [
{
"name": "Size",
"value": "14 Ounces"
},
{
"name": "Color",
"value": "Rose Quartz 2.0"
}
],
"is_current_product": false,
"link": "https://www.amazon.com/dp/B0DQY7LP4H?th=1&psc=1",
"title": "14 Ounces Rose Quartz 2.0"
},
{
"asin": "B0FB7KNN6K",
"dimensions": [
{
"name": "Size",
"value": "14 Ounces"
},
{
"name": "Color",
"value": "Dew Drop"
}
],
"is_current_product": false,
"link": "https://www.amazon.com/dp/B0FB7KNN6K?th=1&psc=1",
"title": "14 Ounces Dew Drop"
},
{
"asin": "B0DQY8DL61",
"dimensions": [
{
"name": "Size",
"value": "64 Ounces"
},
{
"name": "Color",
"value": "Dried Pine"
}
],
"is_current_product": false,
"link": "https://www.amazon.com/dp/B0DQY8DL61?th=1&psc=1",
"title": "64 Ounces Dried Pine"
},
{
"asin": "B0DR9MZ563",
"dimensions": [
{
"name": "Size",
"value": "40 Ounces"
},
{
"name": "Color",
"value": "Hot Coral"
}
],
"is_current_product": false,
"link": "https://www.amazon.com/dp/B0DR9MZ563?th=1&psc=1",
"title": "40 Ounces Hot Coral"
},
{
"asin": "B0DQY93KTY",
"dimensions": [
{
"name": "Size",
"value": "20 Ounces"
},
{
"name": "Color",
"value": "Black 2.0"
}
],
"is_current_product": false,
"link": "https://www.amazon.com/dp/B0DQY93KTY?th=1&psc=1",
"title": "20 Ounces Black 2.0"
},
{
"asin": "B0DR9PJLWC",
"dimensions": [
{
"name": "Size",
"value": "64 Ounces"
},
{
"name": "Color",
"value": "Hot Coral"
}
],
"is_current_product": false,
"link": "https://www.amazon.com/dp/B0DR9PJLWC?th=1&psc=1",
"title": "64 Ounces Hot Coral"
},
{
"asin": "B0DQY78Q7H",
"dimensions": [
{
"name": "Size",
"value": "14 Ounces"
},
{
"name": "Color",
"value": "Cream 2.0"
}
],
"is_current_product": false,
"link": "https://www.amazon.com/dp/B0DQY78Q7H?th=1&psc=1",
"title": "14 Ounces Cream 2.0"
},
{
"asin": "B0DCV3GLYF",
"dimensions": [
{
"name": "Size",
"value": "40 Ounces"
},
{
"name": "Color",
"value": "Goldenrod Coral"
}
],
"is_current_product": false,
"link": "https://www.amazon.com/dp/B0DCV3GLYF?th=1&psc=1",
"title": "40 Ounces Goldenrod Coral"
},
{
"asin": "B0DQY8WQNL",
"dimensions": [
{
"name": "Size",
"value": "20 Ounces"
},
{
"name": "Color",
"value": "Cream 2.0"
}
],
"is_current_product": false,
"link": "https://www.amazon.com/dp/B0DQY8WQNL?th=1&psc=1",
"title": "20 Ounces Cream 2.0"
},
{
"asin": "B0DVDSSV4G",
"dimensions": [
{
"name": "Size",
"value": "30 Ounces"
},
{
"name": "Color",
"value": "Oasis Peach Whip Gloss"
}
],
"is_current_product": false,
"link": "https://www.amazon.com/dp/B0DVDSSV4G?th=1&psc=1",
"title": "30 Ounces Oasis Peach Whip Gloss"
},
{
"asin": "B0DZQK7NR6",
"dimensions": [
{
"name": "Size",
"value": "40 Ounces"
},
{
"name": "Color",
"value": "Exclusive Lupine"
}
],
"is_current_product": false,
"link": "https://www.amazon.com/dp/B0DZQK7NR6?th=1&psc=1",
"title": "40 Ounces Exclusive Lupine"
},
{
"asin": "B0CRMYHY1B",
"dimensions": [
{
"name": "Size",
"value": "40 Ounces"
},
{
"name": "Color",
"value": "Pomelo"
}
],
"is_current_product": false,
"link": "https://www.amazon.com/dp/B0CRMYHY1B?th=1&psc=1",
"title": "40 Ounces Pomelo"
},
{
"asin": "B0DR9PMJ3C",
"dimensions": [
{
"name": "Size",
"value": "40 Ounces"
},
{
"name": "Color",
"value": "Hydrangea"
}
],
"is_current_product": false,
"link": "https://www.amazon.com/dp/B0DR9PMJ3C?th=1&psc=1",
"title": "40 Ounces Hydrangea"
},
{
"asin": "B0CRMP3RQT",
"dimensions": [
{
"name": "Size",
"value": "40 Ounces"
},
{
"name": "Color",
"value": "Peony"
}
],
"is_current_product": false,
"link": "https://www.amazon.com/dp/B0CRMP3RQT?th=1&psc=1",
"title": "40 Ounces Peony"
},
{
"asin": "B0DQY6J9TL",
"dimensions": [
{
"name": "Size",
"value": "40 Ounces"
},
{
"name": "Color",
"value": "Toast"
}
],
"is_current_product": false,
"link": "https://www.amazon.com/dp/B0DQY6J9TL?th=1&psc=1",
"title": "40 Ounces Toast"
},
{
"asin": "B0FB7XGQXG",
"dimensions": [
{
"name": "Size",
"value": "30 Ounces"
},
{
"name": "Color",
"value": "Pistachio"
}
],
"is_current_product": false,
"link": "https://www.amazon.com/dp/B0FB7XGQXG?th=1&psc=1",
"title": "30 Ounces Pistachio"
},
{
"asin": "B0DZQDK376",
"dimensions": [
{
"name": "Size",
"value": "30 Ounces"
},
{
"name": "Color",
"value": "Exclusive Sienna"
}
],
"is_current_product": false,
"link": "https://www.amazon.com/dp/B0DZQDK376?th=1&psc=1",
"title": "30 Ounces Exclusive Sienna"
},
{
"asin": "B0BS1T1VRD",
"dimensions": [
{
"name": "Size",
"value": "20 Ounces"
},
{
"name": "Color",
"value": "Stainless Steel Shale"
}
],
"is_current_product": false,
"link": "https://www.amazon.com/dp/B0BS1T1VRD?th=1&psc=1",
"title": "20 Ounces Stainless Steel Shale"
},
{
"asin": "B0DR9Q42SF",
"dimensions": [
{
"name": "Size",
"value": "40 Ounces"
},
{
"name": "Color",
"value": "Splash"
}
],
"is_current_product": false,
"link": "https://www.amazon.com/dp/B0DR9Q42SF?th=1&psc=1",
"title": "40 Ounces Splash"
},
{
"asin": "B0DQY6M595",
"dimensions": [
{
"name": "Size",
"value": "30 Ounces"
},
{
"name": "Color",
"value": "Twilight"
}
],
"is_current_product": false,
"link": "https://www.amazon.com/dp/B0DQY6M595?th=1&psc=1",
"title": "30 Ounces Twilight"
},
{
"asin": "B0FB7GNJ53",
"dimensions": [
{
"name": "Size",
"value": "64 Ounces"
},
{
"name": "Color",
"value": "Violet Blossom"
}
],
"is_current_product": false,
"link": "https://www.amazon.com/dp/B0FB7GNJ53?th=1&psc=1",
"title": "64 Ounces Violet Blossom"
},
{
"asin": "B0DQY7NS8S",
"dimensions": [
{
"name": "Size",
"value": "30 Ounces"
},
{
"name": "Color",
"value": "Meadow"
}
],
"is_current_product": false,
"link": "https://www.amazon.com/dp/B0DQY7NS8S?th=1&psc=1",
"title": "30 Ounces Meadow"
},
{
"asin": "B0DVF83FNK",
"dimensions": [
{
"name": "Size",
"value": "30 Ounces"
},
{
"name": "Color",
"value": "Oasis Cream Royal"
}
],
"is_current_product": false,
"link": "https://www.amazon.com/dp/B0DVF83FNK?th=1&psc=1",
"title": "30 Ounces Oasis Cream Royal"
},
{
"asin": "B0DH8G9QZ5",
"dimensions": [
{
"name": "Size",
"value": "14 Ounces"
},
{
"name": "Color",
"value": "Peony"
}
],
"is_current_product": false,
"link": "https://www.amazon.com/dp/B0DH8G9QZ5?th=1&psc=1",
"title": "14 Ounces Peony"
},
{
"asin": "B0DQY5JK9G",
"dimensions": [
{
"name": "Size",
"value": "20 Ounces"
},
{
"name": "Color",
"value": "Meadow"
}
],
"is_current_product": false,
"link": "https://www.amazon.com/dp/B0DQY5JK9G?th=1&psc=1",
"title": "20 Ounces Meadow"
},
{
"asin": "B0DQY65BX6",
"dimensions": [
{
"name": "Size",
"value": "30 Ounces"
},
{
"name": "Color",
"value": "Chili Red"
}
],
"is_current_product": false,
"link": "https://www.amazon.com/dp/B0DQY65BX6?th=1&psc=1",
"title": "30 Ounces Chili Red"
},
{
"asin": "B0DCV47JXX",
"dimensions": [
{
"name": "Size",
"value": "40 Ounces"
},
{
"name": "Color",
"value": "Violet Blossom"
}
],
"is_current_product": false,
"link": "https://www.amazon.com/dp/B0DCV47JXX?th=1&psc=1",
"title": "40 Ounces Violet Blossom"
}
],
"videos": [
{
"duration_seconds": 30,
"group_id": "IB_G1",
"group_type": "",
"height": 1080,
"is_hero_video": false,
"link": "https://m.media-amazon.com/images/S/vse-vms-transcoding-artifact-us-east-1-prod/b2b4a7be-27dc-4a86-8eb0-1c8229b86302/default.jobtemplate.hls.m3u8",
"thumbnail": "https://m.media-amazon.com/images/I/A1+uddSzbXL.SS125_PKplay-button-mb-image-grid-small_.png",
"title": "Stanley Quencher H2.0 FlowState Stainless Steel Vacuum Insulated Tumbler",
"variant": "MAIN",
"width": 1920
},
{
"duration_seconds": 130,
"group_id": "IB_G2",
"group_type": "",
"height": 1080,
"is_hero_video": false,
"link": "https://m.media-amazon.com/images/S/vse-vms-transcoding-artifact-us-east-1-prod/e5d9e1d8-4673-4a07-b553-588114da49be/default.jobtemplate.hls.m3u8",
"thumbnail": "https://m.media-amazon.com/images/I/A19A7bxP0sL.SS125_PKplay-button-mb-image-grid-small_.png",
"title": "Built Like a Tank, Keeps the Temp. Stanley Review #WorthIt??",
"variant": "MAIN",
"width": 1920
},
{
"duration_seconds": 192,
"group_id": "IB_G2",
"group_type": "",
"height": 1080,
"is_hero_video": false,
"link": "https://m.media-amazon.com/images/S/vse-vms-transcoding-artifact-us-east-1-prod/0ab560f0-d9be-4df3-acdc-a090291355cd/default.jobtemplate.hls.m3u8",
"thumbnail": "https://m.media-amazon.com/images/I/91x6cnPMSiL.SS125_PKplay-button-mb-image-grid-small_.jpg",
"title": "Yeti Vs Stanley Vs Budget - Temperature Test!",
"variant": "MAIN",
"width": 1920
},
{
"duration_seconds": 88,
"group_id": "IB_G2",
"group_type": "",
"height": 1080,
"is_hero_video": false,
"link": "https://m.media-amazon.com/images/S/vse-vms-transcoding-artifact-us-east-1-prod/27bb9147-c1ac-49f2-8961-34bdaa8295ce/default.jobtemplate.hls.m3u8",
"thumbnail": "https://m.media-amazon.com/images/I/81weUpmdGfL.SS125_PKplay-button-mb-image-grid-small_.jpg",
"title": "Review of the Stanley Quencher with Handle and Straw 30 oz",
"variant": "MAIN",
"width": 1920
},
{
"duration_seconds": 71,
"group_id": "IB_G2",
"group_type": "",
"height": 1080,
"is_hero_video": false,
"link": "https://m.media-amazon.com/images/S/vse-vms-transcoding-artifact-us-east-1-prod/5a662542-b48e-409c-825b-4ee25b7954b7/default.jobtemplate.hls.m3u8",
"thumbnail": "https://m.media-amazon.com/images/I/61hnxBaUDgL.SS125_PKplay-button-mb-image-grid-small_.jpg",
"title": "Stanley Quencher Review!",
"variant": "MAIN",
"width": 608
},
{
"duration_seconds": 86,
"group_id": "IB_G2",
"group_type": "",
"height": 1080,
"is_hero_video": false,
"link": "https://m.media-amazon.com/images/S/vse-vms-transcoding-artifact-us-east-1-prod/e80d8b75-8d41-4433-ba41-6e3f0bbfecee/default.jobtemplate.hls.m3u8",
"thumbnail": "https://m.media-amazon.com/images/I/A1QVsAXp90L.SS125_PKplay-button-mb-image-grid-small_.png",
"title": "Honest review of Stanley Quencher with Handle",
"variant": "MAIN",
"width": 1920
}
],
"videos_count": 6,
"videos_flat": "https://m.media-amazon.com/images/S/vse-vms-transcoding-artifact-us-east-1-prod/b2b4a7be-27dc-4a86-8eb0-1c8229b86302/default.jobtemplate.hls.m3u8,https://m.media-amazon.com/images/S/vse-vms-transcoding-artifact-us-east-1-prod/e5d9e1d8-4673-4a07-b553-588114da49be/default.jobtemplate.hls.m3u8,https://m.media-amazon.com/images/S/vse-vms-transcoding-artifact-us-east-1-prod/0ab560f0-d9be-4df3-acdc-a090291355cd/default.jobtemplate.hls.m3u8,https://m.media-amazon.com/images/S/vse-vms-transcoding-artifact-us-east-1-prod/27bb9147-c1ac-49f2-8961-34bdaa8295ce/default.jobtemplate.hls.m3u8,https://m.media-amazon.com/images/S/vse-vms-transcoding-artifact-us-east-1-prod/5a662542-b48e-409c-825b-4ee25b7954b7/default.jobtemplate.hls.m3u8,https://m.media-amazon.com/images/S/vse-vms-transcoding-artifact-us-east-1-prod/e80d8b75-8d41-4433-ba41-6e3f0bbfecee/default.jobtemplate.hls.m3u8",
"weight": "1.75 pounds"
},
"delivered_to": "Wilmington 19805"
}
}
Bulk Integration – Sample
Bulk Service Request
curl --location 'https://bulk.easyparser.com/v1/bulk' \
--header 'api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--data '[
{
"platform": "AMZ",
"operation": "DETAIL",
"domain": ".com",
"payload": {
"asins": [
"B0F25371FH","B0FB21526X"
]
},
"callback_url": "https://example.com/webhook"
}
]'
import requests
import json
url = "https://bulk.easyparser.com/v1/bulk"
payload = json.dumps([
{
"platform": "AMZ",
"operation": "DETAIL",
"domain": ".com",
"payload": {
"asins": [
"B0F25371FH",
"B0FB21526X"
]
},
"callback_url": "https://example.com/webhook"
}
])
headers = {
'api-key': 'YOUR_API_KEY',
'Content-Type': 'application/json'
}
response = requests.request("POST", url, headers=headers, data=payload)
print(response.text)
var request = require('request');
var options = {
'method': 'POST',
'url': 'https://bulk.easyparser.com/v1/bulk',
'headers': {
'api-key': 'YOUR_API_KEY',
'Content-Type': 'application/json'
},
body: JSON.stringify([
{
"platform": "AMZ",
"operation": "DETAIL",
"domain": ".com",
"payload": {
"asins": [
"B0F25371FH",
"B0FB21526X"
]
},
"callback_url": "https://example.com/webhook"
}
])
};
request(options, function (error, response) {
if (error) throw new Error(error);
console.log(response.body);
});
POST /v1/bulk HTTP/1.1
Host: bulk.easyparser.com
api-key: YOUR_API_KEY
Content-Type: application/json
Content-Length: 275
[
{
"platform": "AMZ",
"operation": "DETAIL",
"domain": ".com",
"payload": {
"asins": [
"B0F25371FH","B0FB21526X"
]
},
"callback_url": "https://example.com/webhook"
}
]
<?php
$curl = curl_init();
curl_setopt_array($curl, array(
CURLOPT_URL => 'https://bulk.easyparser.com/v1/bulk',
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => '',
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 0,
CURLOPT_FOLLOWLOCATION => true,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => 'POST',
CURLOPT_POSTFIELDS =>'[
{
"platform": "AMZ",
"operation": "DETAIL",
"domain": ".com",
"payload": {
"asins": [
"B0F25371FH","B0FB21526X"
]
},
"callback_url": "https://example.com/webhook"
}
]',
CURLOPT_HTTPHEADER => array(
'api-key: YOUR_API_KEY',
'Content-Type: application/json'
),
));
$response = curl_exec($curl);
curl_close($curl);
echo $response;
package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://bulk.easyparser.com/v1/bulk"
method := "POST"
payload := strings.NewReader(`[
{
"platform": "AMZ",
"operation": "DETAIL",
"domain": ".com",
"payload": {
"asins": [
"B0F25371FH","B0FB21526X"
]
},
"callback_url": "https://example.com/webhook"
}
]`)
client := &http.Client {
}
req, err := http.NewRequest(method, url, payload)
if err != nil {
fmt.Println(err)
return
}
req.Header.Add("api-key", "YOUR_API_KEY")
req.Header.Add("Content-Type", "application/json")
res, err := client.Do(req)
if err != nil {
fmt.Println(err)
return
}
defer res.Body.Close()
body, err := io.ReadAll(res.Body)
if err != nil {
fmt.Println(err)
return
}
fmt.Println(string(body))
}
var client = new HttpClient();
var request = new HttpRequestMessage(HttpMethod.Post, "https://bulk.easyparser.com/v1/bulk");
request.Headers.Add("api-key", "YOUR_API_KEY");
var content = new StringContent("[\n {\n \"platform\": \"AMZ\",\n \"operation\": \"DETAIL\",\n \"domain\": \".com\",\n \"payload\": {\n \"asins\": [\n \"B0F25371FH\",\"B0FB21526X\"\n ]\n \n },\n \"callback_url\": \"https://example.com/webhook\"\n }\n]", null, "application/json");
request.Content = content;
var response = await client.SendAsync(request);
response.EnsureSuccessStatusCode();
Console.WriteLine(await response.Content.ReadAsStringAsync());
OkHttpClient client = new OkHttpClient().newBuilder()
.build();
MediaType mediaType = MediaType.parse("application/json");
RequestBody body = RequestBody.create(mediaType, "[\n {\n \"platform\": \"AMZ\",\n \"operation\": \"DETAIL\",\n \"domain\": \".com\",\n \"payload\": {\n \"asins\": [\n \"B0F25371FH\",\"B0FB21526X\"\n ]\n \n },\n \"callback_url\": \"https://example.com/webhook\"\n }\n]");
Request request = new Request.Builder()
.url("https://bulk.easyparser.com/v1/bulk")
.method("POST", body)
.addHeader("api-key", "YOUR_API_KEY")
.addHeader("Content-Type", "application/json")
.build();
Response response = client.newCall(request).execute();
Bulk Service Response
{
"success": true,
"meta_data": {
"total_count": 2,
"accepted_count": 2,
"invalid_count": 0,
"insufficient_credit_count": 0,
"failed_count": 0,
"rate_limit_exceeded_count": 0
},
"data": {
"accepted": [
{
"platform": "AMZ",
"operation": "DETAIL",
"domain": ".com",
"callback_url": "https://example.com/webhook",
"ship_to": {
"zipCode": [
"19805"
]
},
"results": [
{
"asin": "B0F25371FH",
"id": "4e420023-0cea-4461-9ff8-4cd7e264084a",
"credit": 1
},
{
"asin": "B0FB21526X",
"id": "2a512daa-6013-46fd-b053-b54caaa37f43",
"credit": 1
}
]
}
],
"invalid": [],
"failed": [],
"insufficient_credit": [],
"rate_limit_exceeded": []
}
}
Data Service Request
curl --location 'https://data.easyparser.com/v1/queries/QUERY_ID/results?format=json' \
--header 'api-key: YOUR_API_KEY' \
--data ''
import requests
url = "https://data.easyparser.com/v1/queries/QUERY_ID/results?format=json"
payload = ""
headers = {
'api-key': 'YOUR_API_KEY'
}
response = requests.request("GET", url, headers=headers, data=payload)
print(response.text)
var request = require('request');
var options = {
'method': 'GET',
'url': 'https://data.easyparser.com/v1/queries/QUERY_ID/results?format=json',
'headers': {
'api-key': 'YOUR_API_KEY'
}
};
request(options, function (error, response) {
if (error) throw new Error(error);
console.log(response.body);
});
GET /v1/queries/QUERY_ID/results?format=json HTTP/1.1
Host: data.easyparser.com
api-key: YOUR_API_KEY
<?php
$curl = curl_init();
curl_setopt_array($curl, array(
CURLOPT_URL => 'https://data.easyparser.com/v1/queries/QUERY_ID/results?format=json',
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => '',
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 0,
CURLOPT_FOLLOWLOCATION => true,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => 'GET',
CURLOPT_HTTPHEADER => array(
'api-key: YOUR_API_KEY'
),
));
$response = curl_exec($curl);
curl_close($curl);
echo $response;
package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://data.easyparser.com/v1/queries/QUERY_ID/results?format=json"
method := "GET"
payload := strings.NewReader(``)
client := &http.Client {
}
req, err := http.NewRequest(method, url, payload)
if err != nil {
fmt.Println(err)
return
}
req.Header.Add("api-key", "YOUR_API_KEY")
res, err := client.Do(req)
if err != nil {
fmt.Println(err)
return
}
defer res.Body.Close()
body, err := io.ReadAll(res.Body)
if err != nil {
fmt.Println(err)
return
}
fmt.Println(string(body))
}
var client = new HttpClient();
var request = new HttpRequestMessage(HttpMethod.Get, "https://data.easyparser.com/v1/queries/QUERY_ID/results?format=json");
request.Headers.Add("api-key", "YOUR_API_KEY");
var content = new StringContent("", null, "text/plain");
request.Content = content;
var response = await client.SendAsync(request);
response.EnsureSuccessStatusCode();
Console.WriteLine(await response.Content.ReadAsStringAsync());
OkHttpClient client = new OkHttpClient().newBuilder()
.build();
MediaType mediaType = MediaType.parse("text/plain");
RequestBody body = RequestBody.create(mediaType, "");
Request request = new Request.Builder()
.url("https://data.easyparser.com/v1/queries/QUERY_ID/results?format=json")
.method("GET", body)
.addHeader("api-key", "YOUR_API_KEY")
.build();
Response response = client.newCall(request).execute();
Data Service Response
Response
{
"success": true,
"data": {
"callback_url": "https://example.com/webhook",
"payload": {
"asin": "B0FB21526X"
},
"domain": ".com",
"id": "2a512daa-6013-46fd-b053-b54caaa37f43",
"operation": "DETAIL",
"platform": "AMZ",
"json_result": {
"result": {
"has_360_view": true,
"marketplace_id": "ATVPDKIKX0DER",
"a_plus_content": {
"has_a_plus_content": true,
"has_brand_story": false,
"third_party": false
},
"keywords": "Logitech,MX,Master,3S,Bluetooth,Edition,Wireless,Mouse,,No,USB,Receiver,-,Ultra-Fast,Scrolling,,Ergo,,8K,DPI,,Track,on,Glass,,Quiet,Clicks,,Works,with,Apple,Mac,,Windows,PC,,Linux,,Chrome,-,Graphite",
"delivered_to": "Wilmington 19805",
"bought_activity": {
"symbol": "K",
"period": "past month",
"raw": "1K+ bought in past month",
"value": 1000
},
"rating": "4.5",
"videos": [
{
"duration_seconds": 15,
"thumbnail": "https://m.media-amazon.com/images/I/51kH51iTD+L.SS40_BG85,85,85_BR-120_PKdp-play-icon-overlay__.jpg",
"group_id": "IB_G1",
"link": "https://m.media-amazon.com/images/S/vse-vms-transcoding-artifact-us-east-1-prod/2a66e247-5739-48fe-9cb5-d082fe54c505/default.jobtemplate.hls.m3u8",
"variant": "MAIN",
"width": 1920,
"group_type": "",
"title": "Logitech Mx Master 3s Product Video",
"is_hero_video": false,
"height": 1080
},
{
"duration_seconds": 60,
"thumbnail": "https://m.media-amazon.com/images/I/41kfQrOjcvL.SS40_BG85,85,85_BR-120_PKdp-play-icon-overlay__.jpg",
"group_id": "IB_G1",
"link": "https://m.media-amazon.com/images/S/vse-vms-transcoding-artifact-us-east-1-prod/7fdd4a7f-781a-4f4b-8d4f-1e6bf60f852b/default.jobtemplate.hls.m3u8",
"variant": "MAIN",
"width": 1920,
"group_type": "",
"title": "Logitech MX Master 3s Product video",
"is_hero_video": false,
"height": 1080
},
{
"duration_seconds": 209,
"thumbnail": "https://m.media-amazon.com/images/I/51kfQu-5drL.SS40_BG85,85,85_BR-120_PKdp-play-icon-overlay__.jpg",
"group_id": "IB_G2",
"link": "https://m.media-amazon.com/images/S/vse-vms-transcoding-artifact-us-east-1-prod/4cdb43d4-2217-4d6e-9c6b-ba50a1b89456/default.jobtemplate.hls.m3u8",
"variant": "MAIN",
"width": 1920,
"group_type": "",
"title": "MX3 Combo Review",
"is_hero_video": false,
"height": 1080
},
{
"duration_seconds": 180,
"thumbnail": "https://m.media-amazon.com/images/I/51X703Rd9TL.SS40_BG85,85,85_BR-120_PKdp-play-icon-overlay__.jpg",
"group_id": "IB_G2",
"link": "https://m.media-amazon.com/images/S/vse-vms-transcoding-artifact-us-east-1-prod/0a350fca-dc9a-40c3-ada4-bbc782686461/default.jobtemplate.hls.m3u8",
"variant": "MAIN",
"width": 1920,
"group_type": "",
"title": "Logitech MX Master 3 vs. MX Master 3S",
"is_hero_video": false,
"height": 1080
},
{
"duration_seconds": 146,
"thumbnail": "https://m.media-amazon.com/images/I/A1J1u7GloWL.SS40_BG85,85,85_BR-120_PKdp-play-icon-overlay__.jpg",
"group_id": "IB_G2",
"link": "https://m.media-amazon.com/images/S/vse-vms-transcoding-artifact-us-east-1-prod/6128bb5e-1cee-44c8-aa70-dc6f37f83514/default.jobtemplate.hls.m3u8",
"variant": "MAIN",
"width": 1920,
"group_type": "",
"title": "The Ultimate Showdown Logitech MX Master 3S vs. MX Anywhere 3S",
"is_hero_video": false,
"height": 1080
},
{
"duration_seconds": 90,
"thumbnail": "https://m.media-amazon.com/images/I/A1cJv-D2fWL.SS40_BG85,85,85_BR-120_PKdp-play-icon-overlay__.jpg",
"group_id": "IB_G2",
"link": "https://m.media-amazon.com/images/S/vse-vms-transcoding-artifact-us-east-1-prod/0fef5a6a-3c4f-4c8a-9c24-9b26ded9e03f/default.jobtemplate.hls.m3u8",
"variant": "MAIN",
"width": 1920,
"group_type": "",
"title": "Logitech MX Master 3S Wireless Mouse Showcase Unboxing",
"is_hero_video": false,
"height": 1080
},
{
"duration_seconds": 50,
"thumbnail": "https://m.media-amazon.com/images/I/61TmqWqTjiL.SS40_BG85,85,85_BR-120_PKdp-play-icon-overlay__.jpg",
"group_id": "IB_G2",
"link": "https://m.media-amazon.com/images/S/vse-vms-transcoding-artifact-us-east-1-prod/8063c964-5de9-4cb3-9706-73c0316d11d5/default.vertical.jobtemplate.hls.m3u8",
"variant": "MAIN",
"width": 1080,
"group_type": "",
"title": "MUST WATCH! Best Mouse - Logitech MX Master 3S ",
"is_hero_video": false,
"height": 1920
}
],
"feature_bullets_count": 7,
"variants": [
{
"link": "https://www.amazon.com/dp/B0BKVY4WKT?th=1&psc=1",
"asin": "B0BKVY4WKT",
"title": "Graphite Combo",
"is_current_product": false,
"dimensions": [
{
"name": "Size",
"value": "Graphite"
},
{
"name": "Color",
"value": "Combo"
}
]
},
{
"link": "https://www.amazon.com/dp/B09HM94VDS?th=1&psc=1",
"asin": "B09HM94VDS",
"title": "Graphite Mouse w. USB Receiver",
"is_current_product": false,
"dimensions": [
{
"name": "Size",
"value": "Graphite"
},
{
"name": "Color",
"value": "Mouse w. USB Receiver"
}
]
},
{
"link": "https://www.amazon.com/dp/B0FB21526X?th=1&psc=1",
"asin": "B0FB21526X",
"title": "Graphite Mouse w/o USB Receiver",
"is_current_product": true,
"dimensions": [
{
"name": "Size",
"value": "Graphite"
},
{
"name": "Color",
"value": "Mouse w/o USB Receiver"
}
]
},
{
"link": "https://www.amazon.com/dp/B0DQ6DB2XF?th=1&psc=1",
"asin": "B0DQ6DB2XF",
"title": "Graphite Console Bundle",
"is_current_product": false,
"dimensions": [
{
"name": "Size",
"value": "Graphite"
},
{
"name": "Color",
"value": "Console Bundle"
}
]
},
{
"link": "https://www.amazon.com/dp/B09HMKFDXC?th=1&psc=1",
"asin": "B09HMKFDXC",
"title": "Pale Grey Mouse w. USB Receiver",
"is_current_product": false,
"dimensions": [
{
"name": "Size",
"value": "Pale Grey"
},
{
"name": "Color",
"value": "Mouse w. USB Receiver"
}
]
},
{
"link": "https://www.amazon.com/dp/B0DQ6CHVXK?th=1&psc=1",
"asin": "B0DQ6CHVXK",
"title": "Pale Grey Console Bundle",
"is_current_product": false,
"dimensions": [
{
"name": "Size",
"value": "Pale Grey"
},
{
"name": "Color",
"value": "Console Bundle"
}
]
},
{
"link": "https://www.amazon.com/dp/B0C6NXF4B3?th=1&psc=1",
"asin": "B0C6NXF4B3",
"title": "Pale Grey Combo",
"is_current_product": false,
"dimensions": [
{
"name": "Size",
"value": "Pale Grey"
},
{
"name": "Color",
"value": "Combo"
}
]
}
],
"specifications": [
{
"name": "Brand",
"value": "Logitech"
},
{
"name": "Color",
"value": "Graphite"
},
{
"name": "Connectivity Technology",
"value": "Bluetooth"
},
{
"name": "Special Feature",
"value": "Wireless, Programmable Buttons, Portable, Soundless, Rechargeable"
},
{
"name": "Movement Detection Technology",
"value": "Optical"
},
{
"name": "Brand",
"value": "Logitech"
},
{
"name": "Series",
"value": "MX Master 3S BE"
},
{
"name": "Item model number",
"value": "910-007499"
},
{
"name": "Hardware Platform",
"value": "PC, Linux, Mac"
},
{
"name": "Item Weight",
"value": "5 ounces"
},
{
"name": "Product Dimensions",
"value": "4.92 x 3.32 x 0.1 inches"
},
{
"name": "Item Dimensions LxWxH",
"value": "4.92 x 3.32 x 0.1 inches"
},
{
"name": "Color",
"value": "Graphite"
},
{
"name": "Power Source",
"value": "Battery Powered"
},
{
"name": "Manufacturer",
"value": "Logitech"
},
{
"name": "ASIN",
"value": "B0FB21526X"
},
{
"name": "Date First Available",
"value": "July 1, 2025"
},
{
"name": "Customer Reviews",
"value": "4.5 out of 5 stars"
},
{
"name": "Best Sellers Rank",
"value": ""
}
],
"bestsellers_rank_flat": "Category: Computer Mice | Rank: 128",
"variant_asins_flat": "B0BKVY4WKT,B09HM94VDS,B0FB21526X,B0DQ6DB2XF,B09HMKFDXC,B0DQ6CHVXK,B0C6NXF4B3",
"additional_details": [
{
"Brand": "Logitech"
},
{
"Series": "MX Master 3S BE"
},
{
"Item model number": "910-007499"
},
{
"Hardware Platform": "PC, Linux, Mac"
},
{
"Item Weight": "5 ounces"
},
{
"Product Dimensions": "4.92 x 3.32 x 0.1 inches"
},
{
"Item Dimensions LxWxH": "4.92 x 3.32 x 0.1 inches"
},
{
"Color": "Graphite"
},
{
"Power Source": "Battery Powered"
},
{
"Manufacturer": "Logitech"
},
{
"ASIN": "B0FB21526X"
},
{
"Date First Available": "July 1, 2025"
}
],
"videos_flat": "https://m.media-amazon.com/images/S/vse-vms-transcoding-artifact-us-east-1-prod/2a66e247-5739-48fe-9cb5-d082fe54c505/default.jobtemplate.hls.m3u8,https://m.media-amazon.com/images/S/vse-vms-transcoding-artifact-us-east-1-prod/7fdd4a7f-781a-4f4b-8d4f-1e6bf60f852b/default.jobtemplate.hls.m3u8,https://m.media-amazon.com/images/S/vse-vms-transcoding-artifact-us-east-1-prod/4cdb43d4-2217-4d6e-9c6b-ba50a1b89456/default.jobtemplate.hls.m3u8,https://m.media-amazon.com/images/S/vse-vms-transcoding-artifact-us-east-1-prod/0a350fca-dc9a-40c3-ada4-bbc782686461/default.jobtemplate.hls.m3u8,https://m.media-amazon.com/images/S/vse-vms-transcoding-artifact-us-east-1-prod/6128bb5e-1cee-44c8-aa70-dc6f37f83514/default.jobtemplate.hls.m3u8,https://m.media-amazon.com/images/S/vse-vms-transcoding-artifact-us-east-1-prod/0fef5a6a-3c4f-4c8a-9c24-9b26ded9e03f/default.jobtemplate.hls.m3u8,https://m.media-amazon.com/images/S/vse-vms-transcoding-artifact-us-east-1-prod/8063c964-5de9-4cb3-9706-73c0316d11d5/default.vertical.jobtemplate.hls.m3u8",
"brand": "Logitech",
"feature_bullets": [
"Logitech MX Master 3S Bluetooth Edition is a Bluetooth only mouse, and does not come with any USB receiver / adapter or charging cable",
"8K DPI Any-surface tracking: Use MX Master 3S cordless computer mouse to work on any surface - even glass (1) - with an 8000 DPI sensor with customizable sensitivity",
"Quiet Clicks: MX Master 3S Bluetooth mouse with Quiet Clicks - offering the same satisfying feel but with 90% less click noise (2)",
"Magspeed scrolling: A computer mouse with remarkable speed, precision, and near silence - MagSpeed scrolling is 90% faster (3), 87% more precise (4), and ultra quiet.",
"Ergonomic design: Work comfortably with a precision mouse featuring a silhouette crafted for a more natural wrist posture and optimally placed thumb controls",
"Countless Customizations: Customize buttons and optimize your workflow with App specific profiles in the Logi Options+ app (5)",
"FLOW cross-computer control: Work seamlessly on multiple computers or laptops, and transfer text, images, and files – between Windows & macOS (5)"
],
"images": [
{
"link": "https://m.media-amazon.com/images/I/31sRedU3E1L._AC_.jpg",
"variant": "MAIN"
},
{
"link": "https://m.media-amazon.com/images/I/416IaGz6e5L._AC_.jpg",
"variant": "PT01"
},
{
"link": "https://m.media-amazon.com/images/I/41ux-fVYV+L._AC_.jpg",
"variant": "PT02"
},
{
"link": "https://m.media-amazon.com/images/I/41hq-ooV5lL._AC_.jpg",
"variant": "PT03"
},
{
"link": "https://m.media-amazon.com/images/I/41w2fxguEEL._AC_.jpg",
"variant": "PT04"
},
{
"link": "https://m.media-amazon.com/images/I/41bFpAlOHHL._AC_.jpg",
"variant": "PT05"
},
{
"link": "https://m.media-amazon.com/images/I/51YOk6zMATL._AC_.jpg",
"variant": "PT06"
},
{
"link": "https://m.media-amazon.com/images/I/518-J+xFFlL._AC_.jpg",
"variant": "PT07"
},
{
"link": "https://m.media-amazon.com/images/I/5107vEj5zTL._AC_.jpg",
"variant": "PT08"
},
{
"link": "https://m.media-amazon.com/images/I/31kF-q1gbLL._AC_.jpg",
"variant": "PT09"
}
],
"images_count": 10,
"weight": "5 ounces",
"rating_breakdown": {
"one_star": {
"percentage": 6,
"count": 662
},
"four_star": {
"percentage": 8,
"count": 882
},
"five_star": {
"percentage": 79,
"count": 8714
},
"three_star": {
"percentage": 4,
"count": 441
},
"two_star": {
"percentage": 3,
"count": 331
}
},
"brand_store": {
"link": "https://www.amazon.com/stores/Logitech/page/01EFDE77-7D1A-41D7-9EEA-7C2FA22AB12F?lp_asin=B0FB21526X&ref_=ast_bln&store_ref=bl_ast_dp_brandLogo_sto",
"id": "01EFDE77-7D1A-41D7-9EEA-7C2FA22AB12F"
},
"is_bundle": true,
"keywords_list": [
"Logitech",
"MX",
"Master",
"3S",
"Bluetooth",
"Edition",
"Wireless",
"Mouse,",
"No",
"USB",
"Receiver",
"Ultra-Fast",
"Scrolling,",
"Ergo,",
"8K",
"DPI,",
"Track",
"on",
"Glass,",
"Quiet",
"Clicks,",
"Works",
"with",
"Apple",
"Mac,",
"Windows",
"PC,",
"Linux,",
"Chrome",
"Graphite",
"Logitech MX Master 3S Bluetooth Edition Wireless Mouse",
"No USB Receiver - Ultra-Fast Scrolling",
"Ergo",
"8K DPI",
"Track on Glass",
"Quiet Clicks",
"Works with Apple Mac",
"Windows PC",
"Linux",
"Chrome - Graphite",
"Logitech MX Master 3S Bluetooth Edition Wireless Mouse, No USB Receiver",
"Ultra-Fast Scrolling, Ergo, 8K DPI, Track on Glass, Quiet Clicks, Works with Apple Mac, Windows PC, Linux, Chrome"
],
"ratings_total": 11031,
"top_reviews": [
{
"date": {
"raw": "Reviewed in the United States on December 24, 2024"
},
"body_html": "<script> (function() { P.when('cr-A', 'ready').execute(function(A) { if(typeof A.toggleExpanderAriaLabel === 'function') { A.toggleExpanderAriaLabel('review_text_read_more', 'Read more of this review', 'Read less of this review'); } }); })(); </script> <style> .review-text-read-more-expander:focus-visible { outline: 2px solid #2162a1; outline-offset: 2px; border-radius: 5px; } </style><div data-a-expander-name=\"review_text_read_more\" data-a-expander-collapsed-height=\"300\" class=\"a-expander-collapsed-height a-row a-expander-container a-expander-partial-collapse-container review-text-read-more-expander\" style=\"max-height:300px\"><div data-hook=\"review-collapsed\" data-expanded=\"false\" class=\"a-expander-content reviewText review-text-content a-expander-partial-collapse-content\"> <span>I was using three PCs side by side, with three separate keyboards and three mice. All I wanted was one keyboard to take the place of three keyboards. What I got was so much more. Love the mouse which I hadn’t expected. Mice don’t take up a lot of room, so whether or not a mouse replaces three mice at first didn’t mean a lot to me, but when I discovered how comfortable and smooth this mouse is, I was thrilled to be able to use it with three PCs by the press of a button under the mouse. -So while I still have the original mice connected in case I don’t want to take the 5 seconds it takes to pick up the Logitech mouse and push a button to share the Logitech mouse, because I enjoy using the Logitech mouse so much more, I doubt the old mice will get much use!<br/>-So this keyboard and mouse work with up to three PCs, via LogiBolt or via Bluetooth. I wanted to connect the keyboard and mouse via LogiBolt on each PC. The set only comes with one LogiBolt that is pre-programmed to pair with the keyboard and mouse as computer#1/mouse1. More specifically, straight out of the box I could plug in the included ‘Logi Bolt’ into the USB port of any of my three PCs and it worked with each of Win 7, Win 10, and Win 11 PCs. HOWEVER, I didn’t want to have to keep switching the one LogiBolt among three PCs (and I didn’t want to rely on Bluetooth) so … I found two more LogiTech LogiBolts for sale on Amazon and bought two more LogiBolts.<br/>IMPORTANT: Unlike the LogiBolt that comes with the set, the additional two LogiBolts aren’t plug and play - a few simple steps needed to be done to pair each LogiBolt with the keyboard and mouse. So because this info is surprisingly hard to find, here’s the bottom line:<br/>1) I used the pre-programmed LogiBolt USB Receiver that was included with the keyboard and the mouse on the Windows 7 PC, and it worked plug and play. Both the mouse and the keyboard pair (work with) that original LogiBolt USB receiver as computer 1 and mouse 1.<br/>2) Next I wanted my Windows 10 PC to pair with the keyboard and mouse as computer 2. Since the LogiBolt purchased separately isn’t plug and play, for my Windows 10 PC, I had to use my pre-existing mouse and keyboard to navigate to logiwebconnect.com; and once at logiwebconnect.com website, then I inserted one of the new additional Logibolt USB Receivers (that I bought separately on Amazon) into the Windows 10PC and on logiwebconnect.com site the site recognized the LogiBolt receiver and gave me prompts to ‘add a new device’ to that LogiBolt receiver. Then I pressed the ‘computer2’ key on the new keyboard for 3 seconds to make the new keyboard discoverable by that particular Logibolt, and that’s what pairs the PC with the keyboard as computer2. So now that particular Logibolt USB Receiver sees the keyboard as belonging to computer 2 whenever computer 2 button is pressed on the keyboard. Then on that same logiwebconnect.com website, I was given the opportunity to add another device to that LogiBolt USB receiver, and so this time on the underside of the Logitech mouse I pressed the button until the number 2 appeared and the logiwebconnect.com website found the mouse and is now paired with that mouse when 2 is chosen underneath the mouse. So those are the steps to program the keyboard and the mouse to know they’re connected as computer2/mouse2 with that particular USB Receiver. FYI, in order to do all this, I still needed my pre-existing old keyboard and mouse to navigate the website, etc.<br/>3) For the Windows 11 PC, IF I had had a pre-existing mouse/keyboard for that Windows 11PC, I would simply have used the pre-existing keyboard/mouse to navigate to logiwebconnect.com and follow the same steps I wrote in 2 above, except instead of choosing to pair as keyboard 2/mouse2, I would have chosen keyboard 3/mouse 3. -BUT I didn’t have a pre-existing keyboard/mouse for the Windows 11PC, so I actually ‘borrowed’ the LogiBolt from the Win7 PC and plugged it temporarily into the Windows 11 PC, and so the Windows 11PC immediately recognized the LogiTech mouse and keyboard on a plug and play basis as computer 1/mouse 1. I then went to the Logiwebconnect.com website and PLUGGED IN A NEW LOGIBOLT I HAD JUST BOUGHT ON AMAZON. The Logiwebconnect.com website then indicated that the Windows11 PC had two LogiBolts in it, so I had to choose which of the LogiBolts I wanted to add new devices to. (To make sure I chose the correct LogiBolt to program, I unplugged the original LogiBolt that came with the keyboard and mouse and paid attention to which LogiBolt disappeared from the list. Then I plugged the original LogiBolt back into the same USB slot in the Windows 11PC AND MADE SURE I CHOSE THE OTHER LOGIBOLT TO ADD DEVICES TO.). In other words, I used the original LOGIBOLT that comes pre-programmed with the mouse & keyboard as the #1 option in order to navigate through the logiwebconnect.com website to add that same keyboard/mouse as the #3 option to the new LogiBolt that I bought separately on Amazon. -and amazingly that worked! So if two Logibolts are connected to the same PC, the PC can be paired both as keyboard#1/mouse#1 and as keyboard#3/mouse#3 on the same keyboard/mouse! Once the Windows 11 PC was paired on the new LogiBolt as PC#3 for the mouse & keyboard, I simply unplugged the original LogiBolt and put it back in the Windows 7 PC, with the automatic and immediate result that the Windows 7 PC was once again computer#1/mouse1. In other words, once you pair a LogiBolt USB Receiver with this keyboard and mouse, the Logic bolt USB receiver REMEMBERS THE PAIRING AND WHATEVER COMPATIBLE PC YOU PUT THAT LOGIBOLT INTO WILL PLUG AND PLAY WITH THE KEYBOARD AND MOUSE. The pairing apparently happens at the Logibokt level, not in the PC itself.<br/>Conclusion: I only bought this because I wanted one keyboard that worked with three PCs easily. This set totally does that, once it’s set up (& I purchased two more LogiBolts rather than use Bluetooth to get up to three PC connections). I was delighted to find that this keyboard and mouse are very well made and EXTREMELY comfortable to use. Mouse is particularly nice - nicest mouse I have ever had. Who knew any mouse could be so superior, but this one really is. As a result of all this, after buying the keyboard/mouse set (that comes with one LogiBolt), PLUS BUYING TWO MORE LOGIBOLTS, I am able to easily use this keyboard and this mouse with three different PCs. I never downloaded any LogiPlus software onto any of my PCs, and probably won’t, since the reviews on that software are so mixed. The keyboard lighting is very nice and easy to read. Highly recommend if you have more than one keyboard cluttering your space - and the mouse is so nice I’m so glad I bought the full set. I hope this review is helpful to you :)<br/></span> </div><div class=\"a-expander-header a-expander-partial-collapse-header\"><div class=\"a-expander-content-fade\"></div><a href=\"javascript:void(0)\" data-hook=\"expand-collapse-read-more-less\" aria-label=\"Read more of this review\" aria-expanded=\"false\" role=\"button\" data-action=\"a-expander-toggle\" class=\"a-declarative\" data-a-expander-toggle=\"{"allowLinkDefault":true, "expand_prompt":"Read more", "collapse_prompt":"Read less"}\"><i class=\"a-icon a-icon-extender-expand\"></i><span class=\"a-expander-prompt\">Read more</span></a></div></div>",
"profile": {
"link": "https://www.amazon.com/gp/profile/amzn1.account.AFNEVTQYHQVORFXO55XTGZ6X47FA/ref=cm_cr_dp_d_gw_tr?ie=UTF8",
"name": "Curious Reader",
"id": "AFNEVTQYHQVORFXO55XTGZ6X47FA"
},
"link": "https://www.amazon.com/gp/customer-reviews/R29FOVL0I94XBJ/ref=cm_cr_dp_d_rvw_ttl?ie=UTF8",
"rating": "5.0",
"verified_purchase": true,
"body": "I was using three PCs side by side, with three separate keyboards and three mice. All I wanted was one keyboard to take the place of three keyboards. What I got was so much more. Love the mouse which I hadn’t expected. Mice don’t take up a lot of room, so whether or not a mouse replaces three mice at first didn’t mean a lot to me, but when I discovered how comfortable and smooth this mouse is, I was thrilled to be able to use it with three PCs by the press of a button under the mouse. -So while I still have the original mice connected in case I don’t want to take the 5 seconds it takes to pick up the Logitech mouse and push a button to share the Logitech mouse, because I enjoy using the Logitech mouse so much more, I doubt the old mice will get much use!-So this keyboard and mouse work with up to three PCs, via LogiBolt or via Bluetooth. I wanted to connect the keyboard and mouse via LogiBolt on each PC. The set only comes with one LogiBolt that is pre-programmed to pair with the keyboard and mouse as computer#1/mouse1. More specifically, straight out of the box I could plug in the included ‘Logi Bolt’ into the USB port of any of my three PCs and it worked with each of Win 7, Win 10, and Win 11 PCs. HOWEVER, I didn’t want to have to keep switching the one LogiBolt among three PCs (and I didn’t want to rely on Bluetooth) so … I found two more LogiTech LogiBolts for sale on Amazon and bought two more LogiBolts.IMPORTANT: Unlike the LogiBolt that comes with the set, the additional two LogiBolts aren’t plug and play - a few simple steps needed to be done to pair each LogiBolt with the keyboard and mouse. So because this info is surprisingly hard to find, here’s the bottom line:1) I used the pre-programmed LogiBolt USB Receiver that was included with the keyboard and the mouse on the Windows 7 PC, and it worked plug and play. Both the mouse and the keyboard pair (work with) that original LogiBolt USB receiver as computer 1 and mouse 1.2) Next I wanted my Windows 10 PC to pair with the keyboard and mouse as computer 2. Since the LogiBolt purchased separately isn’t plug and play, for my Windows 10 PC, I had to use my pre-existing mouse and keyboard to navigate to logiwebconnect.com; and once at logiwebconnect.com website, then I inserted one of the new additional Logibolt USB Receivers (that I bought separately on Amazon) into the Windows 10PC and on logiwebconnect.com site the site recognized the LogiBolt receiver and gave me prompts to ‘add a new device’ to that LogiBolt receiver. Then I pressed the ‘computer2’ key on the new keyboard for 3 seconds to make the new keyboard discoverable by that particular Logibolt, and that’s what pairs the PC with the keyboard as computer2. So now that particular Logibolt USB Receiver sees the keyboard as belonging to computer 2 whenever computer 2 button is pressed on the keyboard. Then on that same logiwebconnect.com website, I was given the opportunity to add another device to that LogiBolt USB receiver, and so this time on the underside of the Logitech mouse I pressed the button until the number 2 appeared and the logiwebconnect.com website found the mouse and is now paired with that mouse when 2 is chosen underneath the mouse. So those are the steps to program the keyboard and the mouse to know they’re connected as computer2/mouse2 with that particular USB Receiver. FYI, in order to do all this, I still needed my pre-existing old keyboard and mouse to navigate the website, etc.3) For the Windows 11 PC, IF I had had a pre-existing mouse/keyboard for that Windows 11PC, I would simply have used the pre-existing keyboard/mouse to navigate to logiwebconnect.com and follow the same steps I wrote in 2 above, except instead of choosing to pair as keyboard 2/mouse2, I would have chosen keyboard 3/mouse 3. -BUT I didn’t have a pre-existing keyboard/mouse for the Windows 11PC, so I actually ‘borrowed’ the LogiBolt from the Win7 PC and plugged it temporarily into the Windows 11 PC, and so the Windows 11PC immediately recognized the LogiTech mouse and keyboard on a plug and play basis as computer 1/mouse 1. I then went to the Logiwebconnect.com website and PLUGGED IN A NEW LOGIBOLT I HAD JUST BOUGHT ON AMAZON. The Logiwebconnect.com website then indicated that the Windows11 PC had two LogiBolts in it, so I had to choose which of the LogiBolts I wanted to add new devices to. (To make sure I chose the correct LogiBolt to program, I unplugged the original LogiBolt that came with the keyboard and mouse and paid attention to which LogiBolt disappeared from the list. Then I plugged the original LogiBolt back into the same USB slot in the Windows 11PC AND MADE SURE I CHOSE THE OTHER LOGIBOLT TO ADD DEVICES TO.). In other words, I used the original LOGIBOLT that comes pre-programmed with the mouse & keyboard as the #1 option in order to navigate through the logiwebconnect.com website to add that same keyboard/mouse as the #3 option to the new LogiBolt that I bought separately on Amazon. -and amazingly that worked! So if two Logibolts are connected to the same PC, the PC can be paired both as keyboard#1/mouse#1 and as keyboard#3/mouse#3 on the same keyboard/mouse! Once the Windows 11 PC was paired on the new LogiBolt as PC#3 for the mouse & keyboard, I simply unplugged the original LogiBolt and put it back in the Windows 7 PC, with the automatic and immediate result that the Windows 7 PC was once again computer#1/mouse1. In other words, once you pair a LogiBolt USB Receiver with this keyboard and mouse, the Logic bolt USB receiver REMEMBERS THE PAIRING AND WHATEVER COMPATIBLE PC YOU PUT THAT LOGIBOLT INTO WILL PLUG AND PLAY WITH THE KEYBOARD AND MOUSE. The pairing apparently happens at the Logibokt level, not in the PC itself.Conclusion: I only bought this because I wanted one keyboard that worked with three PCs easily. This set totally does that, once it’s set up (& I purchased two more LogiBolts rather than use Bluetooth to get up to three PC connections). I was delighted to find that this keyboard and mouse are very well made and EXTREMELY comfortable to use. Mouse is particularly nice - nicest mouse I have ever had. Who knew any mouse could be so superior, but this one really is. As a result of all this, after buying the keyboard/mouse set (that comes with one LogiBolt), PLUS BUYING TWO MORE LOGIBOLTS, I am able to easily use this keyboard and this mouse with three different PCs. I never downloaded any LogiPlus software onto any of my PCs, and probably won’t, since the reviews on that software are so mixed. The keyboard lighting is very nice and easy to read. Highly recommend if you have more than one keyboard cluttering your space - and the mouse is so nice I’m so glad I bought the full set. I hope this review is helpful to you :)",
"title": "Plug & Play works with Win 7 AND 10 AND 11",
"helpful_votes": 17,
"is_global_review": true,
"vine_program": false,
"review_country": "USA",
"id": "R29FOVL0I94XBJ"
},
{
"date": {
"raw": "Reviewed in the United States on July 24, 2025"
},
"body_html": "<div data-a-expander-name=\"review_text_read_more\" data-a-expander-collapsed-height=\"300\" class=\"a-expander-collapsed-height a-row a-expander-container a-expander-partial-collapse-container review-text-read-more-expander\" style=\"max-height:300px\"><div data-hook=\"review-collapsed\" data-expanded=\"false\" class=\"a-expander-content reviewText review-text-content a-expander-partial-collapse-content\"> <span>The Logitech MX Master 3 is hands down the best mouse I’ve ever used—super comfortable, precise, and built like a tank. The customizable buttons and smooth scroll wheel make work so much faster and easier. Totally worth the money!<br/></span> </div><div class=\"a-expander-header a-expander-partial-collapse-header\"><div class=\"a-expander-content-fade\"></div><a href=\"javascript:void(0)\" data-hook=\"expand-collapse-read-more-less\" aria-label=\"Read more of this review\" aria-expanded=\"false\" role=\"button\" data-action=\"a-expander-toggle\" class=\"a-declarative\" data-a-expander-toggle=\"{"allowLinkDefault":true, "expand_prompt":"Read more", "collapse_prompt":"Read less"}\"><i class=\"a-icon a-icon-extender-expand\"></i><span class=\"a-expander-prompt\">Read more</span></a></div></div>",
"profile": {
"link": "https://www.amazon.com/gp/profile/amzn1.account.AECWZM3OWX5POBG3JIWEAXOXMLNA/ref=cm_cr_dp_d_gw_tr?ie=UTF8",
"name": "Peter",
"id": "AECWZM3OWX5POBG3JIWEAXOXMLNA"
},
"link": "https://www.amazon.com/gp/customer-reviews/R1GEWNCVOPJQ8Y/ref=cm_cr_dp_d_rvw_ttl?ie=UTF8",
"rating": "5.0",
"verified_purchase": true,
"body": "The Logitech MX Master 3 is hands down the best mouse I’ve ever used—super comfortable, precise, and built like a tank. The customizable buttons and smooth scroll wheel make work so much faster and easier. Totally worth the money!",
"title": "Totally worth the money",
"helpful_votes": 0,
"is_global_review": true,
"vine_program": false,
"review_country": "USA",
"id": "R1GEWNCVOPJQ8Y"
},
{
"date": {
"raw": "Reviewed in the United States on July 12, 2025"
},
"body_html": "<div data-a-expander-name=\"review_text_read_more\" data-a-expander-collapsed-height=\"300\" class=\"a-expander-collapsed-height a-row a-expander-container a-expander-partial-collapse-container review-text-read-more-expander\" style=\"max-height:300px\"><div data-hook=\"review-collapsed\" data-expanded=\"false\" class=\"a-expander-content reviewText review-text-content a-expander-partial-collapse-content\"> <span>I really really enjoy this mouse. Not only for the ergonomic features of it, and the large size of it, but it just feels very natural and premium. I enjoy all of the different buttons and functions I can utilize as well. Although it is pricey, it feels as though it will last me a long time. My only critique I would give is that I hope in the future I can program the side scrolling button for vertical scrolling, because right now it is only for horizontal scrolling.<br/></span> </div><div class=\"a-expander-header a-expander-partial-collapse-header\"><div class=\"a-expander-content-fade\"></div><a href=\"javascript:void(0)\" data-hook=\"expand-collapse-read-more-less\" aria-label=\"Read more of this review\" aria-expanded=\"false\" role=\"button\" data-action=\"a-expander-toggle\" class=\"a-declarative\" data-a-expander-toggle=\"{"allowLinkDefault":true, "expand_prompt":"Read more", "collapse_prompt":"Read less"}\"><i class=\"a-icon a-icon-extender-expand\"></i><span class=\"a-expander-prompt\">Read more</span></a></div></div>",
"profile": {
"link": "https://www.amazon.com/gp/profile/amzn1.account.AF7NSDSVT24TAUWHKFM4KWSEF55Q/ref=cm_cr_dp_d_gw_tr?ie=UTF8",
"name": "Trent M",
"id": "AF7NSDSVT24TAUWHKFM4KWSEF55Q"
},
"link": "https://www.amazon.com/gp/customer-reviews/R1YFDHRBU35FK2/ref=cm_cr_dp_d_rvw_ttl?ie=UTF8",
"rating": "5.0",
"verified_purchase": true,
"body": "I really really enjoy this mouse. Not only for the ergonomic features of it, and the large size of it, but it just feels very natural and premium. I enjoy all of the different buttons and functions I can utilize as well. Although it is pricey, it feels as though it will last me a long time. My only critique I would give is that I hope in the future I can program the side scrolling button for vertical scrolling, because right now it is only for horizontal scrolling.",
"title": "Logitech Mouse",
"helpful_votes": 0,
"is_global_review": true,
"vine_program": false,
"review_country": "USA",
"id": "R1YFDHRBU35FK2"
},
{
"date": {
"raw": "Reviewed in the United States on July 9, 2025"
},
"body_html": "<div data-a-expander-name=\"review_text_read_more\" data-a-expander-collapsed-height=\"300\" class=\"a-expander-collapsed-height a-row a-expander-container a-expander-partial-collapse-container review-text-read-more-expander\" style=\"max-height:300px\"><div data-hook=\"review-collapsed\" data-expanded=\"false\" class=\"a-expander-content reviewText review-text-content a-expander-partial-collapse-content\"> <span>Well, no complaints about this product, which always surprises us with good, high-quality products. It would be good if its price was a little more affordable, but it's worth it. Its battery lasts too long, it doesn't make noise, it's not uncomfortable, it has infinite buttons, very customizable, it's a product that meets my expectations as a user and I would buy it again without a doubt.<br/></span> </div><div class=\"a-expander-header a-expander-partial-collapse-header\"><div class=\"a-expander-content-fade\"></div><a href=\"javascript:void(0)\" data-hook=\"expand-collapse-read-more-less\" aria-label=\"Read more of this review\" aria-expanded=\"false\" role=\"button\" data-action=\"a-expander-toggle\" class=\"a-declarative\" data-a-expander-toggle=\"{"allowLinkDefault":true, "expand_prompt":"Read more", "collapse_prompt":"Read less"}\"><i class=\"a-icon a-icon-extender-expand\"></i><span class=\"a-expander-prompt\">Read more</span></a></div></div>",
"profile": {
"link": "https://www.amazon.com/gp/profile/amzn1.account.AEFQ5VVCA6BVWB7TBO35HUCGY2QA/ref=cm_cr_dp_d_gw_tr?ie=UTF8",
"name": "Juan David Correa EcheverriaJuan David Correa Echeverria",
"id": "AEFQ5VVCA6BVWB7TBO35HUCGY2QA"
},
"link": "https://www.amazon.com/gp/customer-reviews/R2ZWWY7APUZ2YY/ref=cm_cr_dp_d_rvw_ttl?ie=UTF8",
"rating": "5.0",
"verified_purchase": true,
"body": "Well, no complaints about this product, which always surprises us with good, high-quality products. It would be good if its price was a little more affordable, but it's worth it. Its battery lasts too long, it doesn't make noise, it's not uncomfortable, it has infinite buttons, very customizable, it's a product that meets my expectations as a user and I would buy it again without a doubt.",
"title": "Its battery life and ease of use are very noteworthy.",
"helpful_votes": 0,
"is_global_review": true,
"vine_program": false,
"review_country": "USA",
"id": "R2ZWWY7APUZ2YY"
},
{
"date": {
"raw": "Reviewed in the United States on July 28, 2025"
},
"body_html": "<div data-a-expander-name=\"review_text_read_more\" data-a-expander-collapsed-height=\"300\" class=\"a-expander-collapsed-height a-row a-expander-container a-expander-partial-collapse-container review-text-read-more-expander\" style=\"max-height:300px\"><div data-hook=\"review-collapsed\" data-expanded=\"false\" class=\"a-expander-content reviewText review-text-content a-expander-partial-collapse-content\"> <span>We'll see how long it will last, usually similar devices work for me for years. The functionality... I'm really shocked because I first tried it without reading any manual, as I usually do, and I found tons of useful features. But then I found a well hidden button, letting me do multiple things I never expected. The main scrolling is fantastic with its 2 modes, pretty awesome! The material this mouse is made of feels very good in hand, not slippery, not even a minor hint. The shape is very useful, extremely convenient for my large palm. I recommended it to all my friends now.<br/></span> </div><div class=\"a-expander-header a-expander-partial-collapse-header\"><div class=\"a-expander-content-fade\"></div><a href=\"javascript:void(0)\" data-hook=\"expand-collapse-read-more-less\" aria-label=\"Read more of this review\" aria-expanded=\"false\" role=\"button\" data-action=\"a-expander-toggle\" class=\"a-declarative\" data-a-expander-toggle=\"{"allowLinkDefault":true, "expand_prompt":"Read more", "collapse_prompt":"Read less"}\"><i class=\"a-icon a-icon-extender-expand\"></i><span class=\"a-expander-prompt\">Read more</span></a></div></div>",
"profile": {
"link": "https://www.amazon.com/gp/profile/amzn1.account.AFRWITLCQSWPIW3G6ORRBSUPESMQ/ref=cm_cr_dp_d_gw_tr?ie=UTF8",
"name": "DSh",
"id": "AFRWITLCQSWPIW3G6ORRBSUPESMQ"
},
"link": "https://www.amazon.com/gp/customer-reviews/R3GO5Q67GAFT2M/ref=cm_cr_dp_d_rvw_ttl?ie=UTF8",
"rating": "5.0",
"verified_purchase": true,
"body": "We'll see how long it will last, usually similar devices work for me for years. The functionality... I'm really shocked because I first tried it without reading any manual, as I usually do, and I found tons of useful features. But then I found a well hidden button, letting me do multiple things I never expected. The main scrolling is fantastic with its 2 modes, pretty awesome! The material this mouse is made of feels very good in hand, not slippery, not even a minor hint. The shape is very useful, extremely convenient for my large palm. I recommended it to all my friends now.",
"title": "Extremely functional, very convenient in hand, not slippery at all, looks and works pretty well!",
"helpful_votes": 0,
"is_global_review": true,
"vine_program": false,
"review_country": "USA",
"id": "R3GO5Q67GAFT2M"
},
{
"date": {
"raw": "Reviewed in the United States on April 17, 2025"
},
"body_html": "<div data-a-expander-name=\"review_text_read_more\" data-a-expander-collapsed-height=\"300\" class=\"a-expander-collapsed-height a-row a-expander-container a-expander-partial-collapse-container review-text-read-more-expander\" style=\"max-height:300px\"><div data-hook=\"review-collapsed\" data-expanded=\"false\" class=\"a-expander-content reviewText review-text-content a-expander-partial-collapse-content\"> <span>I was hesitant on buying this because of the price. I tested the mouse only at the store and loved the way it felt in my hand. The keyboard is smooth and the simplicity of the backlit keyboard is pleasing. I have issues with my wrists so I caved and bought it. BEST DECISION. This is literally the best wireless mouse and keyboard combo I own (and I own several). I love the quiet click of the mouse, the shape is perfect within my hand and eases the pain in my wrist. The pad that comes with it is a nice bonus. I’ve owned the plastic, the foam, the gel wrist rest and they are all bulky and uncomfortable to use. This one is nice and easy. My wrists are sitting uncomfortable over the rest while I type. It has a nice weight to it so this doesn’t slide around my larger mouse pad. The charging cables and light feature let you know when it’s charging and when it’s done. This does charge pretty fast using my PC. I do own a few off brand mouse and keyboard combos, but the quality in this Logitech brand is unmatched by far. Definitely worth the price. I also purchased the keyboard and mouse travel case for when I go into the office.<br/></span> </div><div class=\"a-expander-header a-expander-partial-collapse-header\"><div class=\"a-expander-content-fade\"></div><a href=\"javascript:void(0)\" data-hook=\"expand-collapse-read-more-less\" aria-label=\"Read more of this review\" aria-expanded=\"false\" role=\"button\" data-action=\"a-expander-toggle\" class=\"a-declarative\" data-a-expander-toggle=\"{"allowLinkDefault":true, "expand_prompt":"Read more", "collapse_prompt":"Read less"}\"><i class=\"a-icon a-icon-extender-expand\"></i><span class=\"a-expander-prompt\">Read more</span></a></div></div>",
"profile": {
"link": "https://www.amazon.com/gp/profile/amzn1.account.AGTBZ43FTDHYC2ZEIWKEMOFBHFIQ/ref=cm_cr_dp_d_gw_tr?ie=UTF8",
"name": "Chrissy",
"id": "AGTBZ43FTDHYC2ZEIWKEMOFBHFIQ"
},
"link": "https://www.amazon.com/gp/customer-reviews/R2JR9HJUY9MT6M/ref=cm_cr_dp_d_rvw_ttl?ie=UTF8",
"rating": "5.0",
"verified_purchase": true,
"body": "I was hesitant on buying this because of the price. I tested the mouse only at the store and loved the way it felt in my hand. The keyboard is smooth and the simplicity of the backlit keyboard is pleasing. I have issues with my wrists so I caved and bought it. BEST DECISION. This is literally the best wireless mouse and keyboard combo I own (and I own several). I love the quiet click of the mouse, the shape is perfect within my hand and eases the pain in my wrist. The pad that comes with it is a nice bonus. I’ve owned the plastic, the foam, the gel wrist rest and they are all bulky and uncomfortable to use. This one is nice and easy. My wrists are sitting uncomfortable over the rest while I type. It has a nice weight to it so this doesn’t slide around my larger mouse pad. The charging cables and light feature let you know when it’s charging and when it’s done. This does charge pretty fast using my PC. I do own a few off brand mouse and keyboard combos, but the quality in this Logitech brand is unmatched by far. Definitely worth the price. I also purchased the keyboard and mouse travel case for when I go into the office.",
"title": "Thee best wireless keyboard I’ve ever owned",
"helpful_votes": 4,
"is_global_review": true,
"vine_program": false,
"review_country": "USA",
"id": "R2JR9HJUY9MT6M"
},
{
"date": {
"raw": "Reviewed in the United States on May 9, 2025"
},
"body_html": "<div data-a-expander-name=\"review_text_read_more\" data-a-expander-collapsed-height=\"300\" class=\"a-expander-collapsed-height a-row a-expander-container a-expander-partial-collapse-container review-text-read-more-expander\" style=\"max-height:300px\"><div data-hook=\"review-collapsed\" data-expanded=\"false\" class=\"a-expander-content reviewText review-text-content a-expander-partial-collapse-content\"> <span>Great set. I didn't know that a keyboard could be so pleasant to type on. When I'm "not typing", the keyboard lets me know by flashing the backlight - a great convenience. The mouse is ergonomic, responsive and quiet, and I can set the shortcuts I like. The mouse pad turned out to be quite useful. I'm very pleased.<br/><br/>But why is a keyboard with a shorter Shift key sold in Europe? I had to import a normal version from the US - it's not cool and expensive.<br/></span> </div><div class=\"a-expander-header a-expander-partial-collapse-header\"><div class=\"a-expander-content-fade\"></div><a href=\"javascript:void(0)\" data-hook=\"expand-collapse-read-more-less\" aria-label=\"Read more of this review\" aria-expanded=\"false\" role=\"button\" data-action=\"a-expander-toggle\" class=\"a-declarative\" data-a-expander-toggle=\"{"allowLinkDefault":true, "expand_prompt":"Read more", "collapse_prompt":"Read less"}\"><i class=\"a-icon a-icon-extender-expand\"></i><span class=\"a-expander-prompt\">Read more</span></a></div></div>",
"profile": {
"link": "https://www.amazon.com/gp/profile/amzn1.account.AGJDDFJAR7FNDIJTFDD6ROVRLPSQ/ref=cm_cr_dp_d_gw_tr?ie=UTF8",
"name": "Kasia S.",
"id": "AGJDDFJAR7FNDIJTFDD6ROVRLPSQ"
},
"link": "https://www.amazon.com/gp/customer-reviews/RUAOFR3V714UA/ref=cm_cr_dp_d_rvw_ttl?ie=UTF8",
"rating": "4.0",
"verified_purchase": true,
"body": "Great set. I didn't know that a keyboard could be so pleasant to type on. When I'm \"not typing\", the keyboard lets me know by flashing the backlight - a great convenience. The mouse is ergonomic, responsive and quiet, and I can set the shortcuts I like. The mouse pad turned out to be quite useful. I'm very pleased.But why is a keyboard with a shorter Shift key sold in Europe? I had to import a normal version from the US - it's not cool and expensive.",
"title": "Great set. In the US they have normal Shift, not in Europe :(",
"helpful_votes": 0,
"is_global_review": true,
"vine_program": false,
"review_country": "USA",
"id": "RUAOFR3V714UA"
},
{
"date": {
"raw": "Reviewed in Brazil on November 19, 2023"
},
"body_html": "<script> (function() { P.when('cr-A', 'ready').execute(function(A) { if(typeof A.toggleExpanderAriaLabel === 'function') { A.toggleExpanderAriaLabel('review_text_read_more', 'Read more of this review', 'Read less of this review'); } }); })(); </script> <style> .review-text-read-more-expander:focus-visible { outline: 2px solid #2162a1; outline-offset: 2px; border-radius: 5px; } </style><div data-a-expander-name=\"review_text_read_more\" data-a-expander-collapsed-height=\"300\" class=\"a-expander-collapsed-height a-row a-expander-container a-expander-partial-collapse-container review-text-read-more-expander\" style=\"max-height:300px\"><div data-hook=\"review-collapsed\" data-expanded=\"false\" class=\"a-expander-content reviewText review-text-content a-expander-partial-collapse-content\"> <span class=\"cr-original-review-content\">Ótimo produto, customizável e responsivo.<br/></span><span class=\"cr-translated-review-content aok-hidden\"></span> </div><div class=\"a-expander-header a-expander-partial-collapse-header\"><div class=\"a-expander-content-fade\"></div><a href=\"javascript:void(0)\" data-hook=\"expand-collapse-read-more-less\" aria-label=\"Read more of this review\" aria-expanded=\"false\" role=\"button\" data-action=\"a-expander-toggle\" class=\"a-declarative\" data-a-expander-toggle=\"{"allowLinkDefault":true, "expand_prompt":"Read more", "collapse_prompt":"Read less"}\"><i class=\"a-icon a-icon-extender-expand\"></i><span class=\"a-expander-prompt\">Read more</span></a></div></div>",
"profile": {
"link": "",
"name": "Rafael Cortes",
"id": ""
},
"link": "https://www.amazon.com/gp/help/customer/display.html/ref=cm_cr_dp_d_rvw_avp?nodeId=G8UYX7LALQC8V9KA",
"rating": "5.0",
"verified_purchase": true,
"body": "Ótimo produto, customizável e responsivo.",
"title": "Excelente para trabalho/produtividade",
"helpful_votes": 0,
"is_global_review": false,
"vine_program": false,
"review_country": "USA",
"id": "R1LDIJOSLMKVL6"
},
{
"date": {
"raw": "Reviewed in the United Arab Emirates on September 9, 2024"
},
"body_html": "<div data-a-expander-name=\"review_text_read_more\" data-a-expander-collapsed-height=\"300\" class=\"a-expander-collapsed-height a-row a-expander-container a-expander-partial-collapse-container review-text-read-more-expander\" style=\"max-height:300px\"><div data-hook=\"review-collapsed\" data-expanded=\"false\" class=\"a-expander-content reviewText review-text-content a-expander-partial-collapse-content\"> <span>You should buy it, i use it for Design and gaming.<br/>It's worth every penny.<br/></span> </div><div class=\"a-expander-header a-expander-partial-collapse-header\"><div class=\"a-expander-content-fade\"></div><a href=\"javascript:void(0)\" data-hook=\"expand-collapse-read-more-less\" aria-label=\"Read more of this review\" aria-expanded=\"false\" role=\"button\" data-action=\"a-expander-toggle\" class=\"a-declarative\" data-a-expander-toggle=\"{"allowLinkDefault":true, "expand_prompt":"Read more", "collapse_prompt":"Read less"}\"><i class=\"a-icon a-icon-extender-expand\"></i><span class=\"a-expander-prompt\">Read more</span></a></div></div>",
"profile": {
"link": "",
"name": "Issa Alsalamin",
"id": ""
},
"link": "https://www.amazon.com/gp/help/customer/display.html/ref=cm_cr_dp_d_rvw_avp?nodeId=G8UYX7LALQC8V9KA",
"rating": "5.0",
"verified_purchase": true,
"body": "You should buy it, i use it for Design and gaming.It's worth every penny.",
"title": "The best Mouse ever",
"helpful_votes": 0,
"is_global_review": false,
"vine_program": false,
"review_country": "USA",
"id": "R1Z2KOWBE3I1LI"
},
{
"date": {
"raw": "Reviewed in Mexico on November 5, 2024"
},
"body_html": "<div data-a-expander-name=\"review_text_read_more\" data-a-expander-collapsed-height=\"300\" class=\"a-expander-collapsed-height a-row a-expander-container a-expander-partial-collapse-container review-text-read-more-expander\" style=\"max-height:300px\"><div data-hook=\"review-collapsed\" data-expanded=\"false\" class=\"a-expander-content reviewText review-text-content a-expander-partial-collapse-content\"> <span class=\"cr-original-review-content\">Me encanta la funcionalidad que tiene, lo practico y comodo, aunque yo tengo manos pequenias aveces me llega a cansar, es cuestion de acostumbrarme porque solia usar mouse pequenio. Pero en general me encanto!<br/></span><span class=\"cr-translated-review-content aok-hidden\"></span> </div><div class=\"a-expander-header a-expander-partial-collapse-header\"><div class=\"a-expander-content-fade\"></div><a href=\"javascript:void(0)\" data-hook=\"expand-collapse-read-more-less\" aria-label=\"Read more of this review\" aria-expanded=\"false\" role=\"button\" data-action=\"a-expander-toggle\" class=\"a-declarative\" data-a-expander-toggle=\"{"allowLinkDefault":true, "expand_prompt":"Read more", "collapse_prompt":"Read less"}\"><i class=\"a-icon a-icon-extender-expand\"></i><span class=\"a-expander-prompt\">Read more</span></a></div></div>",
"profile": {
"link": "",
"name": "Emmaj1653",
"id": ""
},
"link": "https://www.amazon.com/gp/help/customer/display.html/ref=cm_cr_dp_d_rvw_avp?nodeId=G8UYX7LALQC8V9KA",
"rating": "5.0",
"verified_purchase": true,
"body": "Me encanta la funcionalidad que tiene, lo practico y comodo, aunque yo tengo manos pequenias aveces me llega a cansar, es cuestion de acostumbrarme porque solia usar mouse pequenio. Pero en general me encanto!",
"title": "Comodo",
"helpful_votes": 0,
"is_global_review": false,
"vine_program": false,
"review_country": "USA",
"id": "R2G6BDDOQ3N9JH"
},
{
"date": {
"raw": "Reviewed in Canada on January 18, 2025"
},
"body_html": "<div data-a-expander-name=\"review_text_read_more\" data-a-expander-collapsed-height=\"300\" class=\"a-expander-collapsed-height a-row a-expander-container a-expander-partial-collapse-container review-text-read-more-expander\" style=\"max-height:300px\"><div data-hook=\"review-collapsed\" data-expanded=\"false\" class=\"a-expander-content reviewText review-text-content a-expander-partial-collapse-content\"> <span>The most comfortable mouse I’ve used! I immediately noticed a big improvement over my M705. It fits the hand really well and encourages the wrist to rest more naturally.<br/><br/>The magnetic scroll wheel is great and feels natural. The side buttons are positioned well and I love the gesture button.<br/><br/>The buttons are quiet but still have enough of a click feel, which I like.<br/><br/>Mouse movement/sensitivity is good, but not as good the gaming mice I have used. But it’s more than enough for productivity, which is what it’s designed for and what I use it for. That said it would be good enough for most people in gaming.<br/></span> </div><div class=\"a-expander-header a-expander-partial-collapse-header\"><div class=\"a-expander-content-fade\"></div><a href=\"javascript:void(0)\" data-hook=\"expand-collapse-read-more-less\" aria-label=\"Read more of this review\" aria-expanded=\"false\" role=\"button\" data-action=\"a-expander-toggle\" class=\"a-declarative\" data-a-expander-toggle=\"{"allowLinkDefault":true, "expand_prompt":"Read more", "collapse_prompt":"Read less"}\"><i class=\"a-icon a-icon-extender-expand\"></i><span class=\"a-expander-prompt\">Read more</span></a></div></div>",
"profile": {
"link": "",
"name": "JR",
"id": ""
},
"link": "https://www.amazon.com/gp/help/customer/display.html/ref=cm_cr_dp_d_rvw_avp?nodeId=G8UYX7LALQC8V9KA",
"rating": "5.0",
"verified_purchase": true,
"body": "The most comfortable mouse I’ve used! I immediately noticed a big improvement over my M705. It fits the hand really well and encourages the wrist to rest more naturally.The magnetic scroll wheel is great and feels natural. The side buttons are positioned well and I love the gesture button.The buttons are quiet but still have enough of a click feel, which I like.Mouse movement/sensitivity is good, but not as good the gaming mice I have used. But it’s more than enough for productivity, which is what it’s designed for and what I use it for. That said it would be good enough for most people in gaming.",
"title": "Super comfortable",
"helpful_votes": 0,
"is_global_review": false,
"vine_program": false,
"review_country": "USA",
"id": "R2GFAWJ72LA222"
},
{
"date": {
"raw": "Reviewed in the United Arab Emirates on May 22, 2025"
},
"body_html": "<div data-a-expander-name=\"review_text_read_more\" data-a-expander-collapsed-height=\"300\" class=\"a-expander-collapsed-height a-row a-expander-container a-expander-partial-collapse-container review-text-read-more-expander\" style=\"max-height:300px\"><div data-hook=\"review-collapsed\" data-expanded=\"false\" class=\"a-expander-content reviewText review-text-content a-expander-partial-collapse-content\"> <span>Best mouse i have used, great for office use as its quiet and has a great scroll wheel.<br/></span> </div><div class=\"a-expander-header a-expander-partial-collapse-header\"><div class=\"a-expander-content-fade\"></div><a href=\"javascript:void(0)\" data-hook=\"expand-collapse-read-more-less\" aria-label=\"Read more of this review\" aria-expanded=\"false\" role=\"button\" data-action=\"a-expander-toggle\" class=\"a-declarative\" data-a-expander-toggle=\"{"allowLinkDefault":true, "expand_prompt":"Read more", "collapse_prompt":"Read less"}\"><i class=\"a-icon a-icon-extender-expand\"></i><span class=\"a-expander-prompt\">Read more</span></a></div></div>",
"profile": {
"link": "",
"name": "N75",
"id": ""
},
"link": "https://www.amazon.com/gp/help/customer/display.html/ref=cm_cr_dp_d_rvw_avp?nodeId=G8UYX7LALQC8V9KA",
"rating": "5.0",
"verified_purchase": true,
"body": "Best mouse i have used, great for office use as its quiet and has a great scroll wheel.",
"title": "Rechargeable",
"helpful_votes": 0,
"is_global_review": false,
"vine_program": false,
"review_country": "USA",
"id": "R7AH6O37906P4"
}
],
"shipping_weight": "5 ounces",
"additional_details_flat": "Brand LogitechSeries MX Master 3S BEItem model number 910-007499Hardware Platform PC, Linux, MacItem Weight 5 ouncesProduct Dimensions 4.92 x 3.32 x 0.1 inchesItem Dimensions LxWxH 4.92 x 3.32 x 0.1 inchesColor GraphitePower Source Battery PoweredManufacturer LogitechASIN B0FB21526XDate First Available July 1, 2025",
"categories_flat": "Electronics > Computers & Accessories > Computer Accessories & Peripherals > Keyboards, Mice & Accessories > Mice",
"color": "Graphite",
"title_excluding_variant_name": "Logitech MX Master 3S Bluetooth Edition Wireless Mouse, No USB Receiver - Ultra-Fast Scrolling, Ergo, 8K DPI, Track on Glass, Quiet Clicks, Works with Apple Mac, Windows PC, Linux, Chrome - Graphite",
"main_image": {
"link": "61oEwT0WpSL"
},
"link": "https://www.amazon.com/Logitech-Master-Bluetooth-Wireless-Receiver/dp/B0FB21526X",
"description": "Logitech MX Master 3S Performance Wireless Mouse Logitech MX Master 3S Bluetooth Edition – productivity and precision mouse. With Quiet Clicks(2) and 8K DPI any-surface tracking for more feel and performance. Product details: Weight: 4.97 oz (141 g) Dimensions: 2 x 3.3 x 4.9 in (51 x 84.3 x 124.9 mm) Compatible with Windows, macOS, Linux, Chrome OS, iPadOS, Android operating systems (8) Rechargeable Li-Po (500 mAh) battery Sensor technology: Darkfield high precision Buttons: 7 buttons (Left/Right-click, Back/Forward, App-Switch, Wheel mode-shift, Middle click), Scroll Wheel, Thumbwheel, Gesture button Wireless operating distance: 33 ft (10 m) (9) Footnotes: (1) 4 mm minimum glass thickness (2) Compared to MX Master 3, MX Master 3S has 90% less Sound Power Level left and right click, measured at 1m (3) Compared to regular Logitech mouse without an electromagnetic scroll wheel (4) Compared to Logitech Master 2S mouse with Logitech Options installed and Smooth scrolling enabled (5) Requires Logi Options+ software, available for Windows and macOS (6) Logi Bolt USB receiver not included. Not compatible with other Logi USB receivers. (7) Battery life may vary based on user and computing conditions. (8) Device basic functions will be supported without software for operating systems other than Windows and macOS (9) Wireless range may vary depending on operating environment and computer setup (10) Excludes plastic in printed wiring assembly (PWA), receiver, wire, FFC cable, and packaging.",
"title": "Logitech MX Master 3S Bluetooth Edition Wireless Mouse, No USB Receiver - Ultra-Fast Scrolling, Ergo, 8K DPI, Track on Glass, Quiet Clicks, Works with Apple Mac, Windows PC, Linux, Chrome - Graphite",
"bestsellers_rank": [
{
"link": "https://www.amazon.com/gp/bestsellers/pc/11036491/ref=pd_zg_hrsr_pc",
"rank": 128,
"category": "Computer Mice"
}
],
"similar_to_consider": {
"image": "https://m.media-amazon.com/images/I/61OkuiCWbDL._SS100_.jpg",
"ratings_total": 11925,
"price": {
"symbol": "$",
"currency": "USD"
},
"link": "/dp/B09J1TB35S/ref=vp_d_cpf-substitute-widget_pd?_encoding=UTF8&pf_rd_p=36830697-9a0f-4e73-abfa-25ba9c698528&pf_rd_r=MJQS624QAY73KXM3YEAE&pd_rd_wg=w9h1X&pd_rd_i=B09J1TB35S&pd_rd_w=sbnOa&content-id=amzn1.sym.36830697-9a0f-4e73-abfa-25ba9c698528&pd_rd_r=c5f1113c-2251-4a48-8b76-820e90ef3241&psc=1",
"rating": "4.5",
"asin": "B09J1TB35S",
"title": "Logitech Lift Vertical Ergonomic Mouse, Wireless Bluetooth or USB Receiver, Quiet Clicks, 4 Buttons, Right Hand Wireless Mouse, Windows/macOS/iPadOS, Laptop, PC - Graphite",
"is_prime": true
},
"manufacturer": "Logitech",
"whats_in_the_box": [
"Logitech MX Master 3S Bluetooth Mouse",
"User Documentation"
],
"feature_bullets_flat": "Logitech MX Master 3S Bluetooth Edition is a Bluetooth only mouse, and does not come with any USB receiver / adapter or charging cable.8K DPI Any-surface tracking: Use MX Master 3S cordless computer mouse to work on any surface - even glass (1) - with an 8000 DPI sensor with customizable sensitivity.Quiet Clicks: MX Master 3S Bluetooth mouse with Quiet Clicks - offering the same satisfying feel but with 90% less click noise (2).Magspeed scrolling: A computer mouse with remarkable speed, precision, and near silence - MagSpeed scrolling is 90% faster (3), 87% more precise (4), and ultra quiet..Ergonomic design: Work comfortably with a precision mouse featuring a silhouette crafted for a more natural wrist posture and optimally placed thumb controls.Countless Customizations: Customize buttons and optimize your workflow with App specific profiles in the Logi Options+ app (5).FLOW cross-computer control: Work seamlessly on multiple computers or laptops, and transfer text, images, and files – between Windows & macOS (5)",
"first_available": {
"utc": "2025-07-01T00:00:00Z",
"raw": "July 1, 2025"
},
"specifications_flat": "Brand: Logitech.Color: Graphite.Connectivity Technology: Bluetooth.Special Feature: Wireless, Programmable Buttons, Portable, Soundless, Rechargeable.Movement Detection Technology: Optical.Brand: Logitech.Series: MX Master 3S BE.Item model number: 910-007499.Hardware Platform: PC, Linux, Mac.Item Weight: 5 ounces.Product Dimensions: 4.92 x 3.32 x 0.1 inches.Item Dimensions LxWxH: 4.92 x 3.32 x 0.1 inches.Color: Graphite.Power Source: Battery Powered.Manufacturer: Logitech.ASIN: B0FB21526X.Date First Available: July 1, 2025.Customer Reviews: 4.5 out of 5 stars.Best Sellers Rank: .",
"videos_count": 7,
"categories": [
{
"category_id": "172282",
"link": "/electronics-store/b/ref=dp_bc_1?ie=UTF8&node=172282",
"name": "Electronics"
},
{
"category_id": "541966",
"link": "/computer-pc-hardware-accessories-add-ons/b/ref=dp_bc_2?ie=UTF8&node=541966",
"name": "Computers & Accessories"
},
{
"category_id": "172456",
"link": "/Computer-Accessories-Supplies/b/ref=dp_bc_3?ie=UTF8&node=172456",
"name": "Computer Accessories & Peripherals"
},
{
"category_id": "11548956011",
"link": "/Computer-Keyboards-Mice-Accessories/b/ref=dp_bc_4?ie=UTF8&node=11548956011",
"name": "Keyboards, Mice & Accessories"
},
{
"category_id": "11036491",
"link": "/Mice-Keyboards-Computer-Add-Ons-Computers/b/ref=dp_bc_5?ie=UTF8&node=11036491",
"name": "Mice"
}
],
"model_number": "910-007499",
"sub_title": {
"link": "https://www.amazon.com/stores/Logitech/page/01EFDE77-7D1A-41D7-9EEA-7C2FA22AB12F?lp_asin=B0FB21526X&ref_=ast_bln&store_ref=bl_ast_dp_brandLogo_sto",
"text": "Visit the Logitech Store"
},
"search_alias": {
"title": "Electronics",
"value": "electronics"
},
"images_flat": "https://m.media-amazon.com/images/I/31sRedU3E1L._AC_.jpg,https://m.media-amazon.com/images/I/416IaGz6e5L._AC_.jpg,https://m.media-amazon.com/images/I/41ux-fVYV+L._AC_.jpg,https://m.media-amazon.com/images/I/41hq-ooV5lL._AC_.jpg,https://m.media-amazon.com/images/I/41w2fxguEEL._AC_.jpg,https://m.media-amazon.com/images/I/41bFpAlOHHL._AC_.jpg,https://m.media-amazon.com/images/I/51YOk6zMATL._AC_.jpg,https://m.media-amazon.com/images/I/518-J+xFFlL._AC_.jpg,https://m.media-amazon.com/images/I/5107vEj5zTL._AC_.jpg,https://m.media-amazon.com/images/I/31kF-q1gbLL._AC_.jpg",
"asin": "B0FB21526X",
"attributes": [
{
"name": "Brand",
"value": "Logitech"
},
{
"name": "Color",
"value": "Graphite"
},
{
"name": "Connectivity Technology",
"value": "Bluetooth"
},
{
"name": "Special Feature",
"value": "Wireless, Programmable Buttons, Portable, Soundless, Rechargeable"
},
{
"name": "Movement Detection Technology",
"value": "Optical"
}
],
"buybox_winner": {
"condition": {
"is_new": false
},
"shipping": {
"raw": "FREE"
},
"price": {
"symbol": "$",
"raw": "$99.99",
"currency": "USD",
"value": "99.99"
},
"is_amazon_fresh": false,
"seller_type": {
"fbm": true,
"is_sold_by_third_party": true,
"sba": false,
"fba": false,
"is_fulfilled_by_amazon": false,
"is_fulfilled_by_third_party": true,
"is_sold_by_amazon": false,
"type": "FBM"
},
"availability": {
"min_quantity": 20,
"real_count": false,
"raw": "In Stock"
},
"fulfillment": {
"standard_delivery": {
"date": "Sunday, August 10",
"raw": "FREE"
},
"fastest_delivery": {
"date": "Today 2 PM - 6 PM",
"raw": "FREE"
}
},
"maximum_order_quantity": {
"hard_maximum": true,
"value": 30
},
"is_prime": false,
"offer_id": "y0lFoC1Nx7N6pgnXkB0DvVWfnSH0chCqOQTmZ%2BbWQK66f8gw4Q2ueJmrEFTuHvFYEyBYAtEunBaMCWid4KbhytX9BaMSxMut7tNiQuYDoDLbJ0j%2B3m6MRJMB9LN%2BB2hl6UNedGafWQiwF831i1CZ2g%3D%3D"
},
"protection_plans": [
{
"price": {
"symbol": "",
"raw": "$13.49",
"currency": "USD",
"value": "13.49"
},
"asin": "B07NTRRGKS",
"title": "3-Year Protection Plan"
},
{
"price": {
"symbol": "",
"raw": "$17.99",
"currency": "USD",
"value": "17.99"
},
"asin": "B07Q478Y95",
"title": "4-Year Protection Plan"
},
{
"price": {
"symbol": "",
"raw": "$16.99/month",
"currency": "USD",
"value": "16.99"
},
"asin": "B07RZ3LSHM",
"title": "Complete Protect: One plan covers all eligible past and future purchases"
}
],
"not_match": [
"requires_business_account",
"authors",
"series",
"format",
"promotions",
"promotions_feature",
"parent_asin",
"gtin",
"add_an_accessory",
"documents",
"sell_on_amazon",
"audible_sample",
"proposition_65_warning",
"size_guide_html",
"energy_efficiency",
"rich_product_description",
"has_coupon",
"coupon_text",
"book_description",
"editorial_reviews",
"editorial_reviews_flat",
"runtime",
"has_size_guide",
"videos_additional",
"bundles",
"bundle_contents",
"publisher",
"is_collection",
"collection_children",
"collection_size",
"release_date",
"language",
"material",
"recommended_age",
"important_information",
"more_buying_choices",
"frequently_bought_together",
"compare_with_similar",
"amazons_choice",
"bestseller_badge",
"kindle_unlimited",
"climate_pledge_friendly",
"request_invite"
],
"dimensions": "4.92 x 3.32 x 0.1 inches"
},
"request_info": {
"status_code": 200,
"address": {
"zipCode": [
"19805"
],
"country_code": null,
"city": null,
"district": null,
"address_backup_id": 0
},
"error_details": [],
"success": true,
"id": "2a512daa-6013-46fd-b053-b54caaa37f43"
}
},
"status": "success"
}
}
All requests require a valid api-key. You can retrieve your API key from your EasyParser Playground after signing up and logging in.

🚀Ready to Dive In?
You're now equipped with the essentials to start integrating EasyParser into your project. Whether you're building real-time product lookups, automating bulk data collection, or running large-scale monitoring workflows — EasyParser gives you the flexibility and scalability to get the job done.
Integration Flow Overview
Here's a typical workflow to help you understand how to integrate EasyParser into your system efficiently:
🔐 Get Your API Key
Sign in to EasyParser Playground. Go To The Plan Page.
Copy your API key for authentication.
📤 Send Your First Request
Decide whether to use Real-Time or Bulk API.
Choose the operation (e.g., SEARCH, DETAIL, OFFER, PRODUCT_SEARCH)
📥 Receive and Process the Response
In Real-Time, you get the response immediately.
In Bulk, you’ll receive a callback with the response once processing is complete.
📊 Use the Data
For Real Time;
Once you send a request via the Real-Time API, you receive the parsed data instantly in the response. This structure allows you to:
Display product details or search results immediately in your application
Feed offer and pricing data into pricing intelligence or inventory systems
Trigger workflows based on live data (e.g., price drop alerts, product availability checks)
Directly integrate parsed results into your UI or backend services
No need to track IDs or query again — the data you need is right there in the initial response.
For Bulk;
Bulk processing follows an asynchronous workflow, where data retrieval is split into stages:
After sending a Bulk Service Request, you receive task IDs for each operation from the Bulk Service Response.
Use these IDs to query the Data Service , which returns the parsed results once processing is complete.
In the Data Service Response, you’ll find structured, operation-specific content — ready to be used in:
Analytics dashboards
Large-scale reporting systems
Periodic data collection jobs
Listing creation or enrichment workflows
Data Availability Reminder
The results retrieved via the Data Service are temporarily stored and can be accessed for up to a maximum of 24 hours. However, please note that in some cases, data may be removed earlier due to system operations or storage limits. For this reason, we recommend fetching and storing your results as soon as they become available. Keeping a local copy will help prevent any potential data loss.
Last updated