Data Service Response

🧩 What is the Data Response?

This section explains the structure of the response sent to your webhook after a successful bulk request is processed. Every Bulk Request you send to bulk.easyparser.com will return its results asynchronously to your specified callback_url.

While the structure of the response remains consistent, the content inside may differ depending on the operation type — e.g., SEARCH, DETAIL, OFFER, PRODUCT_SEARCH, and others.

📌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.

Kindly be aware that we are unable to guarantee result availability beyond this window, and we may not be able to offer refunds or credit restorations for data that has expired.

🔍 Understanding the Response

A typical webhook response includes the following top-level fields:

Field
Type
Description

success

Boolean

Indicates whether the request was successful.

data

Object

Contains the core payload and result content.

📦 data Object

Field
Type
Description

callback_url

String

The webhook URL to which the response is sent.

payload

Object

The original payload you submitted (e.g., ASINs or a search URL).

domain

String

Domain of the requested marketplace (e.g., .com, .de, .co.uk).

id

UUID

Unique identifier for this query.

operation

String

The type of operation executed (SEARCH, DETAIL, OFFER, etc.).

platform

String

Target platform code (e.g., AMZ).

status

String

Overall processing status (success, failed, etc.).

json_result

Object

Parsed result and metadata for the completed request.

🧩 Breakdown of json_result Object

This object holds the parsed response for the given operation and useful metadata about the process.

📄 result

Contains the raw extracted data based on the operation type (e.g., SEARCH, DETAIL, etc.). This is the core part users will consume. The structure of this section varies by operation. For example:

  • SEARCH: List of product search results

  • DETAIL: Detailed product information

  • OFFER: Offers and seller data

  • PRODUCT SEARCH: Contextual search results based on product keywords

...and more

📌 For a quick overview of each operation’s result structure, including visual examples and deep links to detailed documentation, please refer to the Getting Started page.

📊 request_metadata

Provides contextual metadata about the request process — such as pagination info, processing time (ms), and result counts. Especially useful for multi-page or list-based operations like SEARCH.

🧾 request_info

Technical details of the request, including HTTP status code, regional address (e.g., ZIP codes), any errors, and internal tracking IDs. Helpful for debugging or validating result integrity.

Field
Type
Description

status_code

Int

HTTP status code returned from the fetch process

address

Object

Shipping ZIP codes or location information (if applicable)

error_details

Array

List of any errors encountered during parsing

success

Boolean

Indicates whether the result was parsed successfully

id

UUID

Same query ID for tracking and re-fetching purposes

👉Example JSON Output

The following response is a sample result retrieved by making a Data Service Request using the id returned from a previous Bulk Service Request.

Please note that the structure of the json_result.result field may vary depending on the operation type (e.g., SEARCH, DETAIL, OFFER, PRODUCT_SEARCH, etc.). This portion contains the raw parsed data specific to the operation, while other fields such as request_metadata and request_info provide contextual and diagnostic information.

Example DETAIL Operation Response
{
    "success": true,
    "data": {
        "callback_url": "https://example.com/webhook",
        "payload": {
            "asin": "B09HM94VDS"
        },
        "domain": ".com",
        "id": "123a6027-b29c-4d90-930f-65522b0b6e69",
        "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,Wireless,Mouse,Standard,Edition,with,Logi,Bolt,USB,Receiver,,Ultra-fast,Scrolling,,Ergo,,8K,DPI,,Track,on,Glass,,Quiet,Clicks,,USB-C,,Bluetooth,,Windows,,Linux,,Chrome,-,Graphite",
                "delivered_to": "Wilmington 19805‌",
                "documents": [
                    {
                        "link": "https://m.media-amazon.com/images/I/81drbZglzQL.pdf",
                        "name": "User Guide (PDF)"
                    }
                ],
                "bought_activity": {
                    "symbol": "K",
                    "period": "past month",
                    "raw": "10K+ bought in past month",
                    "value": 10000
                },
                "rating": "4.5",
                "feature_bullets_count": 7,
                "variants": [
                    {
                        "link": "https://www.amazon.com/dp/B09HM94VDS?th=1&psc=1",
                        "asin": "B09HM94VDS",
                        "title": "Graphite Mouse",
                        "is_current_product": true,
                        "dimensions": [
                            {
                                "name": "Color",
                                "value": "Graphite"
                            },
                            {
                                "name": "Style",
                                "value": "Mouse"
                            }
                        ]
                    },
                    {
                        "link": "https://www.amazon.com/dp/B09HMKFDXC?th=1&psc=1",
                        "asin": "B09HMKFDXC",
                        "title": "Pale Grey Mouse",
                        "is_current_product": false,
                        "dimensions": [
                            {
                                "name": "Color",
                                "value": "Pale Grey"
                            },
                            {
                                "name": "Style",
                                "value": "Mouse"
                            }
                        ]
                    }
                ],
                "specifications": [
                    {
                        "name": "Brand",
                        "value": "Logitech"
                    },
                    {
                        "name": "Color",
                        "value": "Graphite"
                    },
                    {
                        "name": "Connectivity Technology",
                        "value": "Wi-Fi"
                    },
                    {
                        "name": "Special Feature",
                        "value": "Wireless, Touch Scroll, Ergonomic Design, Rechargeable"
                    },
                    {
                        "name": "Movement Detection Technology",
                        "value": "Optical"
                    },
                    {
                        "name": "Standing screen display size",
                        "value": "7 Inches"
                    },
                    {
                        "name": "Average Battery Life (in hours)",
                        "value": "70 days"
                    },
                    {
                        "name": "Brand",
                        "value": "Logitech"
                    },
                    {
                        "name": "Series",
                        "value": "MX Master 3S"
                    },
                    {
                        "name": "Item model number",
                        "value": "910-006557"
                    },
                    {
                        "name": "Hardware Platform",
                        "value": "PC, Mac"
                    },
                    {
                        "name": "Operating System",
                        "value": "Multi OS"
                    },
                    {
                        "name": "Item Weight",
                        "value": "5 ounces"
                    },
                    {
                        "name": "Product Dimensions",
                        "value": "4.92 x 3.32 x 0.04 inches"
                    },
                    {
                        "name": "Item Dimensions  LxWxH",
                        "value": "4.92 x 3.32 x 0.04 inches"
                    },
                    {
                        "name": "Color",
                        "value": "Graphite"
                    },
                    {
                        "name": "Power Source",
                        "value": "Battery Powered"
                    },
                    {
                        "name": "Batteries",
                        "value": "1 Lithium Polymer batteries required. (included)"
                    },
                    {
                        "name": "Manufacturer",
                        "value": "Logitech"
                    },
                    {
                        "name": "ASIN",
                        "value": "B09HM94VDS"
                    },
                    {
                        "name": "Country of Origin",
                        "value": "China"
                    },
                    {
                        "name": "Is Discontinued By Manufacturer",
                        "value": "No"
                    },
                    {
                        "name": "Date First Available",
                        "value": "June 26, 2022"
                    },
                    {
                        "name": "Customer Reviews",
                        "value": "4.5 out of 5 stars"
                    },
                    {
                        "name": "Best Sellers Rank",
                        "value": ""
                    }
                ],
                "bestsellers_rank_flat": "Category: Computer Mice | Rank: 16",
                "variant_asins_flat": "B09HM94VDS,B09HMKFDXC",
                "additional_details": [
                    {
                        "Standing screen display size": "7 Inches"
                    },
                    {
                        "Average Battery Life (in hours)": "70 days"
                    }
                ],
                "brand": "Logitech",
                "feature_bullets": [
                    "Logitech MX Master 3S Standard Edition comes with a Logi Bolt USB receiver (dongle), and a USB-C charging cable (USB-A to USB-C)",
                    "Install free Logi Options+ App to enable Logi AI Prompt Builder for your Logitech wireless mouse and keyboard setups",
                    "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.",
                    "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/31vwylJ4PgL._AC_.jpg",
                        "variant": "MAIN"
                    },
                    {
                        "link": "https://m.media-amazon.com/images/I/41wcAOL4XwL._AC_.jpg",
                        "variant": "PT01"
                    },
                    {
                        "link": "https://m.media-amazon.com/images/I/41r-D99FOyL._AC_.jpg",
                        "variant": "PT02"
                    },
                    {
                        "link": "https://m.media-amazon.com/images/I/31P5MKZ6QUL._AC_.jpg",
                        "variant": "PT03"
                    },
                    {
                        "link": "https://m.media-amazon.com/images/I/41AlXI+H5dL._AC_.jpg",
                        "variant": "PT04"
                    },
                    {
                        "link": "https://m.media-amazon.com/images/I/41APFOAVgBL._AC_.jpg",
                        "variant": "PT05"
                    },
                    {
                        "link": "https://m.media-amazon.com/images/I/41pKckJsRcL._AC_.jpg",
                        "variant": "PT06"
                    },
                    {
                        "link": "https://m.media-amazon.com/images/I/51X-K5QRXeL._AC_.jpg",
                        "variant": "PT07"
                    },
                    {
                        "link": "https://m.media-amazon.com/images/I/417iBGzsHWL._AC_.jpg",
                        "variant": "PT08"
                    },
                    {
                        "link": "https://m.media-amazon.com/images/I/41CqLF6ySFL._AC_.jpg",
                        "variant": "PT09"
                    }
                ],
                "images_count": 10,
                "weight": "5 ounces",
                "rating_breakdown": {
                    "one_star": {
                        "percentage": 6,
                        "count": 608
                    },
                    "four_star": {
                        "percentage": 8,
                        "count": 811
                    },
                    "five_star": {
                        "percentage": 79,
                        "count": 8008
                    },
                    "three_star": {
                        "percentage": 4,
                        "count": 405
                    },
                    "two_star": {
                        "percentage": 3,
                        "count": 304
                    }
                },
                "brand_store": {
                    "link": "https://www.amazon.com/stores/Logitech/page/01EFDE77-7D1A-41D7-9EEA-7C2FA22AB12F?is_byline_deeplink=true&deeplink=571C794C-A241-45FF-B867-54862A19D2D6&redirect_store_id=01EFDE77-7D1A-41D7-9EEA-7C2FA22AB12F&lp_asin=B09HM94VDS&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",
                    "Wireless",
                    "Mouse",
                    "Standard",
                    "Edition",
                    "with",
                    "Logi",
                    "Bolt",
                    "USB",
                    "Receiver,",
                    "Ultra-fast",
                    "Scrolling,",
                    "Ergo,",
                    "8K",
                    "DPI,",
                    "Track",
                    "on",
                    "Glass,",
                    "Quiet",
                    "Clicks,",
                    "USB-C,",
                    "Bluetooth,",
                    "Windows,",
                    "Linux,",
                    "Chrome",
                    "Graphite",
                    "Logitech MX Master 3S Wireless Mouse Standard Edition with Logi Bolt USB Receiver",
                    "Ultra-fast Scrolling",
                    "Ergo",
                    "8K DPI",
                    "Track on Glass",
                    "Quiet Clicks",
                    "USB-C",
                    "Bluetooth",
                    "Windows",
                    "Linux",
                    "Chrome - Graphite",
                    "Logitech MX Master 3S Wireless Mouse Standard Edition with Logi Bolt USB Receiver, Ultra-fast Scrolling, Ergo, 8K DPI, Track on Glass, Quiet Clicks, USB-C, Bluetooth, Windows, Linux, Chrome"
                ],
                "ratings_total": 10137,
                "top_reviews": [
                    {
                        "date": {
                            "raw": "Reviewed in the United States on July 15, 2025"
                        },
                        "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>To date the best feeling mouse I&#39;ve used. It&#39;s insanely good. Looks great, feels amazing in the hand, with perfect button placements. The  buttons are quiet but tactile, and the scroll works great, especially the infinite scroll wheel. Their software is also nice and polished, and the gestures are very easy to use. Honestly one of my favorite things that isn&#39;t even related to the mouse is their software adding a feature that shows you when you&#39;re using caps lock on screen. Honestly sold me on the whole experience. Absolutely 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=\"{&#34;allowLinkDefault&#34;:true, &#34;expand_prompt&#34;:&#34;Read more&#34;, &#34;collapse_prompt&#34;:&#34;Read less&#34;}\"><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.AEHGWZM54P5QCEHT23X3KDSB67GA/ref=cm_cr_dp_d_gw_tr?ie=UTF8",
                            "name": "Marvin Augustin",
                            "id": "AEHGWZM54P5QCEHT23X3KDSB67GA"
                        },
                        "link": "https://www.amazon.com/gp/customer-reviews/RLM47WESXAEXI/ref=cm_cr_dp_d_rvw_ttl?ie=UTF8",
                        "rating": "5.0",
                        "verified_purchase": true,
                        "body": "To date the best feeling mouse I've used. It's insanely good. Looks great, feels amazing in the hand, with perfect button placements. The  buttons are quiet but tactile, and the scroll works great, especially the infinite scroll wheel. Their software is also nice and polished, and the gestures are very easy to use. Honestly one of my favorite things that isn't even related to the mouse is their software adding a feature that shows you when you're using caps lock on screen. Honestly sold me on the whole experience. Absolutely love it.",
                        "title": "The perfect office mouse doesn't exi....",
                        "helpful_votes": 0,
                        "is_global_review": true,
                        "vine_program": false,
                        "review_country": "USA",
                        "id": "RLM47WESXAEXI"
                    },
                    {
                        "date": {
                            "raw": "Reviewed in the United States on May 13, 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>Take control of your digital workflow and elevate your productivity to new heights with the Logitech MX Master 3S Wireless Performance Mouse, a versatile and ergonomic mouse designed for professional users and power users alike. Engineered with precision tracking, customizable controls, and advanced connectivity options, this mouse offers unparalleled performance, comfort, and convenience for seamless navigation and multitasking. Discover the superior functionality and ergonomic design of the Logitech MX Master 3S and unlock your full potential in the digital realm.<br/><br/>Precision Tracking: The standout feature of the Logitech MX Master 3S is its precision tracking technology, which delivers ultra-fast and accurate cursor control on virtually any surface. Equipped with Logitech&#39;s Darkfield™ sensor, this mouse tracks flawlessly on glass and high-gloss surfaces, eliminating the need for a mouse pad and providing smooth and precise tracking in any environment. Whether you&#39;re working at your desk, on the go, or in a coffee shop, the Logitech MX Master 3S ensures precise cursor movement and effortless navigation for maximum productivity.<br/><br/>Customizable Controls: Tailor your mouse experience to suit your unique workflow with the Logitech MX Master 3S&#39;s customizable controls, which allow you to assign shortcuts, macros, and gestures to the mouse buttons for quick and easy access to your favorite commands and functions. With its advanced software suite and intuitive interface, this mouse enables you to personalize your settings, create custom profiles, and optimize your workflow for maximum efficiency. Whether you&#39;re navigating documents, editing photos, or controlling multimedia, the Logitech MX Master 3S puts powerful customization options at your fingertips.<br/><br/>Comfortable Ergonomic Design: Say goodbye to hand fatigue and discomfort with the Logitech MX Master 3S&#39;s ergonomic design, which provides a comfortable and natural grip for extended periods of use. Featuring a contoured shape, textured thumb rest, and sculpted buttons, this mouse fits comfortably in your hand and promotes a relaxed posture that reduces strain on your wrist and fingers. Whether you&#39;re working on a lengthy project or gaming for hours on end, the Logitech MX Master 3S ensures all-day comfort and support for uninterrupted productivity and enjoyment.<br/><br/>Dual Connectivity Options: Enjoy seamless connectivity and versatility with the Logitech MX Master 3S&#39;s dual connectivity options, which allow you to connect to multiple devices simultaneously via Bluetooth or the included USB receiver. With its advanced wireless technology, this mouse enables you to switch between devices with ease, whether you&#39;re working on your desktop, laptop, or tablet. Additionally, the mouse&#39;s Easy-Switch™ technology allows you to toggle between three devices at the touch of a button, providing convenient multi-device control for increased productivity and efficiency.<br/><br/>Long Battery Life: Stay powered up and productive for longer with the Logitech MX Master 3S&#39;s impressive battery life, which provides up to 70 days of usage on a single charge. With its energy-efficient design and fast charging capabilities, this mouse offers extended usage hours and minimal downtime, ensuring reliable performance when you need it most. Whether you&#39;re working from home, in the office, or on the road, the Logitech MX Master 3S keeps up with your busy schedule and delivers consistent performance for uninterrupted productivity.<br/><br/>The Logitech MX Master 3S Wireless Performance Mouse is a game-changer for users seeking precision, customization, comfort, and versatility in their mouse experience. With its precision tracking, customizable controls, ergonomic design, dual connectivity options, and long battery life, this mouse offers unmatched performance, convenience, and productivity for users of all levels. Upgrade to the Logitech MX Master 3S today and unleash your full potential with a mouse that&#39;s designed to help you work smarter, faster, and more efficiently.<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=\"{&#34;allowLinkDefault&#34;:true, &#34;expand_prompt&#34;:&#34;Read more&#34;, &#34;collapse_prompt&#34;:&#34;Read less&#34;}\"><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.AES37NKX6N2XPVWSVZTXQBDSTRRA/ref=cm_cr_dp_d_gw_tr?ie=UTF8",
                            "name": "KJ",
                            "id": "AES37NKX6N2XPVWSVZTXQBDSTRRA"
                        },
                        "link": "https://www.amazon.com/gp/customer-reviews/R21YQ7XGNH8MRK/ref=cm_cr_dp_d_rvw_ttl?ie=UTF8",
                        "rating": "5.0",
                        "verified_purchase": true,
                        "body": "Take control of your digital workflow and elevate your productivity to new heights with the Logitech MX Master 3S Wireless Performance Mouse, a versatile and ergonomic mouse designed for professional users and power users alike. Engineered with precision tracking, customizable controls, and advanced connectivity options, this mouse offers unparalleled performance, comfort, and convenience for seamless navigation and multitasking. Discover the superior functionality and ergonomic design of the Logitech MX Master 3S and unlock your full potential in the digital realm.Precision Tracking: The standout feature of the Logitech MX Master 3S is its precision tracking technology, which delivers ultra-fast and accurate cursor control on virtually any surface. Equipped with Logitech's Darkfield™ sensor, this mouse tracks flawlessly on glass and high-gloss surfaces, eliminating the need for a mouse pad and providing smooth and precise tracking in any environment. Whether you're working at your desk, on the go, or in a coffee shop, the Logitech MX Master 3S ensures precise cursor movement and effortless navigation for maximum productivity.Customizable Controls: Tailor your mouse experience to suit your unique workflow with the Logitech MX Master 3S's customizable controls, which allow you to assign shortcuts, macros, and gestures to the mouse buttons for quick and easy access to your favorite commands and functions. With its advanced software suite and intuitive interface, this mouse enables you to personalize your settings, create custom profiles, and optimize your workflow for maximum efficiency. Whether you're navigating documents, editing photos, or controlling multimedia, the Logitech MX Master 3S puts powerful customization options at your fingertips.Comfortable Ergonomic Design: Say goodbye to hand fatigue and discomfort with the Logitech MX Master 3S's ergonomic design, which provides a comfortable and natural grip for extended periods of use. Featuring a contoured shape, textured thumb rest, and sculpted buttons, this mouse fits comfortably in your hand and promotes a relaxed posture that reduces strain on your wrist and fingers. Whether you're working on a lengthy project or gaming for hours on end, the Logitech MX Master 3S ensures all-day comfort and support for uninterrupted productivity and enjoyment.Dual Connectivity Options: Enjoy seamless connectivity and versatility with the Logitech MX Master 3S's dual connectivity options, which allow you to connect to multiple devices simultaneously via Bluetooth or the included USB receiver. With its advanced wireless technology, this mouse enables you to switch between devices with ease, whether you're working on your desktop, laptop, or tablet. Additionally, the mouse's Easy-Switch™ technology allows you to toggle between three devices at the touch of a button, providing convenient multi-device control for increased productivity and efficiency.Long Battery Life: Stay powered up and productive for longer with the Logitech MX Master 3S's impressive battery life, which provides up to 70 days of usage on a single charge. With its energy-efficient design and fast charging capabilities, this mouse offers extended usage hours and minimal downtime, ensuring reliable performance when you need it most. Whether you're working from home, in the office, or on the road, the Logitech MX Master 3S keeps up with your busy schedule and delivers consistent performance for uninterrupted productivity.The Logitech MX Master 3S Wireless Performance Mouse is a game-changer for users seeking precision, customization, comfort, and versatility in their mouse experience. With its precision tracking, customizable controls, ergonomic design, dual connectivity options, and long battery life, this mouse offers unmatched performance, convenience, and productivity for users of all levels. Upgrade to the Logitech MX Master 3S today and unleash your full potential with a mouse that's designed to help you work smarter, faster, and more efficiently.",
                        "title": "Unleash Your Productivity",
                        "helpful_votes": 7,
                        "is_global_review": true,
                        "vine_program": false,
                        "review_country": "USA",
                        "id": "R21YQ7XGNH8MRK"
                    },
                    {
                        "date": {
                            "raw": "Reviewed in the United States on June 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>I was originally looking for a gaming mouse that could also handle home office duties, and decided to give the Logitech MX Master 3S a shot. I’m so glad I did—this mouse has completely exceeded my expectations.<br/><br/>This is hands-down the best mouse I’ve ever owned. The battery life is incredible, easily lasting for weeks on a single charge. The ergonomics are spot on, making long sessions comfortable whether I’m working or casually gaming. The customizable software lets you tweak everything to your exact needs, and the button placement is flawless—everything feels natural and is easy to reach.<br/><br/>I was a long-time gaming mouse user, but after experiencing the precision and comfort of the MX Master 3S, I’m never going back. An absolute must-have for anyone who needs versatility without compromising on performance.<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=\"{&#34;allowLinkDefault&#34;:true, &#34;expand_prompt&#34;:&#34;Read more&#34;, &#34;collapse_prompt&#34;:&#34;Read less&#34;}\"><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.AGNRH4L2LYVTBOGYAKM24DOFMG5A/ref=cm_cr_dp_d_gw_tr?ie=UTF8",
                            "name": "Dave V.Dave V.",
                            "id": "AGNRH4L2LYVTBOGYAKM24DOFMG5A"
                        },
                        "link": "https://www.amazon.com/gp/customer-reviews/R2OCU1L1K5HCP2/ref=cm_cr_dp_d_rvw_ttl?ie=UTF8",
                        "rating": "5.0",
                        "verified_purchase": true,
                        "body": "I was originally looking for a gaming mouse that could also handle home office duties, and decided to give the Logitech MX Master 3S a shot. I’m so glad I did—this mouse has completely exceeded my expectations.This is hands-down the best mouse I’ve ever owned. The battery life is incredible, easily lasting for weeks on a single charge. The ergonomics are spot on, making long sessions comfortable whether I’m working or casually gaming. The customizable software lets you tweak everything to your exact needs, and the button placement is flawless—everything feels natural and is easy to reach.I was a long-time gaming mouse user, but after experiencing the precision and comfort of the MX Master 3S, I’m never going back. An absolute must-have for anyone who needs versatility without compromising on performance.",
                        "title": "Best Mouse I’ve Ever Owned – Perfect for Work and Gaming",
                        "helpful_votes": 2,
                        "is_global_review": true,
                        "vine_program": false,
                        "review_country": "USA",
                        "id": "R2OCU1L1K5HCP2"
                    },
                    {
                        "date": {
                            "raw": "Reviewed in the United States on April 13, 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>Top tier mouse, only thing it&#39;s missing is a tilt function to the wheell. That would make it perfection.<br/><br/>The mouse is an off shape to what I&#39;m normally used to, but it fits like a glove in my medium sized hands. The buttons are all incredibly quiet and almost pleasant to hear at each click. The scroll wheel is fast and accurate. I love the thumb wheel which gives a native feeling to a horizonal scroll in an Excel sheet. The one that takes a little getting used to is a tiny little button to the left of where your thumb would fall. Now that it&#39;s part of my use, I love it and wouldn&#39;t want to go without.<br/><br/>Again, this is a top tier mouse, with the appropriate tiered price to go along with it, but it&#39;s well worth the cost of admission.<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=\"{&#34;allowLinkDefault&#34;:true, &#34;expand_prompt&#34;:&#34;Read more&#34;, &#34;collapse_prompt&#34;:&#34;Read less&#34;}\"><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.AFA3YDUTLBRMSGKMMCLTG56DUCLQ/ref=cm_cr_dp_d_gw_tr?ie=UTF8",
                            "name": "RM",
                            "id": "AFA3YDUTLBRMSGKMMCLTG56DUCLQ"
                        },
                        "link": "https://www.amazon.com/gp/customer-reviews/R1JV2RZ22V54B4/ref=cm_cr_dp_d_rvw_ttl?ie=UTF8",
                        "rating": "5.0",
                        "verified_purchase": true,
                        "body": "Top tier mouse, only thing it's missing is a tilt function to the wheell. That would make it perfection.The mouse is an off shape to what I'm normally used to, but it fits like a glove in my medium sized hands. The buttons are all incredibly quiet and almost pleasant to hear at each click. The scroll wheel is fast and accurate. I love the thumb wheel which gives a native feeling to a horizonal scroll in an Excel sheet. The one that takes a little getting used to is a tiny little button to the left of where your thumb would fall. Now that it's part of my use, I love it and wouldn't want to go without.Again, this is a top tier mouse, with the appropriate tiered price to go along with it, but it's well worth the cost of admission.",
                        "title": "Top tier quality, price and experience.",
                        "helpful_votes": 0,
                        "is_global_review": true,
                        "vine_program": false,
                        "review_country": "USA",
                        "id": "R1JV2RZ22V54B4"
                    },
                    {
                        "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=\"{&#34;allowLinkDefault&#34;:true, &#34;expand_prompt&#34;:&#34;Read more&#34;, &#34;collapse_prompt&#34;:&#34;Read less&#34;}\"><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 Canada on May 7, 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&#39;ve been using the Logitech MX Master 3S for a few weeks now, and it&#39;s hands down the best mouse I’ve ever used for video editing. The ergonomic design is perfect for long editing sessions—my hand never feels fatigued, even after hours in DaVinci Resolve.<br/><br/>The MagSpeed scroll wheel is incredibly smooth and precise, making timeline scrubbing effortless. I mapped the side buttons and horizontal scroll to various shortcuts and tools within Resolve, and it’s significantly sped up my workflow. The quiet clicks are a nice touch too, especially during late-night edits.<br/><br/>The customizable buttons with Logi Options+ let me create specific profiles for DaVinci Resolve, Premiere Pro, and general use—switching between them is seamless. The battery life is amazing, and the multi-device connectivity makes it easy to switch from my editing desktop to my laptop when I’m on the go.<br/><br/>If you&#39;re serious about editing and want to boost both comfort and efficiency, the MX Master 3S is 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=\"{&#34;allowLinkDefault&#34;:true, &#34;expand_prompt&#34;:&#34;Read more&#34;, &#34;collapse_prompt&#34;:&#34;Read less&#34;}\"><i class=\"a-icon a-icon-extender-expand\"></i><span class=\"a-expander-prompt\">Read more</span></a></div></div>",
                        "profile": {
                            "link": "",
                            "name": "BatCrusader 🦇BatCrusader 🦇",
                            "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": "I've been using the Logitech MX Master 3S for a few weeks now, and it's hands down the best mouse I’ve ever used for video editing. The ergonomic design is perfect for long editing sessions—my hand never feels fatigued, even after hours in DaVinci Resolve.The MagSpeed scroll wheel is incredibly smooth and precise, making timeline scrubbing effortless. I mapped the side buttons and horizontal scroll to various shortcuts and tools within Resolve, and it’s significantly sped up my workflow. The quiet clicks are a nice touch too, especially during late-night edits.The customizable buttons with Logi Options+ let me create specific profiles for DaVinci Resolve, Premiere Pro, and general use—switching between them is seamless. The battery life is amazing, and the multi-device connectivity makes it easy to switch from my editing desktop to my laptop when I’m on the go.If you're serious about editing and want to boost both comfort and efficiency, the MX Master 3S is worth every penny.",
                        "title": "An Absolute Game-Changer for Video Editing on DaVinci Resolve!",
                        "helpful_votes": 0,
                        "is_global_review": false,
                        "vine_program": false,
                        "review_country": "USA",
                        "id": "R1QMLMOET96YW"
                    },
                    {
                        "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&#39;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=\"{&#34;allowLinkDefault&#34;:true, &#34;expand_prompt&#34;:&#34;Read more&#34;, &#34;collapse_prompt&#34;:&#34;Read less&#34;}\"><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=\"{&#34;allowLinkDefault&#34;:true, &#34;expand_prompt&#34;:&#34;Read more&#34;, &#34;collapse_prompt&#34;:&#34;Read less&#34;}\"><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 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=\"{&#34;allowLinkDefault&#34;:true, &#34;expand_prompt&#34;:&#34;Read more&#34;, &#34;collapse_prompt&#34;:&#34;Read less&#34;}\"><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": "Standing screen display size 7 InchesAverage Battery Life (in hours) 70 days",
                "categories_flat": "Electronics > Computers & Accessories > Computer Accessories & Peripherals > Keyboards, Mice & Accessories > Mice",
                "color": "Graphite",
                "title_excluding_variant_name": "Logitech MX Master 3S Wireless Mouse Standard Edition with Logi Bolt USB Receiver, Ultra-fast Scrolling, Ergo, 8K DPI, Track on Glass, Quiet Clicks, USB-C, Bluetooth, Windows, Linux, Chrome - Graphite",
                "main_image": {
                    "link": "61+OT7FPABL"
                },
                "link": "https://www.amazon.com/Logitech-Wireless-Ultra-fast-Scrolling-Bluetooth/dp/B09HM94VDS",
                "description": "Logitech MX Master 3S Performance Wireless Mouse Introducing the Logitech MX Master 3S – a logitech bluetooth mouse remastered. Now with Quiet Clicks(2) and 8K DPI any-surface tracking, suitable for use as a Windows mouse and PC mouse, providing more feel and performance than ever before. This black wireless mouse is an ergonomic mouse wireless option featuring a rechargeable Li-Po (500 mAh) battery. 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 (8), the wireless mouse for pc is equipped with advanced Darkfield high precision sensor technology. With 7 buttons including Left/Right-click, Back/Forward, App-Switch, Wheel mode-shift, Middle click, it serves well as a bluetooth mouse for laptop. The Scroll Wheel, Thumbwheel, and Gesture button make it a more ergonomic mouse that users will appreciate. Operates wirelessly up to a distance of 33 ft (10 m)(9). Additional key features include wireless mouse bluetooth technology and multi-device compatibility, making it an apt choice as a laptop mouse wireless alternative. The Logitech MX Master 3S is not just a standard computer mouse, but an effective wireless bluetooth mouse and cordless mouse, meeting diverse user needs.",
                "title": "Logitech MX Master 3S Wireless Mouse Standard Edition with Logi Bolt USB Receiver, Ultra-fast Scrolling, Ergo, 8K DPI, Track on Glass, Quiet Clicks, USB-C, Bluetooth, Windows, Linux, Chrome - Graphite",
                "bestsellers_rank": [
                    {
                        "link": "https://www.amazon.com/gp/bestsellers/pc/11036491/ref=pd_zg_hrsr_pc",
                        "rank": 16,
                        "category": "Computer Mice"
                    }
                ],
                "similar_to_consider": {
                    "image": "https://m.media-amazon.com/images/I/61oEwT0WpSL._SS100_.jpg",
                    "ratings_total": 22,
                    "price": {
                        "symbol": "$",
                        "currency": "USD"
                    },
                    "link": "/dp/B0FB21526X/ref=vp_d_fuw_pd?_encoding=UTF8&pf_rd_p=5afb6df2-0330-43f3-8d70-fc8d166eab85&pf_rd_r=N8PQ0FNGJHSHXX7CX7G7&pd_rd_wg=qxHXm&pd_rd_i=B0FB21526X&pd_rd_w=VcjDm&content-id=amzn1.sym.5afb6df2-0330-43f3-8d70-fc8d166eab85&pd_rd_r=6187b91c-ad3b-4a3c-8882-a13d652bc708&psc=1",
                    "rating": "4.8",
                    "asin": "B0FB21526X",
                    "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",
                    "is_prime": true
                },
                "manufacturer": "Logitech",
                "feature_bullets_flat": "Logitech MX Master 3S Standard Edition comes with a Logi Bolt USB receiver (dongle), and a USB-C charging cable (USB-A to USB-C).Install free Logi Options+ App to enable Logi AI Prompt Builder for your Logitech wireless mouse and keyboard setups.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..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": "2022-06-26T00:00:00Z",
                    "raw": "June 26, 2022"
                },
                "specifications_flat": "Brand: Logitech.Color: Graphite.Connectivity Technology: Wi-Fi.Special Feature: Wireless, Touch Scroll, Ergonomic Design, Rechargeable.Movement Detection Technology: Optical.Standing screen display size: 7 Inches.Average Battery Life (in hours): 70 days.Brand: Logitech.Series: MX Master 3S.Item model number: 910-006557.Hardware Platform: PC, Mac.Operating System: Multi OS.Item Weight: 5 ounces.Product Dimensions: 4.92 x 3.32 x 0.04 inches.Item Dimensions  LxWxH: 4.92 x 3.32 x 0.04 inches.Color: Graphite.Power Source: Battery Powered.Batteries: 1 Lithium Polymer batteries required. (included).Manufacturer: Logitech.ASIN: B09HM94VDS.Country of Origin: China.Is Discontinued By Manufacturer: No.Date First Available: June 26, 2022.Customer Reviews: 4.5 out of 5 stars.Best Sellers Rank: .",
                "videos_count": 0,
                "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-006557",
                "videos_additional": [
                    {
                        "vendor_code": "simplychristianart:shop",
                        "video_image_width": 1280,
                        "creator_type": "Influencer",
                        "vendor_name": "Rian Tingey",
                        "profile_image_url": "https://m.media-amazon.com/images/I/91brLpc6l6L._CR0,0,1224,1224_._FMjpg_._SL34_.jpg",
                        "title": "Review - Logitech MX Master 3S Mouse",
                        "type": "videos_for_related_products",
                        "related_products": "B09HM94VDS,B0BS9VVQPD,B0B7GKB5XH,B0BFKJ7N21,B0B7GKMRH2",
                        "duration": "0:52",
                        "video_image_url": "https://m.media-amazon.com/images/I/71vr9AHswIL._CR2,0,1276,720_SR684,386_.jpg",
                        "profile_name": "Rian Tingey",
                        "video_url": "https://m.media-amazon.com/images/S/vse-vms-transcoding-artifact-us-east-1-prod/d54399cf-64cf-4f15-a8bd-a338d927927e/default.jobtemplate.hls.m3u8",
                        "parent_asin": "B0DP3H9MMZ",
                        "product_asin": "B09HM94VDS",
                        "video_image_height": 1280,
                        "id": "amzn1.vse.video.096e0fd3c8ac4780ab2f5d2c40e8211f",
                        "video_image_extension": "jpg",
                        "video_image_id": "71vr9AHswIL",
                        "video_mime_type": "application/x-mpegURL",
                        "profile_link": "/shop/simplychristianart",
                        "vendor_tracking_id": "onamzrianholm-20"
                    },
                    {
                        "vendor_code": "its_madi_holland:shop",
                        "video_image_width": 640,
                        "creator_type": "Influencer",
                        "vendor_name": "Short term Rental & DIY links from James & Madi!",
                        "profile_image_url": "https://m.media-amazon.com/images/I/61zpyLtdORL._CR0,0,718,718_._FMjpg_._SL34_.jpg",
                        "title": "This mouse has been a game-changer for how I work",
                        "type": "videos_for_related_products",
                        "related_products": "B09HM94VDS",
                        "duration": "0:22",
                        "video_image_url": "https://m.media-amazon.com/images/I/61RqQ6N19gL._CR0,0,640,361_SR342,193_.jpg",
                        "profile_name": "Short term Rental & DIY links from James & Madi!",
                        "video_url": "https://m.media-amazon.com/images/S/vse-vms-transcoding-artifact-us-east-1-prod/dbf38270-874e-4498-b431-2bf10ffdbda6/default.vertical.jobtemplate.hls.m3u8",
                        "parent_asin": "B0DP3H9MMZ",
                        "product_asin": "B09HM94VDS",
                        "video_image_height": 640,
                        "id": "amzn1.vse.video.0d7d29f1810d4767a7ffa6745eb42362",
                        "video_image_extension": "jpg",
                        "video_image_id": "61RqQ6N19gL",
                        "video_mime_type": "application/x-mpegURL",
                        "profile_link": "/shop/its_madi_holland",
                        "vendor_tracking_id": "onamzmadisolh-20"
                    },
                    {
                        "vendor_code": "sunnycloudgaming:shop",
                        "video_image_width": 1920,
                        "creator_type": "Influencer",
                        "vendor_name": "Sunny",
                        "profile_image_url": "https://m.media-amazon.com/images/I/A11beXfpBML._CR636,211,909,909_._FMjpg_._SL34_.jpg",
                        "title": "WARNING Logitech MX MASTER 3S HAS MUST SEE DETAIL",
                        "type": "videos_for_related_products",
                        "related_products": "B09HM94VDS,B09HMKFDXC,B0BFKJ7N21",
                        "duration": "3:54",
                        "video_image_url": "https://m.media-amazon.com/images/I/91LTCS-wCKL._CR3,0,1914,1080_SR684,386_.png",
                        "profile_name": "Sunny",
                        "video_url": "https://m.media-amazon.com/images/S/vse-vms-transcoding-artifact-us-east-1-prod/001e315c-6a24-4c5e-9750-ca875674ed95/default.jobtemplate.hls.m3u8",
                        "parent_asin": "B0DP3H9MMZ",
                        "product_asin": "B09HM94VDS",
                        "video_image_height": 1920,
                        "id": "amzn1.vse.video.0123de13563c40b0a939877a73080103",
                        "video_image_extension": "png",
                        "video_image_id": "91LTCS-wCKL",
                        "video_mime_type": "application/x-mpegURL",
                        "profile_link": "/shop/sunnycloudgaming",
                        "vendor_tracking_id": "onamzjosh0f58-20"
                    },
                    {
                        "vendor_code": "beaseyy:shop",
                        "video_image_width": 4032,
                        "creator_type": "Influencer",
                        "vendor_name": "Meredith Bauman",
                        "profile_image_url": "https://m.media-amazon.com/images/I/B100GB0XCeL._CR0,0,3950,3950_._FMjpg_._SL34_.jpg",
                        "title": "The best mouse for business professionals! 3 reasons why.",
                        "type": "videos_for_related_products",
                        "related_products": "B0BS96LG8J,B0B11LJ69K,B0BS9VVQPD,B09HM94VDS,B09HMV6K1W",
                        "duration": "2:56",
                        "video_image_url": "https://m.media-amazon.com/images/I/A1VVihVU+TL._CR0,0,4032,2275_SR684,386_.jpg",
                        "profile_name": "Meredith Bauman",
                        "video_url": "https://m.media-amazon.com/images/S/vse-vms-transcoding-artifact-us-east-1-prod/b3e813a2-5821-433c-9f1c-b2b70112624a/default.jobtemplate.hls.m3u8",
                        "parent_asin": "B0DP3H9MMZ",
                        "product_asin": "B09HM94VDS",
                        "video_image_height": 4032,
                        "id": "amzn1.vse.video.004de79a6bb24f21bee2035a71ba8eec",
                        "video_image_extension": "jpg",
                        "video_image_id": "A1VVihVU+TL",
                        "video_mime_type": "application/x-mpegURL",
                        "profile_link": "/shop/beaseyy",
                        "vendor_tracking_id": "onamzmere03ae-20"
                    },
                    {
                        "vendor_code": "shelbaybay:shop",
                        "video_image_width": 1284,
                        "creator_type": "Influencer",
                        "vendor_name": "✅ Honest Reviews with Shelby! 🫶🏼",
                        "profile_image_url": "https://m.media-amazon.com/images/I/91hIbmUyIKL._CR0,0,1365,1365_._FMjpg_._SL34_.jpg",
                        "title": "#thisorthat Mouse edition! V8",
                        "type": "videos_for_related_products",
                        "related_products": "B07X5GHZYJ,B0B6JJRVWX,B09HM94VDS,B0BFKK125R,B0BFKJ7N21",
                        "duration": "4:14",
                        "video_image_url": "https://m.media-amazon.com/images/I/C1cWA7uXqQL._CR0,0,1284,725_SR684,386_.png",
                        "profile_name": "✅ Honest Reviews with Shelby! 🫶🏼",
                        "video_url": "https://m.media-amazon.com/images/S/vse-vms-transcoding-artifact-us-east-1-prod/c15671cb-dd5d-4008-9470-7d4bfbef9285/default.vertical.jobtemplate.hls.m3u8",
                        "parent_asin": "B0DP3H9MMZ",
                        "product_asin": "B09HM94VDS",
                        "video_image_height": 1284,
                        "id": "amzn1.vse.video.0da4ed3eb16047f590c480ccfe519fd3",
                        "video_image_extension": "png",
                        "video_image_id": "C1cWA7uXqQL",
                        "video_mime_type": "application/x-mpegURL",
                        "profile_link": "/shop/shelbaybay",
                        "vendor_tracking_id": "onamzshel0d7f-20"
                    },
                    {
                        "vendor_code": "j_zahariev:shop",
                        "video_image_width": 640,
                        "creator_type": "Influencer",
                        "vendor_name": "Yordan Zahariev",
                        "profile_image_url": "https://m.media-amazon.com/images/I/B1BqjHpm0LL._CR289,0,2184,2184_._FMjpg_._SL34_.jpg",
                        "title": "The ergonomics is crazy good",
                        "type": "videos_for_related_products",
                        "related_products": "B09HM94VDS,B0BFKJ7N21",
                        "duration": "2:16",
                        "video_image_url": "https://m.media-amazon.com/images/I/51FHe1qqCcL._CR1,0,638,360_SR342,193_.jpg",
                        "profile_name": "Yordan Zahariev",
                        "video_url": "https://m.media-amazon.com/images/S/vse-vms-transcoding-artifact-us-east-1-prod/d62ce3fb-f966-4b88-81cb-b2f38fae2b30/default.jobtemplate.hls.m3u8",
                        "parent_asin": "B0DP3H9MMZ",
                        "product_asin": "B09HM94VDS",
                        "video_image_height": 640,
                        "id": "amzn1.vse.video.0fbaf81958da4503ad8d0d841385271b",
                        "video_image_extension": "jpg",
                        "video_image_id": "51FHe1qqCcL",
                        "video_mime_type": "application/x-mpegURL",
                        "profile_link": "/shop/j_zahariev",
                        "vendor_tracking_id": "onamzyorda0f8-20"
                    },
                    {
                        "vendor_code": "adamtalkstech:shop",
                        "video_image_width": 1920,
                        "creator_type": "Influencer",
                        "vendor_name": "Adam Talks Tech",
                        "profile_image_url": "https://m.media-amazon.com/images/I/B1X8pr7e6iL._CR0,0,2990,2990_._FMjpg_._SL34_.jpg",
                        "title": "Which to Buy? Logitech MX Master 3S Vs Logitech MX Vertical",
                        "type": "videos_for_related_products",
                        "related_products": "B09HM94VDS,B07FNJB8TT,B0BFKJ7N21",
                        "duration": "3:43",
                        "video_image_url": "https://m.media-amazon.com/images/I/91XKqAcP+UL._CR3,0,1914,1080_SR684,386_.jpg",
                        "profile_name": "Adam Talks Tech",
                        "video_url": "https://m.media-amazon.com/images/S/vse-vms-transcoding-artifact-us-east-1-prod/af92e36b-f951-41f1-aadd-7f77d41c82fa/default.jobtemplate.hls.m3u8",
                        "parent_asin": "B0DP3H9MMZ",
                        "product_asin": "B09HM94VDS",
                        "video_image_height": 1920,
                        "id": "amzn1.vse.video.005209ed7751454d83f493c3df6758bc",
                        "video_image_extension": "jpg",
                        "video_image_id": "91XKqAcP+UL",
                        "video_mime_type": "application/x-mpegURL",
                        "profile_link": "/shop/adamtalkstech",
                        "vendor_tracking_id": "onamza2v-20"
                    },
                    {
                        "vendor_code": "AOD60",
                        "video_image_width": 1920,
                        "creator_type": "Customer",
                        "vendor_name": "Ticozolano",
                        "profile_image_url": "https://m.media-amazon.com/images/S/amazon-avatars-global/c7c367b2-d803-484f-9ae6-3dbe50f80733._CR0%2C0%2C374%2C374_UX460_._SL34_.jpg",
                        "title": "Customer Review: 100% recommended",
                        "type": "videos_for_related_products",
                        "related_products": "B09HM94VDS",
                        "duration": "0:10",
                        "video_image_url": "https://m.media-amazon.com/images/I/61LuFQCSxdL._CR3,0,1914,1080_SR684,386_.jpg",
                        "profile_name": "Ticozolano",
                        "video_url": "https://m.media-amazon.com/images/S/vse-vms-transcoding-artifact-us-east-1-prod/f5837411-d0e1-46f0-9611-5af8fa83d424/default.jobtemplate.hls.m3u8",
                        "parent_asin": "B0DP3H9MMZ",
                        "product_asin": "B09HM94VDS",
                        "video_image_height": 1920,
                        "id": "amzn1.vse.video.048f633e71fd4b5bacc171e3df195bbe",
                        "video_image_extension": "jpg",
                        "video_image_id": "61LuFQCSxdL",
                        "video_mime_type": "application/x-mpegURL",
                        "profile_link": "/gp/profile/amzn1.account.AEUTS3RPSXUMW4PQLFGIGNX27FLQ",
                        "vendor_tracking_id": ""
                    },
                    {
                        "vendor_code": "AOD60",
                        "video_image_width": 1920,
                        "creator_type": "Customer",
                        "vendor_name": "Mugen",
                        "profile_image_url": "https://m.media-amazon.com/images/S/amazon-avatars-global/default._SL34_.png",
                        "title": "Customer Review: So quiet, so smooth. Many features.",
                        "type": "videos_for_related_products",
                        "related_products": "B09HM94VDS",
                        "duration": "0:17",
                        "video_image_url": "https://m.media-amazon.com/images/I/61m1LciHOYL._CR3,0,1914,1080_SR684,386_.jpg",
                        "profile_name": "Mugen",
                        "video_url": "https://m.media-amazon.com/images/S/vse-vms-transcoding-artifact-us-east-1-prod/2cdc9f78-f5e3-4629-acf8-f0e7794bbe6a/default.jobtemplate.hls.m3u8",
                        "parent_asin": "B0DP3H9MMZ",
                        "product_asin": "B09HM94VDS",
                        "video_image_height": 1920,
                        "id": "amzn1.vse.video.0925a929cd41480bae4dc0abfaaaba24",
                        "video_image_extension": "jpg",
                        "video_image_id": "61m1LciHOYL",
                        "video_mime_type": "application/x-mpegURL",
                        "profile_link": "/gp/profile/amzn1.account.AG5J6FE7SN2RJJX55CI7LLMOWKYA",
                        "vendor_tracking_id": ""
                    }
                ],
                "sub_title": {
                    "link": "https://www.amazon.com/stores/Logitech/page/01EFDE77-7D1A-41D7-9EEA-7C2FA22AB12F?is_byline_deeplink=true&deeplink=571C794C-A241-45FF-B867-54862A19D2D6&redirect_store_id=01EFDE77-7D1A-41D7-9EEA-7C2FA22AB12F&lp_asin=B09HM94VDS&ref_=ast_bln&store_ref=bl_ast_dp_brandLogo_sto",
                    "text": "Visit the Logitech Store"
                },
                "search_alias": {
                    "title": "Electronics",
                    "value": "electronics"
                },
                "has_coupon": true,
                "images_flat": "https://m.media-amazon.com/images/I/31vwylJ4PgL._AC_.jpg,https://m.media-amazon.com/images/I/41wcAOL4XwL._AC_.jpg,https://m.media-amazon.com/images/I/41r-D99FOyL._AC_.jpg,https://m.media-amazon.com/images/I/31P5MKZ6QUL._AC_.jpg,https://m.media-amazon.com/images/I/41AlXI+H5dL._AC_.jpg,https://m.media-amazon.com/images/I/41APFOAVgBL._AC_.jpg,https://m.media-amazon.com/images/I/41pKckJsRcL._AC_.jpg,https://m.media-amazon.com/images/I/51X-K5QRXeL._AC_.jpg,https://m.media-amazon.com/images/I/417iBGzsHWL._AC_.jpg,https://m.media-amazon.com/images/I/41CqLF6ySFL._AC_.jpg",
                "asin": "B09HM94VDS",
                "attributes": [
                    {
                        "name": "Brand",
                        "value": "Logitech"
                    },
                    {
                        "name": "Color",
                        "value": "Graphite"
                    },
                    {
                        "name": "Connectivity Technology",
                        "value": "Wi-Fi"
                    },
                    {
                        "name": "Special Feature",
                        "value": "Wireless, Touch Scroll, Ergonomic Design, Rechargeable"
                    },
                    {
                        "name": "Movement Detection Technology",
                        "value": "Optical"
                    }
                ],
                "buybox_winner": {
                    "rrp": {
                        "symbol": "$",
                        "raw": "$119.99",
                        "currency": "USD",
                        "value": "119.99"
                    },
                    "condition": {
                        "is_new": false
                    },
                    "shipping": {
                        "raw": "FREE"
                    },
                    "price": {
                        "symbol": "$",
                        "raw": "$119.99",
                        "currency": "USD",
                        "value": "119.99"
                    },
                    "secondary_buybox": {
                        "caption": "Save with Used - Good",
                        "offer_id": "GfRxhyiXmQrkcOz50OdjL2G7jyFlrghgZZ44qveYiJQ770e3HDvzbWjc8mzF1cxplzrw0eED%2BZy1kWMflv8wX9MOVfuhMenNoZOPCH%2B73iJJ5kIk2fqj3YWyqVQlN9bnxbQnIbGqbFMvhHF7As8xkJ8ifRKouSA3XGFgVQnLGmKxw4YmOIdHxXXVhfotjy0H"
                    },
                    "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": "Monday, July 28Monday, July 28",
                            "raw": "FREE"
                        },
                        "fastest_delivery": {
                            "date": "Tomorrow, July 24Saturday, July 26",
                            "raw": "FREE"
                        }
                    },
                    "maximum_order_quantity": {
                        "hard_maximum": true,
                        "value": 2
                    },
                    "is_prime": false,
                    "offer_id": "GfRxhyiXmQrkcOz50OdjL2G7jyFlrghgyu0IDHza2Bhs0LImOf%2BlgBMB%2FEJ48PtR2AUBCb1EKKMibnmmR3b2qlDK6URB1RGd%2B3nj%2F%2FCqphx52qUBN86%2BpBhiZS9mrAOAg1ZlqHCMPdwfRxi1DbQk0A%3D%3D"
                },
                "protection_plans": [
                    {
                        "price": {
                            "symbol": "",
                            "raw": "$21.99",
                            "currency": "USD",
                            "value": "21.99"
                        },
                        "asin": "B07P97VCPB",
                        "title": "3-Year Protection Plan"
                    },
                    {
                        "price": {
                            "symbol": "",
                            "raw": "$29.99",
                            "currency": "USD",
                            "value": "29.99"
                        },
                        "asin": "B07P97W6WS",
                        "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",
                    "sell_on_amazon",
                    "audible_sample",
                    "proposition_65_warning",
                    "size_guide_html",
                    "energy_efficiency",
                    "rich_product_description",
                    "coupon_text",
                    "book_description",
                    "editorial_reviews",
                    "editorial_reviews_flat",
                    "runtime",
                    "has_size_guide",
                    "videos",
                    "videos_flat",
                    "bundles",
                    "bundle_contents",
                    "publisher",
                    "is_collection",
                    "collection_children",
                    "collection_size",
                    "release_date",
                    "language",
                    "material",
                    "recommended_age",
                    "whats_in_the_box",
                    "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.04 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": "359a6027-b29c-4d90-930f-65522b0b6e69"
            }
        },
        "status": "success"
    }
}

✅ Wrapping Up

You've now seen how to retrieve and interpret results using the Data Service, following a successful bulk submission. With the provided id, you can fetch the parsed content and start utilizing it in your application workflows.

To ensure a smooth integration:

  • Refer back to operation-specific documentation for interpreting the json_result contents.

  • Store results promptly, as response data is kept up to a maximum of 24 hours.

  • Stay mindful of your credit usage and response statuses to keep your requests optimized.

Need more details or examples? You can always revisit the Getting Started section or explore individual operation pages for deeper insights.

Happy parsing! 🚀

Last updated