Refining search results

The Product Search API allows you to implement search refinements that can filter search results by department, company policies, availability, and other criteria. Search refinements are dynamic, meaning that they are specific to each search and will vary based on your search query. Common examples of search refinements include the following:

  • Department
  • Delivery day
  • Business Prime eligibility
  • Shipping options
  • Condition (New/Used)
  • Seller diversity certifications
  • International shipping eligibility
  • Availability
  • Seller type
  • Product sustainability

Including these refinements in subsequent search requests will narrow down the search results by the specified criteria. By implementing search refinements, you can empower your end customers to perform targeted searches and easily discover products that meet their expectations.

👍

For details on rendering Product Search API refinements in your UI, see Product Search API customer experience guidelines.

Prerequisites

Before starting this tutorial, complete these steps:

  1. Complete the API onboarding process to register as a developer, create an app client, and retrieve API access and refresh tokens. For more information, see Onboarding overview.
  2. Gain access to the Business Product Catalog role. For more information, see Amazon Business API roles.

Step 1. Start a keyword search

Call the searchProductsRequest to search using a keyword. In this example, we’ll search for “pens.” In the request, include the following parameters:

TypeNameDescriptionSchemaRequired
Headerx-amz-user-emailAn Amazon Business user account's email address. The user account must be part of a group that has granted consent to your application.stringYes
QueryproductRegionThe region where the customer wants to purchase the product.enum (ProductRegion)Yes
QuerylocaleThe language of the response content. This locale is in the form of an IETF language tag. The format is [Two-letter ISO 639-1 language code]-[Two-letter ISO 3166-1 alpha-2 country code], such as en-US for American English or es-MX for Mexican Spanish. Each ProductRegion supports one or more locales. For example, the United States supports en-US and es-US for English and Spanish, respectively.enum (list of IETF tags)Yes
QuerykeywordsA comma-separated list of keywords to use for finding products based on indexed data. You can pass multiple keywords in a single request by separating each keyword with a comma. For example: paper,notebooks,binders.stringYes

GET https://na.business-api.amazon.com/products/2020-08-26/products?keywords=pens&locale=en_US&productRegion=US
import requests

url = "https://na.business-api.amazon.com/products/2020-08-26/products?keywords=pens&locale=en_US&productRegion=US"

headers = {
    "accept": "application/json",
    "x-amz-access-token": "<Access token retrieved in Prerequisites Step 1>",
    "x-amz-user-email": "<Customer email address",
}

response = requests.get(url, headers=headers)

print(response.text)

A successful request returns a list of search results matching the keyword. In the response, the searchRefinements and refinements attributes return a list of applicable refinements for this request.

Each search refinement has a unique ID provided in the searchRefinementValue , such as node#1064954 for the “Office Products” category. You can include these IDs in subsequent API calls to filter your search results.

The response returns the following data:

NameDescriptionSchemaRequired
matchingProductCountThe number of products matching the search query. This number can be larger than the number of matching products the customer can view in a single page. The value is the same for all the pages in the result.integerYes
searchRefinementsSearch refinements are used to share the refinements available for search result. Use searchRefinements in subsequent requests to narrow down the results. For example: Search category is a type of search refinement. If a search category refinement is used in the request, the search result will limit to a given search category. These refinements are dynamic and specific to each product type.< SearchRefinementResult > arrayYes
refinementsThe refinements available for this search result. Use refinements in subsequent requests to narrow down the results. For example: Search category is a type of search refinement. If a search category refinement is used in the request, the search result will limit to a given search category. These refinements are static and the same for all product searches.RefinementResultYes
numberOfPagesThe number of pages of search results.integerYes
productsA list of products that match the search criteria.< ProductsResult > arrayYes

{
    "matchingProductCount": 306,
    "searchRefinements": [
        {
            "selectionType": "SingleSelect",
            "displayValue": "Department",
            "refinementValues": [
                {
                    "displayName": "Alexa Skills",
                    "searchRefinementValue": "node#13727921011"
                },
                {
                    "displayName": "Amazon Devices & Accessories",
                    "searchRefinementValue": "node#16333372011"
                },
                {
                    "displayName": "Appliances",
                    "searchRefinementValue": "node#2619525011"
                },
                {
                    "displayName": "Apps & Games",
                    "searchRefinementValue": "node#2350149011"
                },
                {
                    "displayName": "Arts, Crafts & Sewing",
                    "searchRefinementValue": "node#2617941011"
                },
                {
                    "displayName": "Audible Books & Originals",
                    "searchRefinementValue": "node#18145289011"
                },
                {
                    "displayName": "Automotive",
                    "searchRefinementValue": "node#15684181"
                },
                {
                    "displayName": "Baby Products",
                    "searchRefinementValue": "node#165796011"
                },
                {
                    "displayName": "Beauty & Personal Care",
                    "searchRefinementValue": "node#3760911"
                },
                {
                    "displayName": "Books",
                    "searchRefinementValue": "node#283155"
                },
                {
                    "displayName": "CDs & Vinyl",
                    "searchRefinementValue": "node#5174"
                },
                {
                    "displayName": "Cell Phones & Accessories",
                    "searchRefinementValue": "node#2335752011"
                },
                {
                    "displayName": "Clothing, Shoes & Jewelry",
                    "searchRefinementValue": "node#7141123011"
                },
                {
                    "displayName": "Collectibles & Fine Art",
                    "searchRefinementValue": "node#4991425011"
                },
                {
                    "displayName": "Credit & Payment Cards",
                    "searchRefinementValue": "node#3561432011"
                },
                {
                    "displayName": "Digital Music",
                    "searchRefinementValue": "node#163856011"
                },
                {
                    "displayName": "Electronics",
                    "searchRefinementValue": "node#172282"
                },
                {
                    "displayName": "Everything Else",
                    "searchRefinementValue": "node#10272111"
                },
                {
                    "displayName": "Gift Cards",
                    "searchRefinementValue": "node#2238192011"
                },
                {
                    "displayName": "Grocery & Gourmet Food",
                    "searchRefinementValue": "node#16310101"
                },
                {
                    "displayName": "Handmade Products",
                    "searchRefinementValue": "node#11260432011"
                },
                {
                    "displayName": "Health & Household",
                    "searchRefinementValue": "node#3760901"
                },
                {
                    "displayName": "Home & Business Services",
                    "searchRefinementValue": "node#8098158011"
                },
                {
                    "displayName": "Home & Kitchen",
                    "searchRefinementValue": "node#1055398"
                },
                {
                    "displayName": "Industrial & Scientific",
                    "searchRefinementValue": "node#16310091"
                },
                {
                    "displayName": "Kindle Store",
                    "searchRefinementValue": "node#133140011"
                },
                {
                    "displayName": "Magazine Subscriptions",
                    "searchRefinementValue": "node#599858"
                },
                {
                    "displayName": "Movies & TV",
                    "searchRefinementValue": "node#2625373011"
                },
                {
                    "displayName": "Musical Instruments",
                    "searchRefinementValue": "node#11091801"
                },
                {
                    "displayName": "Office Products",
                    "searchRefinementValue": "node#1064954"
                },
                {
                    "displayName": "Patio, Lawn & Garden",
                    "searchRefinementValue": "node#2972638011"
                },
                {
                    "displayName": "Pet Supplies",
                    "searchRefinementValue": "node#2619533011"
                },
                {
                    "displayName": "Software",
                    "searchRefinementValue": "node#229534"
                },
                {
                    "displayName": "Sports & Outdoors",
                    "searchRefinementValue": "node#3375251"
                },
                {
                    "displayName": "Tools & Home Improvement",
                    "searchRefinementValue": "node#228013"
                },
                {
                    "displayName": "Toys & Games",
                    "searchRefinementValue": "node#165793011"
                },
                {
                    "displayName": "Video Games",
                    "searchRefinementValue": "node#468642"
                }
            ]
        },
        {
            "selectionType": "SingleSelect",
            "displayValue": "Departments",
            "refinementValues": []
        },
        {
            "selectionType": "MultiSelectOR",
            "displayValue": "Amazon Prime",
            "refinementValues": [
                {
                    "displayName": "Prime Eligible",
                    "searchRefinementValue": "SSI$p_85#BN$2470955011"
                }
            ]
        },
        {
            "selectionType": "MultiSelectOR",
            "displayValue": "Shipping Options",
            "refinementValues": [
                {
                    "displayName": "Free Shipping by Amazon",
                    "searchRefinementValue": "SSI$p_76#BN$2661625011"
                }
            ]
        },
        {
            "selectionType": "InsteadSelect",
            "displayValue": "Customer Reviews",
            "refinementValues": [
                {
                    "displayName": "4 Stars & Up",
                    "searchRefinementValue": "SSI$p_72#BN$2661618011"
                }
            ]
        },
        {
            "selectionType": "InsteadSelect",
            "displayValue": "Condition",
            "refinementValues": [
                {
                    "displayName": "New",
                    "searchRefinementValue": "SSI$p_n_condition-type#BN$6461716011"
                },
                {
                    "displayName": "Used",
                    "searchRefinementValue": "SSI$p_n_condition-type#BN$6461718011"
                }
            ]
        },
        {
            "selectionType": "InsteadSelect",
            "displayValue": "Delivery Day",
            "refinementValues": [
                {
                    "displayName": "Get It by Tomorrow",
                    "searchRefinementValue": "SSI$p_90#BN$8308921011"
                }
            ]
        },
        {
            "selectionType": "InsteadSelect",
            "displayValue": "Deals & Discounts",
            "refinementValues": [
                {
                    "displayName": "All Discounts",
                    "searchRefinementValue": "SSI$p_n_deal_type#BN$23566065011"
                },
                {
                    "displayName": "Today's Deals",
                    "searchRefinementValue": "SSI$p_n_deal_type#BN$23566064011"
                }
            ]
        },
        {
            "selectionType": "MultiSelectOR",
            "displayValue": "More-sustainable Products",
            "refinementValues": [
                {
                    "displayName": "Climate Pledge Friendly",
                    "searchRefinementValue": "SSI$p_n_cpf_eligible#BN$21512497011"
                }
            ]
        },
        {
            "selectionType": "MultiSelectOR",
            "displayValue": "Subscription Options",
            "refinementValues": [
                {
                    "displayName": "Subscribe & Save Eligible",
                    "searchRefinementValue": "SSI$p_n_is_sns_available#BN$2617006011"
                }
            ]
        },
        {
            "selectionType": "MultiSelectOR",
            "displayValue": "Amazon Local Stores",
            "refinementValues": [
                {
                    "displayName": "Amazon Fresh",
                    "searchRefinementValue": "SSI$p_n_alm_brand_id#BN$18075438011"
                }
            ]
        },
        {
            "selectionType": "MultiSelectOR",
            "displayValue": "FSA or HSA Eligible",
            "refinementValues": [
                {
                    "displayName": "FSA or HSA Eligible",
                    "searchRefinementValue": "SSI$p_n_hba_program#BN$17904039011"
                }
            ]
        },
        {
            "selectionType": "MultiSelectOR",
            "displayValue": "Seller Type",
            "refinementValues": [
                {
                    "displayName": "Business Seller",
                    "searchRefinementValue": "SSI$p_amazon_business_seller#BN$15156999011"
                }
            ]
        },
        {
            "selectionType": "MultiSelectOR",
            "displayValue": "Amazon Global Store",
            "refinementValues": [
                {
                    "displayName": "Amazon Global Store",
                    "searchRefinementValue": "SSI$p_n_is-global-store-asin#BN$16354393011"
                }
            ]
        },
        {
            "selectionType": "MultiSelectOR",
            "displayValue": "International Shipping",
            "refinementValues": [
                {
                    "displayName": "International Shipping Eligible",
                    "searchRefinementValue": "SSI$p_n_shipping_option-bin#BN$3242350011"
                }
            ]
        },
        {
            "selectionType": "MultiSelectOR",
            "displayValue": "Amazon Business Ownership & Diversity Seller Certifications",
            "refinementValues": [
                {
                    "displayName": "Registered Small Business",
                    "searchRefinementValue": "SSI$p_seller_credentials#BN$15490165011"
                },
                {
                    "displayName": "Women-Owned Business Enterprise",
                    "searchRefinementValue": "SSI$p_seller_credentials#BN$15490166011"
                },
                {
                    "displayName": "Women-Owned Small Business",
                    "searchRefinementValue": "SSI$p_seller_credentials#BN$15490167011"
                },
                {
                    "displayName": "Economically Disadvantaged Woman-Owned Small Business",
                    "searchRefinementValue": "SSI$p_seller_credentials#BN$15490168011"
                },
                {
                    "displayName": "Veteran-Owned Small Business",
                    "searchRefinementValue": "SSI$p_seller_credentials#BN$15490169011"
                },
                {
                    "displayName": "Service Disabled Veteran Owned Small Business",
                    "searchRefinementValue": "SSI$p_seller_credentials#BN$15490170011"
                },
                {
                    "displayName": "Minority-Owned Business",
                    "searchRefinementValue": "SSI$p_seller_credentials#BN$15490171011"
                },
                {
                    "displayName": "SBA-Certified 8(a) Firm",
                    "searchRefinementValue": "SSI$p_seller_credentials#BN$15490172011"
                },
                {
                    "displayName": "SBA-Certified HUB Zone Firm",
                    "searchRefinementValue": "SSI$p_seller_credentials#BN$15490173011"
                },
                {
                    "displayName": "LGBT Business Enterprise",
                    "searchRefinementValue": "SSI$p_seller_credentials#BN$15490175011"
                }
            ]
        },
        {
            "selectionType": "InsteadSelect",
            "displayValue": "Availability",
            "refinementValues": [
                {
                    "displayName": "In Stock Only",
                    "searchRefinementValue": "SSI$p_n_availability#BN$2661600011"
                },
                {
                    "displayName": "Include Out of Stock",
                    "searchRefinementValue": "SSI$p_n_availability#BN$2661601011"
                }
            ]
        },
        {
            "selectionType": "MultiSelectOR",
            "displayValue": "Customizable Products",
            "refinementValues": [
                {
                    "displayName": "Customizable",
                    "searchRefinementValue": "SSI$p_n_customizable_template_name#BN$16031489011"
                }
            ]
        }
    ],
    "refinements": {
        "categories": [
            {
                "displayName": "Alexa Skills",
                "id": "ALEXA_SKILLS"
            },
            {
                "displayName": "Amazon Devices & Accessories",
                "id": "AMAZON_DEVICES_ACCESSORIES"
            },
            {
                "displayName": "Appliances",
                "id": "APPLIANCES"
            },
            {
                "displayName": "Apps & Games",
                "id": "APPS_GAMES"
            },
            {
                "displayName": "Arts, Crafts & Sewing",
                "id": "ARTS_CRAFTS_SEWING"
            },
            {
                "displayName": "Audible Books & Originals",
                "id": "AUDIBLE_BOOKS_ORIGINALS"
            },
            {
                "displayName": "Automotive",
                "id": "AUTOMOTIVE"
            },
            {
                "displayName": "Baby Products",
                "id": "BABY_PRODUCTS"
            },
            {
                "displayName": "Beauty & Personal Care",
                "id": "BEAUTY_PERSONAL_CARE"
            },
            {
                "displayName": "Books",
                "id": "BOOKS"
            },
            {
                "displayName": "CDs & Vinyl",
                "id": "CDS_VINYL"
            },
            {
                "displayName": "Cell Phones & Accessories",
                "id": "CELL_PHONES_ACCESSORIES"
            },
            {
                "displayName": "Clothing, Shoes & Jewelry",
                "id": "CLOTHING_SHOES_JEWELRY"
            },
            {
                "displayName": "Collectibles & Fine Art",
                "id": "COLLECTIBLES_FINE_ART"
            },
            {
                "displayName": "Digital Music",
                "id": "DIGITAL_MUSIC"
            },
            {
                "displayName": "Electronics",
                "id": "ELECTRONICS"
            },
            {
                "displayName": "Everything Else",
                "id": "EVERYTHING_ELSE"
            },
            {
                "displayName": "Gift Cards",
                "id": "GIFT_CARDS"
            },
            {
                "displayName": "Grocery & Gourmet Food",
                "id": "GROCERY_GOURMET_FOOD"
            },
            {
                "displayName": "Handmade Products",
                "id": "HANDMADE_PRODUCTS"
            },
            {
                "displayName": "Health & Household",
                "id": "HEALTH_HOUSEHOLD"
            },
            {
                "displayName": "Home & Business Services",
                "id": "HOME_BUSINESS_SERVICES"
            },
            {
                "displayName": "Home & Kitchen",
                "id": "HOME_KITCHEN"
            },
            {
                "displayName": "Industrial & Scientific",
                "id": "INDUSTRIAL_SCIENTIFIC"
            },
            {
                "displayName": "Kindle Store",
                "id": "KINDLE_STORE"
            },
            {
                "displayName": "Magazine Subscriptions",
                "id": "MAGAZINE_SUBSCRIPTIONS"
            },
            {
                "displayName": "Movies & TV",
                "id": "MOVIES_TV"
            },
            {
                "displayName": "Musical Instruments",
                "id": "MUSICAL_INSTRUMENTS"
            },
            {
                "displayName": "Office Products",
                "id": "OFFICE_PRODUCTS"
            },
            {
                "displayName": "Patio, Lawn & Garden",
                "id": "PATIO_LAWN_GARDEN"
            },
            {
                "displayName": "Pet Supplies",
                "id": "PET_SUPPLIES"
            },
            {
                "displayName": "Software",
                "id": "SOFTWARE"
            },
            {
                "displayName": "Sports & Outdoors",
                "id": "SPORTS_OUTDOORS"
            },
            {
                "displayName": "Tools & Home Improvement",
                "id": "TOOLS_HOME_IMPROVEMENT"
            },
            {
                "displayName": "Toys & Games",
                "id": "TOYS_GAMES"
            },
            {
                "displayName": "Video Games",
                "id": "VIDEO_GAMES"
            }
        ],
        "subCategories": [],
        "availabilityOptions": [
            {
                "displayName": "In Stock Only",
                "id": "InStockOnly"
            },
            {
                "displayName": "Include Out of Stock",
                "id": "IncludeOutOfStock"
            }
        ],
        "deliveryDayOptions": [
            {
                "displayName": "Get It by Tomorrow",
                "id": "GetItByTomorrow"
            }
        ],
        "eligibleForFreeShippingOptions": [
            {
                "displayName": "Free Shipping by Amazon",
                "id": "FreeShippingOnly"
            }
        ],
        "primeEligible": [
            {
                "displayName": "Prime Eligible",
                "id": "PrimeEligibleOnly"
            }
        ]
    },
    "numberOfPages": 13,
    "products": [
        {
            "asin": "B001GAOTSW",
            "asinType": "STANDARD",
            "signedProductId": "amzn1.business.asin.G2CCRSUVYNL3DY4K4RCGI2LRMFZG423ZORUGOZLEG5ZGMY3BONQTVDM2VFKBLWQASXM7TWT2OBFDRWCEWPF7SG3X2TOAMIUCBBQN2JBH6ETEMGPE5LN7EUOEU423Y6SQRCIR54CQUXI4L3XRRVYZJHUFERVTKWUQULVHP7VTZ5DW6A2TUMNA",
            "includedDataTypes": {},
            "features": [
                "Smooth & Long-lasting: Enjoy a smooth writing experience thanks to the gel ink that glides effortlessly across paper; G2 has been proven to be the longest-lasting gel ink pen so you can write more without having to refill often (Data on File)",
                "Comfortable Grip: A contoured rubber grip provides ergonomic support, making long writing projects easier; Available in ultra-fine, extra-fine, fine and bold point sizes so you can find the perfect pen for your writing style",
                "Versatile: Perfect for everyday writing tasks such as taking notes and jotting down grocery lists; The G2 tip delivers crisp, clean lines ideal for writing, intricate designs, drawing, sketching or doodling",
                "Refillable & Quick Drying: Save money and reduce waste by reusing and refilling your retractable pen with Pilot G2 refills (sold separately); The vibrant, quick drying ink helps prevent smudges and smears",
                "Power to the Pen: Express yourself effortlessly with Pilot's line of innovative writing tools, including gel ink, erasable, rolling ball, ballpoint and fountain pens, & dry erase markers & more"
            ],
            "editorialReviews": [],
            "taxonomies": [
                {
                    "taxonomyCode": "44121701",
                    "title": "Rollerball pens",
                    "type": "UNSPSC"
                },
                {
                    "taxonomyCode": "24240701",
                    "title": "",
                    "type": "ECLASS"
                }
            ],
            "packageTypeNames": [],
            "title": "Pilot, G2 Premium Gel Roller Pens, Fine Point 0.7 mm, Black, Pack of 12 (Dozen Box)",
            "url": "https://www.amazon.com/dp/B001GAOTSW?ref_=ab_psdp",
            "format": null,
            "bookInformation": {
                "isbn": {
                    "isbn10": null,
                    "isbn13": null
                },
                "publicationDate": null,
                "publishedLanguage": null
            },
            "byLine": [],
            "mediaInformation": {
                "editions": [],
                "mediaFormats": []
            },
            "productOverview": {
                "Date First Available": "June 1, 2007",
                "Closure": "Retractable",
                "Unit Count": "12.0 Count",
                "Tip Type": "Conical",
                "Recommended Uses For Product": "Writing",
                "Included Components": "Pens (12)",
                "Size": "12 Count (Pack of 1)",
                "Age Range Description": "Adult",
                "Writing Instrument Form": "Roller Ball Pen",
                "ASIN": "B001GAOTSW",
                "UPC": "072838310200",
                "Material Type": "Plastic, Rubber",
                "Product Dimensions": "1 x 2.8 x 5.75 inches",
                "Is Discontinued By Manufacturer": "No",
                "Point Type": "Fine",
                "Drill Point": "Fine",
                "Ink Color": "Black",
                "Item Hardness": "HB",
                "Manufacturer": "0",
                "Style": "Fine Pt",
                "Number of Items": "1",
                "Special Feature": "Refillable, Pocket Clip, Retractable,",
                "Pattern": "Pens",
                "Body Shape": "Round",
                "Model Name": "G2 Retractable Gel Ink Rollerball Pens",
                "Item dimensions L x W x H": "1 x 2.8 x 5.75 inches",
                "Color": "Black Ink",
                "Item Diameter": "0.7 Millimeters",
                "Item model number": "31020",
                "Manufacturer Part Number": "31020",
                "Hand Orientation": "Left Hand",
                "Material": "Plastic, Rubber",
                "Model Number": "31020",
                "Hardness": "HB",
                "Pencil Lead Degree (Hardness)": "HB",
                "Line Size": "0.7 millimeters",
                "Grip Type": "Contoured",
                "Brand Name": "PILOT",
                "Brand": "PILOT",
                "Additional Features": "Refillable, Pocket Clip, Retractable,",
                "Item Dimensions": "1 x 2.8 x 5.75 inches",
                "Age Range (Description)": "Adult",
                "Closure Type": "Retractable",
                "Item Weight": "0.1 Kilograms"
            },
            "productDetails": {},
            "productVariations": {
                "dimensions": [
                    {
                        "index": 0,
                        "displayString": "Color",
                        "dimensionValues": [
                            {
                                "index": 0,
                                "displayString": "Black Ink"
                            },
                            {
                                "index": 1,
                                "displayString": "Blue Ink"
                            },
                            {
                                "index": 2,
                                "displayString": "Green Ink"
                            },
                            {
                                "index": 3,
                                "displayString": "Grey Ink"
                            },
                            {
                                "index": 4,
                                "displayString": "Iris Blue Ink"
                            },
                            {
                                "index": 5,
                                "displayString": "Navy Ink"
                            },
                            {
                                "index": 6,
                                "displayString": "Purple Ink"
                            },
                            {
                                "index": 7,
                                "displayString": "Red Ink"
                            }
                        ]
                    }
                ],
                "variations": [
                    {
                        "asin": "B001GAOTSW",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 0
                            }
                        ]
                    },
                    {
                        "asin": "B00006JNJC",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 1
                            }
                        ]
                    },
                    {
                        "asin": "B001AQPQ5W",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 2
                            }
                        ]
                    },
                    {
                        "asin": "B09QD342HB",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 3
                            }
                        ]
                    },
                    {
                        "asin": "B09QD3J3Y3",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 4
                            }
                        ]
                    },
                    {
                        "asin": "B000JE8U5E",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 5
                            }
                        ]
                    },
                    {
                        "asin": "B0006SVCA8",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 6
                            }
                        ]
                    },
                    {
                        "asin": "B00006JNJD",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 7
                            }
                        ]
                    }
                ]
            },
            "customerReviewsSummary": {
                "numberOfRatings": null,
                "starRating": null
            },
            "productDescription": "From taking notes to journaling or drawing, G2 Gel Roller pens keep the ink and your ideas flowing. These long-lasting pens come in many color options and 4 tip sizes, so it's easy to find one that caters to your writing needs and personal style. The quick-drying ink prevents smears and smudges, ensuring your work is neat and clear. Create masterpieces of writing or art with these thanks smooth-flowing gel pens that deliver vivid and clear lines. Perfect for your everyday writing needs, the 0.7 mm fine pen point size strikes a balance between fine and bold lines. Archival-safe and acid-free black ink is formulated to be long-lasting and fade-resistant, ensuring your documents last for a long time. The comfortable rubber grip offers ergonomic support, reducing hand fatigue and making lengthy writing projects a breeze. Pilot's G2 line blends smooth writing with long-lasting ink, precision and comfort for an exceptional writing experience.",
            "upcValues": [],
            "eanValues": [],
            "modelNumber": null,
            "manufacturerName": null,
            "bundleQuantity": null,
            "badges": [
                {
                    "fragment": {
                        "title": "#1 Best Seller",
                        "message": null,
                        "link": {
                            "text": "Gel Ink Pens",
                            "url": "https://www.amazon.com/gp/bestsellers/office-products/1069828?language=en_US"
                        },
                        "type": "BESTSELLER_BADGE",
                        "fragments": null
                    }
                }
            ]
        },
        {
            "asin": "B0012YVGOW",
            "asinType": "STANDARD",
            "signedProductId": "amzn1.business.asin.SSAFVCHOIHRFPFRMJV5WI2LRMFZG423ZORUGOZLEG5ZGMY3BONQX5T7S2MNMGK5YZ4AH2HZB5M2D5OLWHZN4A7HSN3YMQVWO4PNEXYXACWBVFCNC7JUXX3DCRX6MLCFHSTHF72D6RH353JW2J7SWBHE4NSTS2KE7N2E3D3C6K3LKICZZKNWQ",
            "includedDataTypes": {},
            "features": [
                "One 60-count pack of BIC Round Stic Xtra Life Black Ballpoint Pens",
                "Versatile 1.0mm medium point pens are ultra long lasting and the No. 1 selling ballpoint pens in the US",
                "Reliable BIC pens that spread the black ink smoothly and evenly, providing consistent ink flow",
                "Writing pens with a translucent barrel shows the current ink supply, so you can know when to grab a new pen from the pack",
                "Dependable ball point pens bulk pack with a round, comfortable barrel design and frosted cap — a sleek, practical choice for office or school supplies"
            ],
            "editorialReviews": [],
            "taxonomies": [
                {
                    "taxonomyCode": "44121704",
                    "title": "Ball point pens",
                    "type": "UNSPSC"
                },
                {
                    "taxonomyCode": "24240503",
                    "title": "",
                    "type": "ECLASS"
                }
            ],
            "packageTypeNames": [],
            "title": "BIC Round Stic Xtra Life Black Ballpoint Pens, Medium Point (1.0mm), 60-Count Pack of Bulk Pens, Flexible Round Barrel for Writing Comfort, No. 1 Selling Ballpoint Pens",
            "url": "https://www.amazon.com/dp/B0012YVGOW?ref_=ab_psdp",
            "format": null,
            "bookInformation": {
                "isbn": {
                    "isbn10": null,
                    "isbn13": null
                },
                "publicationDate": null,
                "publishedLanguage": null
            },
            "byLine": [],
            "mediaInformation": {
                "editions": [],
                "mediaFormats": []
            },
            "productOverview": {
                "Date First Available": "September 27, 2017",
                "Closure": "Retractable",
                "Unit Count": "60.0 Count",
                "Recommended Uses For Product": "Office",
                "Included Components": "60 BIC Round Stic Xtra Life Ballpoint Pens",
                "Size": "60 Count (Pack of 1)",
                "Age Range Description": "Adult",
                "Writing Instrument Form": "Ballpoint Pen",
                "Global Trade Identification Number": "00070330131620",
                "ASIN": "B0012YVGOW",
                "UPC": "070330131620",
                "Material Type": "Plastic",
                "Batteries": "2 AA batteries required.",
                "Product Dimensions": "4.25 x 2.75 x 6.5 inches",
                "Is Discontinued By Manufacturer": "No",
                "Point Type": "Medium",
                "Drill Point": "Medium",
                "Ink Color": "Black",
                "Item Hardness": "HB",
                "Manufacturer": "BIC Corporation",
                "Style": "Ballpoint Pen",
                "Number of Items": "1",
                "Special Feature": "Refillable",
                "Pattern": "Pen",
                "Body Shape": "Round",
                "Model Name": "Round Stic Xtra Life Ball Pen",
                "Item dimensions L x W x H": "4.25 x 2.75 x 6.5 inches",
                "Color": "Black",
                "Item Diameter": "1 Millimeters",
                "Item model number": "GSM609-Blk",
                "Manufacturer Part Number": "GSM609-Blk",
                "Hand Orientation": "Ambidextrous",
                "Material": "Plastic",
                "Model Number": "GSM609-Blk",
                "Hardness": "HB",
                "Pencil Lead Degree (Hardness)": "HB",
                "Line Size": "1.0-1.9mm",
                "Grip Type": "standard",
                "Brand Name": "BIC",
                "Brand": "BIC",
                "Additional Features": "Refillable",
                "Item Dimensions": "4.25 x 2.75 x 6.5 inches",
                "Age Range (Description)": "Adult",
                "Closure Type": "Retractable",
                "Item Weight": "9.76 ounces"
            },
            "productDetails": {},
            "productVariations": {
                "dimensions": [
                    {
                        "index": 0,
                        "displayString": "Size",
                        "dimensionValues": [
                            {
                                "index": 0,
                                "displayString": "60 Count (Pack of 1)"
                            },
                            {
                                "index": 1,
                                "displayString": "120 Count (Pack of 1)"
                            }
                        ]
                    }
                ],
                "variations": [
                    {
                        "asin": "B0012YVGOW",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 0
                            }
                        ]
                    },
                    {
                        "asin": "B08816N8SG",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 1
                            }
                        ]
                    }
                ]
            },
            "customerReviewsSummary": {
                "numberOfRatings": null,
                "starRating": null
            },
            "productDescription": "The BIC Round Stic Xtra Life Ballpoint Pens is a dependable favorite that offers performance and value, making it the #1 selling ball pen in the US. Great for daily use at home, school, or the office, this pen writes 90% longer on average than Paper mate Ink Joy 100 Ball Stick Pen. These ink pens feature a versatile 1.0 mm medium point that creates vivid lines and has a reliable tungsten carbide ball point that spreads the ink smoothly and evenly, making it ideal for a variety of writing applications from note-taking to doodling. The flexible round barrel rests comfortably in your hand, while the translucent barrel shows the remaining ink supply, so you know when you're running low. BIC Round Stic Xtra Life Ballpoint Pens are non-refillable and packaging may vary. Source: The NPD Group/ Retail Tracking Service/ U. S. Actual Unit Sales (Retail & Commercial Combined)/ Jul 2016-Jun 2017 Paper Mate and Ink Joy are trademarks of Newell or an affiliate. Newell has not sponsored or approved and is not affiliated with this BIC branded product.",
            "upcValues": [],
            "eanValues": [],
            "modelNumber": null,
            "manufacturerName": null,
            "bundleQuantity": null,
            "badges": [
                {
                    "fragment": {
                        "title": "#1 Best Seller",
                        "message": null,
                        "link": {
                            "text": "Ballpoint Pens",
                            "url": "https://www.amazon.com/gp/bestsellers/office-products/6156513011?language=en_US"
                        },
                        "type": "BESTSELLER_BADGE",
                        "fragments": null
                    }
                }
            ]
        },
        {
            "asin": "B06WGMTMVM",
            "asinType": "STANDARD",
            "signedProductId": "amzn1.business.asin.HQWHEKFRPQDEMLU22UYGI2LRMFZG423ZORUGOZLEG5ZGMY3BONQWGEJUVBTZPF7HONOJ36FULDS6KVUKGABYJ5OAJVLSPT6ZZZW6YWUWGQVZNNB275TWGIDEYOS26MDWS3POWIK46IOBDLXCGNDEDLPTYI77USKEL3LDQVFWFFFMYLY6ECXA",
            "includedDataTypes": {},
            "features": [
                "One 144-count pack of BIC Round Stic Xtra Life Black Ballpoint Pens",
                "Versatile 1.0mm medium point pens are ultra long lasting and the No. 1 selling ballpoint pens in the US",
                "Reliable BIC pens that spread the black ink smoothly and evenly, providing consistent ink flow",
                "Writing pens with a translucent barrel shows the current ink supply, so you can know when to grab a new pen from the pack",
                "Dependable ball point pens bulk pack with a round, comfortable barrel design and frosted cap — a sleek, practical choice for office or school supplies"
            ],
            "editorialReviews": [],
            "taxonomies": [
                {
                    "taxonomyCode": "44121704",
                    "title": "Ball point pens",
                    "type": "UNSPSC"
                },
                {
                    "taxonomyCode": "24240503",
                    "title": "",
                    "type": "ECLASS"
                }
            ],
            "packageTypeNames": [],
            "title": "BIC Round Stic Xtra Life Black Ballpoint Pens, Medium Point (1.0mm), 144-Count Pack of Bulk Pens, Flexible Round Barrel for Writing Comfort, No. 1 Selling Ballpoint Pens",
            "url": "https://www.amazon.com/dp/B06WGMTMVM?ref_=ab_psdp",
            "format": null,
            "bookInformation": {
                "isbn": {
                    "isbn10": null,
                    "isbn13": null
                },
                "publicationDate": null,
                "publishedLanguage": null
            },
            "byLine": [],
            "mediaInformation": {
                "editions": [],
                "mediaFormats": []
            },
            "productOverview": {
                "Date First Available": "March 7, 2017",
                "Closure": "Snap",
                "Unit Count": "144.0 Count",
                "Recommended Uses For Product": "Writing",
                "Included Components": "BIC Xtra Life Round Stic Black Ball Pens 144 ct",
                "Size": "144 Count (Pack of 1)",
                "Age Range Description": "Adult",
                "Writing Instrument Form": "Ballpoint Pen",
                "Global Trade Identification Number": "00070330524873",
                "ASIN": "B06WGMTMVM",
                "UPC": "070330524873",
                "Material Type": "Plastic Resin",
                "Product Dimensions": "6.44 x 4.38 x 6.13 inches",
                "Is Discontinued By Manufacturer": "No",
                "Point Type": "Medium",
                "Drill Point": "Medium",
                "Ink Color": "Black",
                "Ink Base": "Water",
                "Item Hardness": "HB",
                "Manufacturer": "BIC",
                "Style": "Pen",
                "Number of Items": "1",
                "Special Feature": "Refillable",
                "Pattern": "Single",
                "Body Shape": "Round",
                "Model Name": "BIC Round Stic Xtra Life Ballpoint Ink Pens",
                "Item dimensions L x W x H": "6.44 x 4.38 x 6.13 inches",
                "Color": "Black",
                "Item model number": "GSM144AZ BLK",
                "Manufacturer Part Number": "GSM144AZ BLK",
                "Hand Orientation": "Ambidextrous",
                "Material": "Plastic Resin",
                "Model Number": "GSM144AZ BLK",
                "Hardness": "HB",
                "Pencil Lead Degree (Hardness)": "HB",
                "Line Size": "1.0-1.9mm",
                "Grip Type": "Smooth",
                "Brand Name": "BIC",
                "Brand": "BIC",
                "Additional Features": "Refillable",
                "Item Dimensions": "6.44 x 4.38 x 6.13 inches",
                "Age Range (Description)": "Adult",
                "Closure Type": "Snap",
                "Item Weight": "1.7 Pounds"
            },
            "productDetails": {},
            "productVariations": {
                "dimensions": [
                    {
                        "index": 0,
                        "displayString": "Number of Items",
                        "dimensionValues": [
                            {
                                "index": 0,
                                "displayString": "1"
                            },
                            {
                                "index": 1,
                                "displayString": "6"
                            }
                        ]
                    }
                ],
                "variations": [
                    {
                        "asin": "B06WGMTMVM",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 0
                            }
                        ]
                    },
                    {
                        "asin": "B088BXWZSL",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 1
                            }
                        ]
                    }
                ]
            },
            "customerReviewsSummary": {
                "numberOfRatings": null,
                "starRating": null
            },
            "productDescription": "The BIC Round Stic Xtra Life Ballpoint Black Pens are a dependable favorite that offers performance and value. These ink pens writes 90% longer on average than Papermate InkJoy 100 Ball Stick Pen.** Black pens feature a versatile 1.0mm pens medium point that creates vivid lines, making it ideal for a variety of writing applications from note-taking to doodling. The ink pen comes with a reliable tungsten carbide ball point that spreads the ink smoothly and evenly. The flexible round barrel rests comfortably in your hand, while the translucent barrel shows the remaining colored pens ink supply, so you know when you're running low. BIC Round Stic Xtra Life Ballpoint Pens are non-refillable. Available in red pens, blue pens and black pens.",
            "upcValues": [],
            "eanValues": [],
            "modelNumber": null,
            "manufacturerName": null,
            "bundleQuantity": null,
            "badges": []
        },
        {
            "asin": "B07ZJN7HYY",
            "asinType": "STANDARD",
            "signedProductId": "amzn1.business.asin.YGKCW36LYMMFLADOHQMGI2LRMFZG423ZORUGOZLEG5ZGMY3BONQ636K5X2V6U2ZXD77CDD4TLU3BAWMUCNNC452Q57SFT7XCLQJ7RRIWF6HRSJPZRLIQDP66G7DZD23ZVDRAXB7JLEPYBRCX5PTUVZ23JMGWQLM2WHNJZPVOB35N6MI5WIZA",
            "includedDataTypes": {},
            "features": [
                "Bulk Pens: Black and blue color stick ballpoint pen included in set, 240 count 120 black 1.0 pens and 120 blue pens 1.0 .",
                "Box of Pens: Translucent barrel of black and blue pens shows the ink level, great for everyday and to use for office pens, signature pens, classroom school supplies for adults and kids .",
                "Bic Stick flexible ballpoint pen round barrel 1.0 pens for writing comfort, ideal to use in a notebook, journal, planner, legal pad, on invitation cards, and almost any paper surface .",
                "Bic pens Blue and Black Reliable tungsten carbide ball spreads ink smoothly and consistently. Experience a smooth writing pen like never before. Blue Bic pens Bulk and Black Bic pens bulk.",
                "Durable and Reliable: Trusted Bic quality at a bulk pens cheap price ensures that these bulk pens are both cheap and long-lasting ."
            ],
            "editorialReviews": [],
            "taxonomies": [
                {
                    "taxonomyCode": "44121700",
                    "title": "Writing instruments",
                    "type": "UNSPSC"
                },
                {
                    "taxonomyCode": "24240503",
                    "title": "",
                    "type": "ECLASS"
                }
            ],
            "packageTypeNames": [],
            "title": "BIC PENS Bulk Pack of 240 Ink Pens, Bic Round Stic Xtra Life Ballpoint , Medium point 1.0 mm, 120 Black & 120 Blue Bic Pens Combo Pack in Bulk",
            "url": "https://www.amazon.com/dp/B07ZJN7HYY?ref_=ab_psdp",
            "format": null,
            "bookInformation": {
                "isbn": {
                    "isbn10": null,
                    "isbn13": null
                },
                "publicationDate": null,
                "publishedLanguage": null
            },
            "byLine": [],
            "mediaInformation": {
                "editions": [],
                "mediaFormats": []
            },
            "productOverview": {
                "Date First Available": "October 24, 2019",
                "Closure": "Click-Off Cap",
                "Unit Count": "240 Count",
                "Recommended Uses For Product": "Office",
                "Included Components": "120 black pens, 120 blue pens",
                "Size": "240 Count (Pack of 1)",
                "Age Range Description": "Kid, Adult",
                "Writing Instrument Form": "Ballpoint Pen",
                "Global Trade Identification Number": "20070330534241",
                "ASIN": "B07ZJN7HYY",
                "UPC": "808233049601 070330534247",
                "Material Type": "Plastic",
                "Point Type": "Medium",
                "Drill Point": "Medium",
                "Ink Color": "Black,Blue",
                "Item Hardness": "HB",
                "Manufacturer": "BIC",
                "Style": "Refillable",
                "Special Feature": "Flexible",
                "Body Shape": "Round",
                "Model Name": "bic",
                "Package Dimensions": "8.78 x 6.5 x 5 inches",
                "Color": "Black/Blue",
                "Item model number": "GSM",
                "Manufacturer Part Number": "GSM",
                "Hand Orientation": "Ambidextrous",
                "Material": "Plastic",
                "Model Number": "GSM",
                "Hardness": "HB",
                "Pencil Lead Degree (Hardness)": "HB",
                "Line Size": "1.0-1.9mm",
                "Grip Type": "Contoured",
                "Brand Name": "BIC",
                "Brand": "BIC",
                "Theme": "Office Supplies",
                "Additional Features": "Flexible",
                "Age Range (Description)": "Kid, Adult",
                "Closure Type": "Click-Off Cap",
                "Item Weight": "1 Kilograms"
            },
            "productDetails": {},
            "productVariations": {
                "dimensions": [],
                "variations": []
            },
            "customerReviewsSummary": {
                "numberOfRatings": null,
                "starRating": null
            },
            "productDescription": "The BIC Round Stic Xtra Life Ball Pen comes with a versatile 1.0mm medium point that creates vivid lines, making it suitable for a wide variety of writing activities.These reliable pens feature a durable tungsten carbide ballpoint that releases ink consistently and evenly.The translucent barrel lets you see the remaining ink supply, while the flexible round barrel design keeps you comfortable during extended writing sessions.",
            "upcValues": [],
            "eanValues": [],
            "modelNumber": null,
            "manufacturerName": null,
            "bundleQuantity": null,
            "badges": []
        },
        {
            "asin": "B00H14PM9W",
            "asinType": "STANDARD",
            "signedProductId": "amzn1.business.asin.VFCRB5H3WIF6JC6P7B6WI2LRMFZG423ZORUGOZLEG5ZGMY3BONQT3MBPCMR7GYEZQF644QHAN4ER7Z43EG2XVPEUEQCXN2U6TLGNUZEUHJOY6WBJTGIN57TIPPWXJADHL72NXOFBZVAQLBIRMBTUCVJOTSVBCMBFL5P6KL35P7HNIZJ6PUCQ",
            "includedDataTypes": {},
            "features": [
                "One 36-count pack of BIC Soft Feel Assorted Colors Retractable Ballpoint Pens, a perfect pen pack for note taking",
                "Versatile 1.0mm medium point ball point pens that are great for everyday writing at work, school or home",
                "BIC ball point pens with smooth ink write fluidly and effortlessly, creating clear, dark lines, making them ideal as black gel pens",
                "Ball point pens with no-slip, soft-feel grip is comfortable and ideal for longer writing sessions, perfect as journal pens or pens for school",
                "Convenient retractable blue and black ball point pens with a full-length comfortable grip and plastic clip, a great addition to your school supplies or office pens collection"
            ],
            "editorialReviews": [],
            "taxonomies": [
                {
                    "taxonomyCode": "44121704",
                    "title": "Ball point pens",
                    "type": "UNSPSC"
                },
                {
                    "taxonomyCode": "24240503",
                    "title": "",
                    "type": "ECLASS"
                }
            ],
            "packageTypeNames": [],
            "title": "BIC Soft Feel Assorted Colors Retractable Ballpoint Pens, Medium Point (1.0mm), 36-Count Pack, Black and Blue Pens With Soft-Touch Comfort Grip, Perfect Color Pens For Note Taking",
            "url": "https://www.amazon.com/dp/B00H14PM9W?ref_=ab_psdp",
            "format": null,
            "bookInformation": {
                "isbn": {
                    "isbn10": null,
                    "isbn13": null
                },
                "publicationDate": null,
                "publishedLanguage": null
            },
            "byLine": [],
            "mediaInformation": {
                "editions": [],
                "mediaFormats": []
            },
            "productOverview": {
                "Date First Available": "December 1, 2013",
                "Closure": "Retractable",
                "Unit Count": "36.0 Count",
                "Recommended Uses For Product": "Writing",
                "Included Components": "Writing Instruments and Accessories, Ballpoint/Rollerball/Gel (Writing Instruments and Accessories), Gel Ink Rollerball Pen",
                "Size": "36 Count (Pack of 1)",
                "Age Range Description": "Adult",
                "Writing Instrument Form": "Ballpoint Pen",
                "Global Trade Identification Number": "20070330196500, 00070330196506, 00804993357291",
                "ASIN": "B00H14PM9W",
                "UPC": "827165693300 640026633907 804993357291 806791895609 070330196506 300716898589 357665983323 689711893837 640206712385",
                "Material Type": "Rubber",
                "Product Dimensions": "2.5 x 5.5 x 3.63 inches",
                "Is Discontinued By Manufacturer": "No",
                "Point Type": "Medium",
                "Drill Point": "Medium",
                "Department": "Male",
                "Ink Color": "Black/Blue",
                "Ink Base": "Oil",
                "Item Hardness": "Soft",
                "Manufacturer": "BIC Corporation",
                "Style": "Medium",
                "Number of Items": "1",
                "Special Feature": "Retractable, Soft Grip, Non Slip Grip,",
                "Pattern": "Pens",
                "Body Shape": "Round",
                "Model Name": "SoftFeel",
                "Item dimensions L x W x H": "2.5 x 5.5 x 3.63 inches",
                "Color": "Black & Blue",
                "Item Diameter": "1 Millimeters",
                "Item model number": "SCSM361-AST",
                "Manufacturer Part Number": "SCSM361-AST",
                "Hand Orientation": "Ambidextrous",
                "Material": "Rubber",
                "Model Number": "SCSM361-AST",
                "Hardness": "Soft",
                "Pencil Lead Degree (Hardness)": "Soft",
                "Line Size": "1.00 Pen",
                "Grip Type": "Soft, Comfort, Cushioned",
                "Brand Name": "BIC",
                "Brand": "BIC",
                "Additional Features": "Retractable, Soft Grip, Non Slip Grip,",
                "Item Dimensions": "2.5 x 5.5 x 3.63 inches",
                "Age Range (Description)": "Adult",
                "Closure Type": "Retractable",
                "Item Weight": "0.49 Pounds"
            },
            "productDetails": {},
            "productVariations": {
                "dimensions": [
                    {
                        "index": 0,
                        "displayString": "Style",
                        "dimensionValues": [
                            {
                                "index": 0,
                                "displayString": "Medium"
                            },
                            {
                                "index": 1,
                                "displayString": "Fine"
                            }
                        ]
                    },
                    {
                        "index": 1,
                        "displayString": "Pattern",
                        "dimensionValues": [
                            {
                                "index": 0,
                                "displayString": "Pens"
                            }
                        ]
                    },
                    {
                        "index": 2,
                        "displayString": "Color",
                        "dimensionValues": [
                            {
                                "index": 0,
                                "displayString": "Black"
                            },
                            {
                                "index": 1,
                                "displayString": "Black & Blue"
                            },
                            {
                                "index": 2,
                                "displayString": "Blue"
                            },
                            {
                                "index": 3,
                                "displayString": "Red"
                            }
                        ]
                    }
                ],
                "variations": [
                    {
                        "asin": "B00006IE82",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 0
                            },
                            {
                                "index": 1,
                                "value": 0
                            },
                            {
                                "index": 2,
                                "value": 0
                            }
                        ]
                    },
                    {
                        "asin": "B00H14PM9W",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 0
                            },
                            {
                                "index": 1,
                                "value": 0
                            },
                            {
                                "index": 2,
                                "value": 1
                            }
                        ]
                    },
                    {
                        "asin": "B0154YYJGW",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 0
                            },
                            {
                                "index": 1,
                                "value": 0
                            },
                            {
                                "index": 2,
                                "value": 2
                            }
                        ]
                    },
                    {
                        "asin": "B001E65H70",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 0
                            },
                            {
                                "index": 1,
                                "value": 0
                            },
                            {
                                "index": 2,
                                "value": 3
                            }
                        ]
                    },
                    {
                        "asin": "B000GATVZE",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 1
                            },
                            {
                                "index": 1,
                                "value": 0
                            },
                            {
                                "index": 2,
                                "value": 0
                            }
                        ]
                    },
                    {
                        "asin": "B001E673ZY",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 1
                            },
                            {
                                "index": 1,
                                "value": 0
                            },
                            {
                                "index": 2,
                                "value": 2
                            }
                        ]
                    }
                ]
            },
            "customerReviewsSummary": {
                "numberOfRatings": null,
                "starRating": null
            },
            "productDescription": "Experience soft-touch comfort when writing with BIC Soft Feel Assorted Colors Retractable Ballpoint Pens. These assorted ball pens are great for everyday writing at work, school or home with their 1.0mm medium point. These ball point pens have smooth ink that writes fluidly and effortlessly. With a comfortable grip, they’re the ideal ball point pens for writing lists, taking notes, journaling and more. This BIC pens bulk pack is a smart choice for adding to school supplies or office supplies. The round barrel features a no-slip grip that offers a comfortable hold, making it ideal for prolonged writing sessions. Plus, the plastic clip easily attaches to pockets, notebooks and more for quick access on the go. Designed for convenience, these retractable medium point pens let you start writing with just one click. These blue and black pens are smooth writing pens that are easier to use for long periods of time than a standard ballpoint. With this 36-count pack of pens with both black ink pens and blue ink pens, you can stock up on dependable BIC ballpoint pens. Looking for reliable pens for school or office supplies? Choose BIC Soft Feel Assorted Colors Retractable Ballpoint Pens for a high-quality, affordable product you can trust.",
            "upcValues": [],
            "eanValues": [],
            "modelNumber": null,
            "manufacturerName": null,
            "bundleQuantity": null,
            "badges": []
        },
        {
            "asin": "B082PN4X5J",
            "asinType": "STANDARD",
            "signedProductId": "amzn1.business.asin.SL7IC3HCOJ4OT7PY5SAGI2LRMFZG423ZORUGOZLEG5ZGMY3BONQQI7DW6R4ZXCIZS6DAAVQOB3LIV5QEOZ4RS4IOOVWPTTKVOBNBJ7RACFWYXO5JCL4UBEANFZFJRHNCXQ4VNDG5VV3ZN6MUFKWYHZBQVGWHTAHKQLYULTSJI5EVYVQTQSXA",
            "includedDataTypes": {},
            "features": [
                "Gel pen with no smear, no bleed technology",
                "Intensely bold gel ink colors offer always vivid writing",
                "Contoured rubber grip for a comfortable writing experience",
                "Medium Point (0.7mm)",
                "Includes 12 black gel ink pens"
            ],
            "editorialReviews": [],
            "taxonomies": [
                {
                    "taxonomyCode": "44121700",
                    "title": "Writing instruments",
                    "type": "UNSPSC"
                },
                {
                    "taxonomyCode": "24240000",
                    "title": "",
                    "type": "ECLASS"
                }
            ],
            "packageTypeNames": [],
            "title": "Sharpie S-Gel, Gel Pens, Drawing Pens, Gel Ink Pens For Journaling, Writing Pens, Coloring Pens, Medium Point Pens (0.7Mm), Black Barrel, Black Gel Ink, 12 Count",
            "url": "https://www.amazon.com/dp/B082PN4X5J?ref_=ab_psdp",
            "format": null,
            "bookInformation": {
                "isbn": {
                    "isbn10": null,
                    "isbn13": null
                },
                "publicationDate": null,
                "publishedLanguage": null
            },
            "byLine": [],
            "mediaInformation": {
                "editions": [],
                "mediaFormats": []
            },
            "productOverview": {
                "Date First Available": "January 1, 2020",
                "Closure": "Retractable",
                "Unit Count": "12 Count",
                "Recommended Uses For Product": "Journal",
                "Included Components": "12 Black Gel Ink Pens",
                "Size": "12 Count (Pack of 1)",
                "Age Range Description": "Adult",
                "Writing Instrument Form": "Ballpoint Pen",
                "Global Trade Identification Number": "00071641171855",
                "ASIN": "B082PN4X5J",
                "UPC": "071641171855",
                "Material Type": "Plastic",
                "Product Dimensions": "1.1 x 2.88 x 5.86 inches",
                "Point Type": "Medium",
                "Drill Point": "Medium",
                "Ink Color": "Black",
                "Ink Base": "Hybrid",
                "Item Hardness": "HB",
                "Manufacturer": "Sharpie",
                "Style": "12-Count",
                "Number of Items": "1",
                "Special Feature": "Retractable",
                "Pattern": "Gel",
                "Body Shape": "Round",
                "Model Name": "S-Gel, Gel Pens,",
                "Item dimensions L x W x H": "1.1 x 2.88 x 5.86 inches",
                "Color": "Black",
                "Item model number": "2096159",
                "Manufacturer Part Number": "2096159",
                "Hand Orientation": "Right Hand",
                "Material": "Plastic",
                "Model Number": "2096159",
                "Hardness": "HB",
                "Pencil Lead Degree (Hardness)": "HB",
                "Line Size": "0.70 Pen",
                "Grip Type": "Comfort",
                "Brand Name": "SHARPIE",
                "Brand": "SHARPIE",
                "Water Resistance Level": "Water Resistant",
                "Additional Features": "Retractable",
                "Item Dimensions": "1.1 x 2.88 x 5.86 inches",
                "Age Range (Description)": "Adult",
                "Closure Type": "Retractable",
                "Item Weight": "0.2 Pounds"
            },
            "productDetails": {},
            "productVariations": {
                "dimensions": [
                    {
                        "index": 0,
                        "displayString": "Size",
                        "dimensionValues": [
                            {
                                "index": 0,
                                "displayString": "4 Count (Pack of 1)"
                            },
                            {
                                "index": 1,
                                "displayString": "12 Count (Pack of 1)"
                            },
                            {
                                "index": 2,
                                "displayString": "36 Count (Pack of 1)"
                            }
                        ]
                    }
                ],
                "variations": [
                    {
                        "asin": "B082PMRSBK",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 0
                            }
                        ]
                    },
                    {
                        "asin": "B082PN4X5J",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 1
                            }
                        ]
                    },
                    {
                        "asin": "B082PMZQKY",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 2
                            }
                        ]
                    }
                ]
            },
            "customerReviewsSummary": {
                "numberOfRatings": null,
                "starRating": null
            },
            "productDescription": "The power of Sharpie is now in a gel pen with the Sharpie S-Gel. With no smear, no bleed technology and bold, best-in-class ink, this Sharpie pen delivers always-vivid writing. It’s a high-performance gel pen with a sleek, professional look that makes it a writing instrument you won't want to loan out. And the contoured rubber grip makes for comfortable writing during any task. Available in multiple point sizes, barrel finishes and gel ink colors, Sharpie S-Gel offers a smooth writing experience perfect for homes, schools, or offices.",
            "upcValues": [],
            "eanValues": [],
            "modelNumber": null,
            "manufacturerName": null,
            "bundleQuantity": null,
            "badges": []
        },
        {
            "asin": "B00OCPFPK4",
            "asinType": "STANDARD",
            "signedProductId": "amzn1.business.asin.L44EBFRB4WMOD3WHHH4GI2LRMFZG423ZORUGOZLEG5ZGMY3BONQ535YWVYL7RCRVLGKVOLOU444J4DFSHZKXGEDI7PKN2AJCDOFU2XZVA7FRJM7LE6MQ55OMLBQEHC5UD5LVVJFYHA7NXR3IYL2KZIY2CZYEQ2HS6MVUUZAIT3H3KNW2KTBQ",
            "includedDataTypes": {},
            "features": [
                "Sold as 36/Pack.",
                "Proven #1 Longest Writing Gel Ink Pen vs. the average of top gel ink brands.",
                "Provides smooth, skip-free writing.",
                "Contoured rubber grip offers writing comfort and control.",
                "Great for everyone, especially people who write for a living."
            ],
            "editorialReviews": [],
            "taxonomies": [
                {
                    "taxonomyCode": "44121700",
                    "title": "Writing instruments",
                    "type": "UNSPSC"
                },
                {
                    "taxonomyCode": "24240000",
                    "title": "",
                    "type": "ECLASS"
                }
            ],
            "packageTypeNames": [],
            "title": "Pilot 84065 G2 Premium Retractable Gel Ink Pen, Refillable, Black Ink, .7 mm, 36/Pack",
            "url": "https://www.amazon.com/dp/B00OCPFPK4?ref_=ab_psdp",
            "format": null,
            "bookInformation": {
                "isbn": {
                    "isbn10": null,
                    "isbn13": null
                },
                "publicationDate": null,
                "publishedLanguage": null
            },
            "byLine": [],
            "mediaInformation": {
                "editions": [],
                "mediaFormats": []
            },
            "productOverview": {
                "Date First Available": "September 20, 2016",
                "Closure": "Retractable",
                "Unit Count": "36 Count",
                "Recommended Uses For Product": "Writing",
                "Size": "1 Count (Pack of 36)",
                "Age Range Description": "Kid, Teen, Adult",
                "Writing Instrument Form": "Ballpoint Pen",
                "ASIN": "B00OCPFPK4",
                "UPC": "072838840653",
                "Material Type": "Rubber",
                "Product Dimensions": "8.5 x 5.4 x 5.2 inches",
                "Is Discontinued By Manufacturer": "No",
                "Point Type": "Fine",
                "Drill Point": "Fine",
                "Ink Color": "Black",
                "Ink Base": "Water",
                "Item Hardness": "HB",
                "Manufacturer": "Pilot",
                "Style": "Refillable",
                "Number of Items": "36",
                "Special Feature": "Retractable",
                "Body Shape": "Round",
                "Item dimensions L x W x H": "8.5 x 5.4 x 5.2 inches",
                "Color": "Black",
                "Item model number": "G2",
                "Manufacturer Part Number": "84065",
                "Hand Orientation": "Ambidextrous",
                "Material": "Rubber",
                "Model Number": "G2",
                "Hardness": "HB",
                "Pencil Lead Degree (Hardness)": "HB",
                "Line Size": "0.7 Millimeters",
                "Grip Type": "Rubber",
                "Brand Name": "PILOT",
                "Brand": "PILOT",
                "Additional Features": "Retractable",
                "Item Dimensions": "8.5 x 5.4 x 5.2 inches",
                "Age Range (Description)": "Kid, Teen, Adult",
                "Closure Type": "Retractable",
                "Item Weight": "1.3 Pounds"
            },
            "productDetails": {},
            "productVariations": {
                "dimensions": [],
                "variations": []
            },
            "customerReviewsSummary": {
                "numberOfRatings": null,
                "starRating": null
            },
            "productDescription": "G2 is the longest writing gel ink pen (Independent ISO testing. Data on file with Pilot Corporation of America). Provides smooth, skip-free writing. Contoured rubber grip offers writing comfort and control. Great for everyone, especially people who write for a living. Retractable and refillable. Point Size: 0.7 mm; Point Type: Fine; Ink Color(s): Black; Pen Type: Roller Ball.",
            "upcValues": [],
            "eanValues": [],
            "modelNumber": null,
            "manufacturerName": null,
            "bundleQuantity": null,
            "badges": []
        },
        {
            "asin": "B00347A8NK",
            "asinType": "STANDARD",
            "signedProductId": "amzn1.business.asin.BQNCU4FEM73UN55PJ7QWI2LRMFZG423ZORUGOZLEG5ZGMY3BONQ2GESZPSGVPSR7567U6WRO3OYELWLXY7X3JNG57F4YYSO44YMMTBCVNHD3BPJJUSFRNWP5F4EQCXSXTBALLBALNSR3LXP7SYO44F2TCSENQFYVTFWJLVL6FUERORPPGHOQ",
            "includedDataTypes": {},
            "features": [
                "One 36-count pack of BIC Round Stic Xtra Life Black Ballpoint Pens",
                "Writing pens with a translucent barrel shows the current ink supply; so you can know when to grab a new pen from the pack",
                "Translucent barrel shows the ink level"
            ],
            "editorialReviews": [],
            "taxonomies": [
                {
                    "taxonomyCode": "44121700",
                    "title": "Writing instruments",
                    "type": "UNSPSC"
                },
                {
                    "taxonomyCode": "24240503",
                    "title": "",
                    "type": "ECLASS"
                }
            ],
            "packageTypeNames": [],
            "title": "BIC Round Stic Xtra Life Ball Point Pen; Black; 36 Pack",
            "url": "https://www.amazon.com/dp/B00347A8NK?ref_=ab_psdp",
            "format": null,
            "bookInformation": {
                "isbn": {
                    "isbn10": null,
                    "isbn13": null
                },
                "publicationDate": null,
                "publishedLanguage": null
            },
            "byLine": [],
            "mediaInformation": {
                "editions": [],
                "mediaFormats": []
            },
            "productOverview": {
                "Date First Available": "January 15, 2010",
                "Closure": "Snap",
                "Unit Count": "36.0 Count",
                "Recommended Uses For Product": "Office",
                "Size": "36 Count (Pack of 1)",
                "Age Range Description": "Adult",
                "Writing Instrument Form": "Ballpoint Pen",
                "Global Trade Identification Number": "00070330181304, 00806254138328",
                "ASIN": "B00347A8NK",
                "UPC": "365293426358 070330181304 719040112900 806254138328",
                "Material Type": "Plastic",
                "Batteries": "1 AA batteries required.",
                "Product Dimensions": "4.25 x 1.56 x 6 inches",
                "Is Discontinued By Manufacturer": "No",
                "Point Type": "Medium",
                "Drill Point": "Medium",
                "Ink Color": "Black",
                "Ink Base": "Oil",
                "Item Hardness": "HB",
                "Manufacturer": "BIC",
                "Style": "Ballpoint Pen",
                "Number of Items": "1",
                "Special Feature": "Flexible",
                "Pattern": "Pen",
                "Body Shape": "Round",
                "Model Name": "BIC Round Stic Xtra Life Black Ballpoint Pens",
                "Item dimensions L x W x H": "4.25 x 1.56 x 6 inches",
                "Color": "Black",
                "Item Diameter": "1 Millimeters",
                "Item model number": "GSM36WM-Blk",
                "Manufacturer Part Number": "RBP36BK",
                "Hand Orientation": "Ambidextrous",
                "Material": "Plastic",
                "Model Number": "GSM36WM-Blk",
                "Hardness": "HB",
                "Pencil Lead Degree (Hardness)": "HB",
                "Line Size": "1.0-1.9mm",
                "Brand Name": "BIC",
                "Brand": "BIC",
                "Additional Features": "Flexible",
                "Item Dimensions": "4.25 x 1.56 x 6 inches",
                "Age Range (Description)": "Adult",
                "Closure Type": "Snap",
                "Item Weight": "2.4 Ounces"
            },
            "productDetails": {},
            "productVariations": {
                "dimensions": [],
                "variations": []
            },
            "customerReviewsSummary": {
                "numberOfRatings": null,
                "starRating": null
            },
            "productDescription": "Combine longevity; consistent performance and smooth writing with BIC Round Stic Xtra Life Black Ballpoint Pens. These 1.0mm medium point pens write 90 percent longer on average compared to PaperMate InkJoy 100 stick ball pens and are No. 1 selling ballpoint pens in the US. Creating clear; vivid lines; they’re the ideal black pens for writing lists; taking notes; journaling and more. The flexible round barrel fits snugly in your hand and offers a controlled yet comfortable hold; making it ideal for prolonged writing sessions. Plus; these writing pens provide consistent ink flow; letting your write smoothly and evenly. With this 36-count black ink pens bulk pack; you can stock up on dependable BIC ballpoint pens. Looking for reliable pens for school or office supplies? Choose BIC Round Stic Xtra Life Black Ballpoint Pens for a high-quality; affordable product you can trust — write first time; every time. *PaperMate and InkJoy are trademarks of Newell or an affiliate. Newell has not sponsored or approved and is not affiliated with this BIC branded product. **The NPD Group/Retail Tracking Service and Commercial Tracking Service; U.S.; based on actual unit sales; 12ME June 2022 combined.",
            "upcValues": [],
            "eanValues": [],
            "modelNumber": null,
            "manufacturerName": null,
            "bundleQuantity": null,
            "badges": []
        },
        {
            "asin": "B09TXL558P",
            "asinType": "STANDARD",
            "signedProductId": "amzn1.business.asin.A4QSJUZNX5CPWSHJQJ5GI2LRMFZG423ZORUGOZLEG5ZGMY3BONQQVYKQJGSERD5TPY66ZXGBVXCCFB3UDAMUSVXYVJEUXG7YYPRDYOMRBI4ZOEWBVPFJAQRMG2VKU4JZ2J3FNXU6LY4LNA5DW3MXIZX746H2I5NO3OL4PESWF7BHMIYHZKGA",
            "includedDataTypes": {},
            "features": [
                "SOFT TOUCH: Each pens with soft touch surface treatment, having a great grip feeling",
                "SMOOTH WRITING:1.0MM black ink make wiriting easy.It's also no bleed in onion paper",
                "GREAT VALUE: Single price less than a quarter.It's a valuable choice for office,class,restaurant,workshop",
                "MODERN DESIGN: Simple pen shape with retro style barrel coloring. let your writing job full of colorful",
                "RELIABLE SUPPLIER: Deegtran's products are all producted by experienced pen supplier. Besides, 100% in time after-sales service be proivded"
            ],
            "editorialReviews": [],
            "taxonomies": [
                {
                    "taxonomyCode": "44121700",
                    "title": "Writing instruments",
                    "type": "UNSPSC"
                },
                {
                    "taxonomyCode": "24240000",
                    "title": "",
                    "type": "ECLASS"
                }
            ],
            "packageTypeNames": [],
            "title": "deegtran Pens Bulk, 100 Pack No Bleed Black Barrel Click Pens, Wholesale Retractable Ballpoint Pens, Pens Medium Point, Smooth Ink Pens, 1.0MM Black Ink",
            "url": "https://www.amazon.com/dp/B09TXL558P?ref_=ab_psdp",
            "format": null,
            "bookInformation": {
                "isbn": {
                    "isbn10": null,
                    "isbn13": null
                },
                "publicationDate": null,
                "publishedLanguage": null
            },
            "byLine": [],
            "mediaInformation": {
                "editions": [],
                "mediaFormats": []
            },
            "productOverview": {
                "Date First Available": "March 5, 2022",
                "Closure": "Retractable",
                "Unit Count": "100.0 Count",
                "Recommended Uses For Product": "Drafting, Writing",
                "Size": "1 Count (Pack of 100)",
                "Age Range Description": "Adult",
                "Writing Instrument Form": "Ballpoint Pen",
                "ASIN": "B09TXL558P",
                "Material Type": "Acrylonitrile Butadiene Styrene",
                "Point Type": "Medium",
                "Drill Point": "Medium",
                "Ink Color": "Black",
                "Ink Base": "Water",
                "Manufacturer": "deegtran",
                "Style": "Modern",
                "Number of Items": "100",
                "Special Feature": "Non Smear, Retractable, Ergonomic, Lightweight, Eco Friendly",
                "Body Shape": "Round",
                "Model Name": "DGMC005",
                "Package Dimensions": "6.42 x 6.02 x 3.5 inches",
                "Color": "Black",
                "Item model number": "DGMC005",
                "Manufacturer Part Number": "DGMC005200",
                "Hand Orientation": "Ambidextrous",
                "Material": "Acrylonitrile Butadiene Styrene",
                "Model Number": "DGMC005",
                "Line Size": "1 Millimeters",
                "Grip Type": "Ribbed",
                "Brand Name": "deegtran",
                "Brand": "deegtran",
                "Theme": "Number",
                "Additional Features": "Non Smear, Retractable, Ergonomic, Lightweight, Eco Friendly",
                "Age Range (Description)": "Adult",
                "Closure Type": "Retractable"
            },
            "productDetails": {},
            "productVariations": {
                "dimensions": [
                    {
                        "index": 0,
                        "displayString": "Color",
                        "dimensionValues": [
                            {
                                "index": 0,
                                "displayString": "Black"
                            },
                            {
                                "index": 1,
                                "displayString": "Dark Blue"
                            },
                            {
                                "index": 2,
                                "displayString": "Dark Green"
                            },
                            {
                                "index": 3,
                                "displayString": "Deep Red"
                            },
                            {
                                "index": 4,
                                "displayString": "Deep Red, Dark Blue, Dark Green, Black"
                            },
                            {
                                "index": 5,
                                "displayString": "Hot Pink"
                            },
                            {
                                "index": 6,
                                "displayString": "Orange"
                            },
                            {
                                "index": 7,
                                "displayString": "Pink"
                            },
                            {
                                "index": 8,
                                "displayString": "Purple"
                            },
                            {
                                "index": 9,
                                "displayString": "Teal Blue"
                            }
                        ]
                    }
                ],
                "variations": [
                    {
                        "asin": "B09TXL558P",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 0
                            }
                        ]
                    },
                    {
                        "asin": "B09TXMCR88",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 1
                            }
                        ]
                    },
                    {
                        "asin": "B09TXLGPT4",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 2
                            }
                        ]
                    },
                    {
                        "asin": "B09TXLPKMN",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 3
                            }
                        ]
                    },
                    {
                        "asin": "B09K5QG1M8",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 4
                            }
                        ]
                    },
                    {
                        "asin": "B0CMLW86RW",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 5
                            }
                        ]
                    },
                    {
                        "asin": "B0CML924DR",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 6
                            }
                        ]
                    },
                    {
                        "asin": "B0C76V41NT",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 7
                            }
                        ]
                    },
                    {
                        "asin": "B0C76L28LQ",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 8
                            }
                        ]
                    },
                    {
                        "asin": "B0C98ZF9NG",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 9
                            }
                        ]
                    }
                ]
            },
            "customerReviewsSummary": {
                "numberOfRatings": null,
                "starRating": null
            },
            "productDescription": "Deegtran Pens Bulk, 100 Pack No Bleed Black Click Pens, Wholesale Retractable Ballpoint Pens, Pens Medium Point, Smooth Ink Pens, 1.0MM Black Ink",
            "upcValues": [],
            "eanValues": [],
            "modelNumber": null,
            "manufacturerName": null,
            "bundleQuantity": null,
            "badges": []
        },
        {
            "asin": "B08G1FSHYZ",
            "asinType": "STANDARD",
            "signedProductId": "amzn1.business.asin.5I7R4XUINOPIZAARHG3WI2LRMFZG423ZORUGOZLEG5ZGMY3BONQ67MYPYVETFNFFZI3PZJYFCB4D5UCZMYSAC5OUJSQPDLDGWSQG3HIYQPQO2HCG6C6UMOCK2GMEE4PNKC7STPY7CQ6VOVBGSOLFXGFWB4IJHHRKS4IJSMRM3HIPM2T7MDZQ",
            "includedDataTypes": {},
            "features": [
                "Long Lasting Ink: Large ink tube is filled with more ink for our gel pens, which makes our black pens long lasting. Quick drying makes you stay away from smearing, and left handed people can easily use it.",
                "Comfortable Design: Premium rubber grips make each gel pen easy to hold and let you work without fatigue. Also durable Pocket clip is convenient and easy to carry with your notebook.",
                "Unlimited Uses: 0.7mm Fine Point, Retractable Gel Ink Pens are ideal for school, office and home use. Flow smoothly and evenly in every piece pens. They are suitable for writing notes, bullet journal, dairy drawing and more.",
                "Value for Money: We stand behind the quality and price of our products. You will find more pens but less cost at Aen Art. Compare the writing experience of our gel pens on paper with other named brands.",
                "Environmentally Friendly: All of our pens are made from Environmentally & Friendly Materials. Non-Toxic & Acid Free. We hope you are delighted with your purchase. If not, We will do our best to make things right after you contacted us for help."
            ],
            "editorialReviews": [],
            "taxonomies": [
                {
                    "taxonomyCode": "44121701",
                    "title": "Rollerball pens",
                    "type": "UNSPSC"
                },
                {
                    "taxonomyCode": "24240701",
                    "title": "",
                    "type": "ECLASS"
                }
            ],
            "packageTypeNames": [],
            "title": "Gel Pens, 30 Pack Black Gel Pen Fine Point, Retractable Gel Ink Rollerball Pens for Smooth Writing (0.7mm) Back to School Supplies",
            "url": "https://www.amazon.com/dp/B08G1FSHYZ?ref_=ab_psdp",
            "format": null,
            "bookInformation": {
                "isbn": {
                    "isbn10": null,
                    "isbn13": null
                },
                "publicationDate": null,
                "publishedLanguage": null
            },
            "byLine": [],
            "mediaInformation": {
                "editions": [],
                "mediaFormats": []
            },
            "productOverview": {
                "Date First Available": "February 19, 2021",
                "Closure": "Retractable",
                "Unit Count": "30 Count",
                "Recommended Uses For Product": "Office",
                "Included Components": "Pocket Clip",
                "Size": "1 Count (Pack of 30)",
                "Age Range Description": "Adult",
                "Writing Instrument Form": "Roller Ball Pen",
                "ASIN": "B08G1FSHYZ",
                "Material Type": "Rubber",
                "Point Type": "Fine",
                "Drill Point": "Fine",
                "Ink Color": "Black",
                "Ink Base": "Water",
                "Item Hardness": "2B",
                "Manufacturer": "Aen Art",
                "Number of Items": "30",
                "Special Feature": "Non Toxic",
                "Body Shape": "Round",
                "Model Name": "Gel",
                "Package Dimensions": "13.39 x 5.75 x 0.75 inches",
                "Color": "Black, Clear",
                "Item model number": "BA43CB-03",
                "Manufacturer Part Number": "BLG-30",
                "Hand Orientation": "Left",
                "Material": "Rubber",
                "Model Number": "BA43CB-03",
                "Hardness": "2B",
                "Pencil Lead Degree (Hardness)": "2B",
                "Line Size": "0.7 Millimeters",
                "Grip Type": "Rubber",
                "Brand Name": "Aen Art",
                "Brand": "Aen Art",
                "Additional Features": "Non Toxic",
                "Age Range (Description)": "Adult",
                "Closure Type": "Retractable",
                "Item Weight": "0.32 Kilograms"
            },
            "productDetails": {},
            "productVariations": {
                "dimensions": [
                    {
                        "index": 0,
                        "displayString": "Line Size",
                        "dimensionValues": [
                            {
                                "index": 0,
                                "displayString": "0.70 Millimeters"
                            }
                        ]
                    }
                ],
                "variations": [
                    {
                        "asin": "B08G1FSHYZ",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 0
                            }
                        ]
                    }
                ]
            },
            "customerReviewsSummary": {
                "numberOfRatings": null,
                "starRating": null
            },
            "productDescription": "Aen Art has been working hard to give customers high quality products and pleasant shopping experience.\nTo ensure the best performance, we produce the products using high-quality raw materials with standard producing technique under strict quality management.\n\n Obsessed with Office Suppliers? We are too! Get ready to write the most elegant to do lists, you and that legal pad!\n At work, home, or anywhere, you need a pen that keeps working even longer than you do. From taking notes to writing your novel by hand, Our gel pens keep the ink and your ideas flowing.\n\n",
            "upcValues": [],
            "eanValues": [],
            "modelNumber": null,
            "manufacturerName": null,
            "bundleQuantity": null,
            "badges": []
        },
        {
            "asin": "B0BHD4SVC8",
            "asinType": "STANDARD",
            "signedProductId": "amzn1.business.asin.B54WFVAV3HYOKEMRSQQWI2LRMFZG423ZORUGOZLEG5ZGMY3BONQQ77ASCKVXSF3WIFKYIEIU62SREG5YTXJO3DLG3TKVQM655DFCOFLJI4HOOKVEJEIBES7EMAOL4OI5FZKGNSNPQXP2GPMPBYA5LROAQ2YLS2IUG3UKNYVZCAC4ZVETI2KQ",
            "includedDataTypes": {},
            "features": [
                "Soft Touch Surface: Each pen has a soft touch surface treatment for a great grip feeling.",
                "Smooth Writing: The 1.0mm black ink allows for easy writing with no bleed through on onion paper.",
                "Great Value: The bulk pack of 50 pens is priced at less than a quarter making it a cost-effective choice for various uses.",
                "Modern Design: The simple pen shape with retro style barrel coloring adds a colorful touch to your writing.",
                "Reliable Supplier: Deegtran is a reputable pen supplier with a focus on quality and timely customer service."
            ],
            "editorialReviews": [],
            "taxonomies": [
                {
                    "taxonomyCode": "44121700",
                    "title": "Writing instruments",
                    "type": "UNSPSC"
                },
                {
                    "taxonomyCode": "24240000",
                    "title": "",
                    "type": "ECLASS"
                }
            ],
            "packageTypeNames": [],
            "title": "deegtran Pens Bulk, 50 Pack No Bleed Black Click Pens, Wholesale Retractable Ballpoint Pens, Pens Medium Point, Smooth Ink Pens, 1.0MM Black Ink",
            "url": "https://www.amazon.com/dp/B0BHD4SVC8?ref_=ab_psdp",
            "format": null,
            "bookInformation": {
                "isbn": {
                    "isbn10": null,
                    "isbn13": null
                },
                "publicationDate": null,
                "publishedLanguage": null
            },
            "byLine": [],
            "mediaInformation": {
                "editions": [],
                "mediaFormats": []
            },
            "productOverview": {
                "Date First Available": "October 5, 2022",
                "Closure": "Retractable",
                "Unit Count": "50.0 Count",
                "Recommended Uses For Product": "Drafting, Writing",
                "Size": "1 Count (Pack of 50)",
                "Age Range Description": "Adult",
                "Writing Instrument Form": "Ballpoint Pen",
                "ASIN": "B0BHD4SVC8",
                "Material Type": "Acrylonitrile Butadiene Styrene",
                "Point Type": "Medium",
                "Is Bulk Pack": "Yes",
                "Drill Point": "Medium",
                "Ink Color": "Black",
                "Ink Base": "Water",
                "Manufacturer": "deegtran",
                "Style": "Modern",
                "Number of Items": "50",
                "Special Feature": "Retractable, Lightweight, Refillable, Eco Friendly, Non Toxic",
                "Body Shape": "Round",
                "Model Name": "DGMC005",
                "Package Dimensions": "5.71 x 3.35 x 3.31 inches",
                "Color": "Black",
                "Item model number": "DGMC005",
                "Manufacturer Part Number": "DGMC005",
                "Hand Orientation": "Ambidextrous",
                "Material": "Acrylonitrile Butadiene Styrene",
                "Model Number": "DGMC005",
                "Line Size": "1 Millimeters",
                "Grip Type": "Non grip",
                "Brand Name": "deegtran",
                "Brand": "deegtran",
                "Water Resistance Level": "Waterproof",
                "Additional Features": "Retractable, Lightweight, Refillable, Eco Friendly, Non Toxic",
                "Age Range (Description)": "Adult",
                "Closure Type": "Retractable"
            },
            "productDetails": {},
            "productVariations": {
                "dimensions": [
                    {
                        "index": 0,
                        "displayString": "Color",
                        "dimensionValues": [
                            {
                                "index": 0,
                                "displayString": "Black"
                            },
                            {
                                "index": 1,
                                "displayString": "Blue"
                            },
                            {
                                "index": 2,
                                "displayString": "Green"
                            },
                            {
                                "index": 3,
                                "displayString": "Pink"
                            },
                            {
                                "index": 4,
                                "displayString": "Purple"
                            },
                            {
                                "index": 5,
                                "displayString": "Red"
                            }
                        ]
                    }
                ],
                "variations": [
                    {
                        "asin": "B0BHD4SVC8",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 0
                            }
                        ]
                    },
                    {
                        "asin": "B0BHD512SP",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 1
                            }
                        ]
                    },
                    {
                        "asin": "B0C7ZHXBV5",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 2
                            }
                        ]
                    },
                    {
                        "asin": "B0C7ZJ25X8",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 3
                            }
                        ]
                    },
                    {
                        "asin": "B0C7ZHXBVH",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 4
                            }
                        ]
                    },
                    {
                        "asin": "B0BHCZKS9M",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 5
                            }
                        ]
                    }
                ]
            },
            "customerReviewsSummary": {
                "numberOfRatings": null,
                "starRating": null
            },
            "productDescription": "Black Ink Ballpoint Pens Bulk",
            "upcValues": [],
            "eanValues": [],
            "modelNumber": null,
            "manufacturerName": null,
            "bundleQuantity": null,
            "badges": []
        },
        {
            "asin": "B07XLF4X51",
            "asinType": "STANDARD",
            "signedProductId": "amzn1.business.asin.4MOY4YLEVPXVQ3DXRHIWI2LRMFZG423ZORUGOZLEG5ZGMY3BONQYMA3DJMTTSFZCLWPDFJ64IDDFEFUJV3RYAZLD46T23IAYUNZ5ZF6C5NZDSPUVWCPRNLIGHMLL3RPTX34KUWBC2NG4I43QZMFR6TZCNJH6PL77QNGQZNEKX6QK5ZROKT6A",
            "includedDataTypes": {},
            "features": [
                "ZEBRA CUSTOM BULK PACK OF 48 PENS - 24 Black and 24 Blue ink pen included in set, Zgrip, 1mm medium point ball point pen featuring low viscosity for a smooth, skip-less writing experience and quicker writing speeds",
                "Highly Recommended for business executive, Soft, latex-free rubberized grip provides increased comfort while the plastic barrel allows for ink supply visibility Great to use for office pens, signature pens, School supplies for Adults and kids.",
                "Convenient metal pocket clip for quick, easy access, and to ensure you never lose your favorite pen again",
                "Vivid, reliable assorted color gel ink and solid pen construction make for a great everyday writing tool! Assorted colors include: Black & Blue.",
                "Ideal to use in a notebook, journal, planner, legal pad, on invitation cards and almost any paper surface"
            ],
            "editorialReviews": [],
            "taxonomies": [
                {
                    "taxonomyCode": "44121704",
                    "title": "Ball point pens",
                    "type": "UNSPSC"
                },
                {
                    "taxonomyCode": "24240503",
                    "title": "",
                    "type": "ECLASS"
                }
            ],
            "packageTypeNames": [],
            "title": "Zebra Pen Ballpoint - Bulk Pack Of 48 Z-grip Retractable Medium Point 1.0 mm, 24 Black Pens & 24 Blue Pens Combo Pack",
            "url": "https://www.amazon.com/dp/B07XLF4X51?ref_=ab_psdp",
            "format": null,
            "bookInformation": {
                "isbn": {
                    "isbn10": null,
                    "isbn13": null
                },
                "publicationDate": null,
                "publishedLanguage": null
            },
            "byLine": [],
            "mediaInformation": {
                "editions": [],
                "mediaFormats": []
            },
            "productOverview": {
                "Date First Available": "September 11, 2019",
                "Closure": "Retractable",
                "Unit Count": "48 Count",
                "Recommended Uses For Product": "Coloring,Writing",
                "Size": "1 Count (Pack of 48)",
                "Age Range Description": "Adult",
                "Writing Instrument Form": "Ballpoint Pen",
                "ASIN": "B07XLF4X51",
                "UPC": "045888901148",
                "Material Type": "Plastic, Metal",
                "Point Type": "Medium",
                "Drill Point": "Medium",
                "Ink Color": "Black,Blue",
                "Manufacturer": "Zebra Pen",
                "Style": "refillable",
                "Number of Items": "48",
                "Special Feature": "Retractable",
                "Body Shape": "Round",
                "Package Dimensions": "5.94 x 5.79 x 2.2 inches",
                "Color": "Black and Blue",
                "Item model number": "90106",
                "Manufacturer Part Number": "131649",
                "Hand Orientation": "Ambidextrous",
                "Material": "Plastic, Metal",
                "Model Number": "90106",
                "Line Size": "Medium",
                "Grip Type": "Ribbed",
                "Brand Name": "Zebra Pen",
                "Brand": "Zebra Pen",
                "Additional Features": "Retractable",
                "Age Range (Description)": "Adult",
                "Closure Type": "Retractable",
                "Item Weight": "0.43 Kilograms"
            },
            "productDetails": {},
            "productVariations": {
                "dimensions": [
                    {
                        "index": 0,
                        "displayString": "Size",
                        "dimensionValues": [
                            {
                                "index": 0,
                                "displayString": "1 Count (Pack of 48)"
                            }
                        ]
                    },
                    {
                        "index": 1,
                        "displayString": "Color",
                        "dimensionValues": [
                            {
                                "index": 0,
                                "displayString": "Black and Blue"
                            }
                        ]
                    }
                ],
                "variations": [
                    {
                        "asin": "B07XLF4X51",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 0
                            },
                            {
                                "index": 1,
                                "value": 0
                            }
                        ]
                    }
                ]
            },
            "customerReviewsSummary": {
                "numberOfRatings": null,
                "starRating": null
            },
            "productDescription": "LOOKING FOR AN EVERYDAY TOOL THAT DOESN’T LOOK OR PERFORM LIKE ONE?Zebra’s Z-Grip brand of pens is where simple, effective style meets high-performance writing.The Z-Grip Ballpoint Retractable Pen delivers on all fronts: value, performance, comfort, and style.There’s no need to compromise on any of the attributes you like in your pens as the Z-Grip Retractable Ballpoint Pen features easy-glide ink, a comfort ridged grip and a metal clip for durability.The silky smooth low viscosity ink provides quicker writing speeds and smooth, skip-less writing experience, making the Z-Grip Retractable Ballpoint Pen ideal to use for note-taking, journaling, and long meetings.A soft, latex-free rubberized grip provides increased comfort while the plastic barrel allows for ink supply visibility.The convenient metal pocket clip allows quick access and ensures you will never lose your favorite pen again.Now you can get the job done right every time with a reliable, smooth-flowing pen! You’ll feel the difference when you write, but not at the cash register.BALLPOINT PEN IS NOT REFILLABLE.",
            "upcValues": [],
            "eanValues": [],
            "modelNumber": null,
            "manufacturerName": null,
            "bundleQuantity": null,
            "badges": []
        },
        {
            "asin": "B001Q4HUNO",
            "asinType": "STANDARD",
            "signedProductId": "amzn1.business.asin.GV4JU5OG57WNSND44U3WI2LRMFZG423ZORUGOZLEG5ZGMY3BONQTT5RBZNR64PEP26XKWH7TDUZ55UJT5MJ7TWI2IRPHQYKE6NF45KUJQPMYK6DMH3HIURX75TRA6OZKOXJSMTMLBRTCLREUDS3IMPVUP36GOZNEL4C7BJEQCFIEIDJE2ZDA",
            "includedDataTypes": {},
            "features": [
                "Our ballpoint pens write the first time every time",
                "Quality comes in writing for these ballpoint pens",
                "Flexible round barrel for writing comfort",
                "These ballpoint pens have a frosted cap and translucent barrel for visible ink supply.",
                "Reliable tungsten carbide ball spreads ink smoothly and consistently"
            ],
            "editorialReviews": [],
            "taxonomies": [
                {
                    "taxonomyCode": "44121704",
                    "title": "Ball point pens",
                    "type": "UNSPSC"
                },
                {
                    "taxonomyCode": "24240503",
                    "title": "",
                    "type": "ECLASS"
                }
            ],
            "packageTypeNames": [],
            "title": "BIC Round Stic Xtra Life Ballpoint Pens, Medium Point (1.0mm), Blue, Flexible Round Barrel For Writing Comfort, 60-Count",
            "url": "https://www.amazon.com/dp/B001Q4HUNO?ref_=ab_psdp",
            "format": null,
            "bookInformation": {
                "isbn": {
                    "isbn10": null,
                    "isbn13": null
                },
                "publicationDate": null,
                "publishedLanguage": null
            },
            "byLine": [],
            "mediaInformation": {
                "editions": [],
                "mediaFormats": []
            },
            "productOverview": {
                "Date First Available": "September 27, 2017",
                "Shape": "round",
                "Closure": "Retractable",
                "Unit Count": "60.0 Count",
                "Tip Type": "Conical",
                "Recommended Uses For Product": "Writing",
                "Size": "60 Count (Pack of 1)",
                "Age Range Description": "Adult",
                "Writing Instrument Form": "Ballpoint Pen",
                "Global Trade Identification Number": "00070330131613",
                "ASIN": "B001Q4HUNO",
                "UPC": "070330131613",
                "Material Type": "Plastic",
                "Product Dimensions": "4.2 x 3 x 6 inches",
                "Is Discontinued By Manufacturer": "No",
                "Point Type": "Medium",
                "Drill Point": "Medium",
                "Ink Color": "Blue",
                "Ink Base": "Oil",
                "Item Hardness": "HB",
                "Manufacturer": "BIC Corporation",
                "Style": "Ballpoint Pen",
                "Number of Items": "1",
                "Special Feature": "Non-toxic",
                "Pattern": "Pen",
                "Body Shape": "Round",
                "Model Name": "Round Stic",
                "Item dimensions L x W x H": "4.2 x 3 x 6 inches",
                "Color": "Blue",
                "Item Diameter": "1 Millimeters",
                "Item model number": "GSM609-BE",
                "Manufacturer Part Number": "GSM609BE",
                "Hand Orientation": "Ambidextrous",
                "Material": "Plastic",
                "Model Number": "GSM609-BE",
                "Hardness": "HB",
                "Pencil Lead Degree (Hardness)": "HB",
                "Line Size": "1.00 mm",
                "Grip Type": "Contoured",
                "Brand Name": "BIC",
                "Brand": "BIC",
                "Additional Features": "Non-toxic",
                "Item Dimensions": "4.2 x 3 x 6 inches",
                "Age Range (Description)": "Adult",
                "Closure Type": "Retractable",
                "Item Weight": "0.61 Pounds"
            },
            "productDetails": {},
            "productVariations": {
                "dimensions": [
                    {
                        "index": 0,
                        "displayString": "Size",
                        "dimensionValues": [
                            {
                                "index": 0,
                                "displayString": "60 Count (Pack of 1)"
                            },
                            {
                                "index": 1,
                                "displayString": "60 Count (Pack of 2)"
                            }
                        ]
                    }
                ],
                "variations": [
                    {
                        "asin": "B001Q4HUNO",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 0
                            }
                        ]
                    },
                    {
                        "asin": "B0CGLXZTPC",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 1
                            }
                        ]
                    }
                ]
            },
            "customerReviewsSummary": {
                "numberOfRatings": null,
                "starRating": null
            },
            "productDescription": "The BIC Round Stick Extra Life Ballpoint Pens are a dependable favorite that offers performance and value, making it the #1 selling ball pen in the US*. Great for daily use at home, school, or the office, this pen writes 90% longer on average than Paper mate Ink Joy 100 Ball Stick Pen. ** These ballpoint pens features a versatile 1. 0mm medium point that creates vivid lines and has a reliable tungsten carbide ball point that spreads the ink smoothly and evenly, making this pen ideal for a variety of writing applications from note-taking to doodling. The flexible round barrel rests comfortably in your hand, while the translucent barrel shows the remaining ink supply, so you know when you're running low. BIC Round Stick Extra Life Ballpoint Pens are non-refillable. *Source: The NPD Group/ Retail Tracking Service/ U. S. Actual Unit Sales (Retail & Commercial Combined)/ Jul 2016-Jun 2017 ** Paper Mate and Ink Joy are trademarks of Newell or an affiliate. Newell has not sponsored or approved and is not affiliated with this BIC branded product.",
            "upcValues": [],
            "eanValues": [],
            "modelNumber": null,
            "manufacturerName": null,
            "bundleQuantity": null,
            "badges": []
        },
        {
            "asin": "B00WDCIDIE",
            "asinType": "STANDARD",
            "signedProductId": "amzn1.business.asin.6LIODRRKM3EUERKRST3GI2LRMFZG423ZORUGOZLEG5ZGMY3BONQY5SRS3C6MRUTPUPEFDCD442AOJVMVRP3JFZYWH6FRWNNKBB3IRJL4RV5YL5W7XBXCFNEALDZJ2JICHY5DVJ5OJDXWW5DA62BIB4JOFKWPDDZZRX5Y4BWDYIW4ZYITJ55A",
            "includedDataTypes": {},
            "features": [
                "1.0mm medium point ballpoint pen featuring low viscosity black ink for a smooth, skip-less writing experience and quicker writing speeds",
                "Soft, latex-free rubberized grip provides increased comfort while the plastic barrel allows for ink supply visibility",
                "Convenient metal pocket clip for quick, easy access, and to ensure you never lose your favorite pen again",
                "Vivid, reliable black ink and solid pen construction make for a great everyday writing tool",
                "Ideal to use in a notebook, journal, planner, legal pad, on invitation cards and almost any paper surface"
            ],
            "editorialReviews": [],
            "taxonomies": [
                {
                    "taxonomyCode": "44121700",
                    "title": "Writing instruments",
                    "type": "UNSPSC"
                },
                {
                    "taxonomyCode": "24240503",
                    "title": "",
                    "type": "ECLASS"
                }
            ],
            "packageTypeNames": [],
            "title": "Zebra Pen Z-Grip Retractable Ballpoint Pen, Medium Point, 1.0mm, Black Ink, 48-Pack",
            "url": "https://www.amazon.com/dp/B00WDCIDIE?ref_=ab_psdp",
            "format": null,
            "bookInformation": {
                "isbn": {
                    "isbn10": null,
                    "isbn13": null
                },
                "publicationDate": null,
                "publishedLanguage": null
            },
            "byLine": [],
            "mediaInformation": {
                "editions": [],
                "mediaFormats": []
            },
            "productOverview": {
                "Date First Available": "April 14, 2015",
                "Closure": "Retractable",
                "Unit Count": "48.0 Count",
                "Recommended Uses For Product": "Calligraphy",
                "Included Components": "Includes 48 pens.",
                "Size": "1 Count (Pack of 48)",
                "Age Range Description": "Kid, Teen, Adult",
                "Writing Instrument Form": "Ballpoint Pen",
                "Global Trade Identification Number": "10045888221489, 00045888221482",
                "ASIN": "B00WDCIDIE",
                "UPC": "300718753527 300718756443 343538783442 343538709121 343538781103 045888221482 343538709527 300718598326 343538708131 343538784401 343538682981 300717313425 343538781820 343538782087 300718759345 343538708735 343538784647",
                "Material Type": "Plastic, Metal",
                "Product Dimensions": "5.63 x 5.6 x 2.2 inches",
                "Is Discontinued By Manufacturer": "No",
                "Point Type": "Medium",
                "Drill Point": "Medium",
                "Department": "Office",
                "Ink Color": "Black",
                "Manufacturer": "Zebra Pen",
                "Style": "1.0mm",
                "Number of Items": "48",
                "Special Feature": "Retractable",
                "Body Shape": "Round",
                "Model Name": "Z-Grip",
                "Item dimensions L x W x H": "5.63 x 5.6 x 2.2 inches",
                "Color": "Black",
                "Item Diameter": "1.25 Inches",
                "Item model number": "22148",
                "Manufacturer Part Number": "22148",
                "Hand Orientation": "Right",
                "Material": "Plastic, Metal",
                "Model Number": "22148",
                "Line Size": "1.00 Pen",
                "Grip Type": "Comfort, Soft",
                "Brand Name": "Zebra Pen",
                "Brand": "Zebra Pen",
                "Additional Features": "Retractable",
                "Item Dimensions": "5.63 x 5.6 x 2.2 inches",
                "Age Range (Description)": "Kid, Teen, Adult",
                "Closure Type": "Retractable",
                "Item Weight": "0.85 Pounds"
            },
            "productDetails": {},
            "productVariations": {
                "dimensions": [
                    {
                        "index": 0,
                        "displayString": "Color",
                        "dimensionValues": [
                            {
                                "index": 0,
                                "displayString": "American Flag"
                            },
                            {
                                "index": 1,
                                "displayString": "Assorted"
                            },
                            {
                                "index": 2,
                                "displayString": "Assorted Fashion"
                            },
                            {
                                "index": 3,
                                "displayString": "Black"
                            },
                            {
                                "index": 4,
                                "displayString": "Black/Blue"
                            },
                            {
                                "index": 5,
                                "displayString": "Black/Blue/Red"
                            },
                            {
                                "index": 6,
                                "displayString": "Black/Graphite"
                            },
                            {
                                "index": 7,
                                "displayString": "Blue"
                            },
                            {
                                "index": 8,
                                "displayString": "Red"
                            }
                        ]
                    },
                    {
                        "index": 1,
                        "displayString": "Number of Items",
                        "dimensionValues": [
                            {
                                "index": 0,
                                "displayString": "2"
                            },
                            {
                                "index": 1,
                                "displayString": "5"
                            },
                            {
                                "index": 2,
                                "displayString": "6"
                            },
                            {
                                "index": 3,
                                "displayString": "7"
                            },
                            {
                                "index": 4,
                                "displayString": "12"
                            },
                            {
                                "index": 5,
                                "displayString": "18"
                            },
                            {
                                "index": 6,
                                "displayString": "24"
                            },
                            {
                                "index": 7,
                                "displayString": "36"
                            },
                            {
                                "index": 8,
                                "displayString": "48"
                            },
                            {
                                "index": 9,
                                "displayString": "72"
                            },
                            {
                                "index": 10,
                                "displayString": "288"
                            },
                            {
                                "index": 11,
                                "displayString": "864"
                            }
                        ]
                    }
                ],
                "variations": [
                    {
                        "asin": "B0DSWR461S",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 0
                            },
                            {
                                "index": 1,
                                "value": 4
                            }
                        ]
                    },
                    {
                        "asin": "B007FD9J5M",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 1
                            },
                            {
                                "index": 1,
                                "value": 1
                            }
                        ]
                    },
                    {
                        "asin": "B0CYRB3NK5",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 1
                            },
                            {
                                "index": 1,
                                "value": 5
                            }
                        ]
                    },
                    {
                        "asin": "B003QUX7WY",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 2
                            },
                            {
                                "index": 1,
                                "value": 3
                            }
                        ]
                    },
                    {
                        "asin": "B00M382ROY",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 2
                            },
                            {
                                "index": 1,
                                "value": 5
                            }
                        ]
                    },
                    {
                        "asin": "B000ZPQ8YW",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 2
                            },
                            {
                                "index": 1,
                                "value": 6
                            }
                        ]
                    },
                    {
                        "asin": "B003WP7REW",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 3
                            },
                            {
                                "index": 1,
                                "value": 0
                            }
                        ]
                    },
                    {
                        "asin": "B007VOLPB6",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 3
                            },
                            {
                                "index": 1,
                                "value": 1
                            }
                        ]
                    },
                    {
                        "asin": "B0BBN76FY1",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 3
                            },
                            {
                                "index": 1,
                                "value": 2
                            }
                        ]
                    },
                    {
                        "asin": "B002JGB1S8",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 3
                            },
                            {
                                "index": 1,
                                "value": 3
                            }
                        ]
                    },
                    {
                        "asin": "B0006HXAW2",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 3
                            },
                            {
                                "index": 1,
                                "value": 4
                            }
                        ]
                    },
                    {
                        "asin": "B00M382RJO",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 3
                            },
                            {
                                "index": 1,
                                "value": 5
                            }
                        ]
                    },
                    {
                        "asin": "B001BZ6ZN4",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 3
                            },
                            {
                                "index": 1,
                                "value": 6
                            }
                        ]
                    },
                    {
                        "asin": "B0B918RSF8",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 3
                            },
                            {
                                "index": 1,
                                "value": 7
                            }
                        ]
                    },
                    {
                        "asin": "B00WDCIDIE",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 3
                            },
                            {
                                "index": 1,
                                "value": 8
                            }
                        ]
                    },
                    {
                        "asin": "B0BHJJFJJX",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 3
                            },
                            {
                                "index": 1,
                                "value": 10
                            }
                        ]
                    },
                    {
                        "asin": "B0BBN72JT6",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 3
                            },
                            {
                                "index": 1,
                                "value": 11
                            }
                        ]
                    },
                    {
                        "asin": "B097FFPC1D",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 4
                            },
                            {
                                "index": 1,
                                "value": 3
                            }
                        ]
                    },
                    {
                        "asin": "B0C3RWNQ8J",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 4
                            },
                            {
                                "index": 1,
                                "value": 5
                            }
                        ]
                    },
                    {
                        "asin": "B0B91F92SN",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 4
                            },
                            {
                                "index": 1,
                                "value": 7
                            }
                        ]
                    },
                    {
                        "asin": "B001BZ4RGQ",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 5
                            },
                            {
                                "index": 1,
                                "value": 6
                            }
                        ]
                    },
                    {
                        "asin": "B00WDCIDHA",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 5
                            },
                            {
                                "index": 1,
                                "value": 8
                            }
                        ]
                    },
                    {
                        "asin": "B0BHJJ1BRY",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 5
                            },
                            {
                                "index": 1,
                                "value": 10
                            }
                        ]
                    },
                    {
                        "asin": "B0DSXH37T9",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 6
                            },
                            {
                                "index": 1,
                                "value": 5
                            }
                        ]
                    },
                    {
                        "asin": "B001JT15GE",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 7
                            },
                            {
                                "index": 1,
                                "value": 0
                            }
                        ]
                    },
                    {
                        "asin": "B001JCXJ06",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 7
                            },
                            {
                                "index": 1,
                                "value": 4
                            }
                        ]
                    },
                    {
                        "asin": "B096WPCGZG",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 7
                            },
                            {
                                "index": 1,
                                "value": 5
                            }
                        ]
                    },
                    {
                        "asin": "B002VL5QUU",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 7
                            },
                            {
                                "index": 1,
                                "value": 6
                            }
                        ]
                    },
                    {
                        "asin": "B0B91BHPB2",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 7
                            },
                            {
                                "index": 1,
                                "value": 7
                            }
                        ]
                    },
                    {
                        "asin": "B00WDCIDM0",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 7
                            },
                            {
                                "index": 1,
                                "value": 8
                            }
                        ]
                    },
                    {
                        "asin": "B00XYGCQUY",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 7
                            },
                            {
                                "index": 1,
                                "value": 9
                            }
                        ]
                    },
                    {
                        "asin": "B0BHJLMPP5",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 7
                            },
                            {
                                "index": 1,
                                "value": 10
                            }
                        ]
                    },
                    {
                        "asin": "B0055EB45Q",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 8
                            },
                            {
                                "index": 1,
                                "value": 4
                            }
                        ]
                    },
                    {
                        "asin": "B0CYRFJX34",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 8
                            },
                            {
                                "index": 1,
                                "value": 5
                            }
                        ]
                    }
                ]
            },
            "customerReviewsSummary": {
                "numberOfRatings": null,
                "starRating": null
            },
            "productDescription": "Get ready for the back to school season with Zebra's Z-Grip Retractable Ballpoint Pens, an essential addition to your school supplies. This pack of 48 retractable ink pens is a collection of high-quality writing tools designed for optimal note-taking. Each pen boasts a medium 1mm pen point that produces clear, distinct lines, while the vivid black ink ensures your writing is always legible. The pens are more than average ball point black pens; their easy-glide ink ensures skip-less writing. The soft, latex-free rubberized grip ensures comfort during long writing sessions, and the ridges prevent slipping for steady, precise writing. The transparent plastic barrel allows you to monitor your ink supply, so you're never caught off guard. With a convenient metal pocket clip, these pens are easy to carry, perfect for on-the-go note taking. Zebra's Z-Grip Retractable Ballpoint Pens are more than just basic pens, they are a reliable and comfortable tool for all your writing needs, whether you're jotting down notes in class or drafting a report at work. Trust in the quality of Zebra's products to meet your everyday writing needs.",
            "upcValues": [],
            "eanValues": [],
            "modelNumber": null,
            "manufacturerName": null,
            "bundleQuantity": null,
            "badges": []
        },
        {
            "asin": "B001E6D3W6",
            "asinType": "STANDARD",
            "signedProductId": "amzn1.business.asin.TSCO7OANSY6MNLXJP4CGI2LRMFZG423ZORUGOZLEG5ZGMY3BONQWEIYEOW2E57QCK42U6VQ66D7CS565NZHTO2YTYCGCTB27MA7D5PVFJRMHDJFSG3L56B35PWMCGG7Y334HIM62Q6T2MLBA2RTI2K22EZGUMXKVJGTVJTYTRHJVTNNVVSBQ",
            "includedDataTypes": {},
            "features": [
                "Smooth & Long-lasting: Enjoy a smooth writing experience thanks to the gel ink that glides effortlessly across paper; G2 has been proven to be the longest-lasting gel ink pen so you can write more without having to refill often (Data on File)",
                "Comfortable Grip: A contoured rubber grip provides ergonomic support, making long writing projects easier",
                "Versatile: Perfect for everyday writing tasks such as taking notes and jotting down grocery lists; The G2 tip delivers crisp, clean lines ideal for writing, intricate designs, drawing, sketching or doodling",
                "Refillable & Quick Drying: Save money and reduce waste by reusing and refilling your retractable pen with Pilot G2 refills (sold separately); The vibrant, quick drying ink helps prevent smudges and smears",
                "Power to the Pen: Express yourself effortlessly with Pilot's line of innovative writing tools, including gel ink, erasable, rolling ball, ballpoint and fountain pens, & dry erase markers & more"
            ],
            "editorialReviews": [],
            "taxonomies": [
                {
                    "taxonomyCode": "44121700",
                    "title": "Writing instruments",
                    "type": "UNSPSC"
                },
                {
                    "taxonomyCode": "24240503",
                    "title": "",
                    "type": "ECLASS"
                }
            ],
            "packageTypeNames": [],
            "title": "Pilot, G2 Premium Gel Roller Pens, Bold Point 1 mm, Pack of 12, Black",
            "url": "https://www.amazon.com/dp/B001E6D3W6?ref_=ab_psdp",
            "format": null,
            "bookInformation": {
                "isbn": {
                    "isbn10": null,
                    "isbn13": null
                },
                "publicationDate": null,
                "publishedLanguage": null
            },
            "byLine": [],
            "mediaInformation": {
                "editions": [],
                "mediaFormats": []
            },
            "productOverview": {
                "Date First Available": "August 26, 2008",
                "Closure": "Retractable",
                "Unit Count": "12.0 Count",
                "Tip Type": "Conical",
                "Recommended Uses For Product": "Writing",
                "Included Components": "Pens (12)",
                "Size": "12 Count (Pack of 1)",
                "Age Range Description": "Adult",
                "Writing Instrument Form": "Roller Ball Pen",
                "ASIN": "B001E6D3W6",
                "UPC": "072838312563",
                "Material Type": "Clear Barrel",
                "Product Dimensions": "5.6 x 2.7 x 1.3 inches",
                "Is Discontinued By Manufacturer": "No",
                "Point Type": "Bold",
                "Drill Point": "Bold",
                "Ink Color": "Black",
                "Ink Base": "Water",
                "Item Hardness": "HB",
                "Manufacturer": "0",
                "Style": "Pack of 12",
                "Number of Items": "1",
                "Special Feature": "Retractable",
                "Pattern": "Pens",
                "Body Shape": "Round",
                "Model Name": "G2 Bold Point Retractable Gel Pens",
                "Item dimensions L x W x H": "5.6 x 2.7 x 1.3 inches",
                "Color": "Black Ink",
                "Item model number": "31256",
                "Manufacturer Part Number": "31256",
                "Hand Orientation": "Left",
                "Material": "Clear Barrel",
                "Model Number": "31256",
                "Hardness": "HB",
                "Pencil Lead Degree (Hardness)": "HB",
                "Line Size": "1.0mm",
                "Grip Type": "Contoured",
                "Brand Name": "PILOT",
                "Brand": "PILOT",
                "Additional Features": "Retractable",
                "Item Dimensions": "5.6 x 2.7 x 1.3 inches",
                "Age Range (Description)": "Adult",
                "Closure Type": "Retractable",
                "Item Weight": "13.61 g"
            },
            "productDetails": {},
            "productVariations": {
                "dimensions": [
                    {
                        "index": 0,
                        "displayString": "Color",
                        "dimensionValues": [
                            {
                                "index": 0,
                                "displayString": "Black Ink"
                            },
                            {
                                "index": 1,
                                "displayString": "Blue Ink"
                            },
                            {
                                "index": 2,
                                "displayString": "Navy Ink"
                            },
                            {
                                "index": 3,
                                "displayString": "Red Ink"
                            }
                        ]
                    }
                ],
                "variations": [
                    {
                        "asin": "B001E6D3W6",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 0
                            }
                        ]
                    },
                    {
                        "asin": "B001AQPQBQ",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 1
                            }
                        ]
                    },
                    {
                        "asin": "B08XDLRQ4T",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 2
                            }
                        ]
                    },
                    {
                        "asin": "B001B0F35U",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 3
                            }
                        ]
                    }
                ]
            },
            "customerReviewsSummary": {
                "numberOfRatings": null,
                "starRating": null
            },
            "productDescription": "From taking notes to journaling or drawing, G2 Gel Roller pens keep the ink and your ideas flowing. These long-lasting pens come in many color options and 4 tip sizes, so it's easy to find one that caters to your writing needs and personal style. The quick-drying ink prevents smears and smudges, ensuring your work is neat and clear. Create masterpieces of writing or art with these smooth-flowing gel pens that deliver vivid and clear lines. The 1 mm pen point size offers a bolder line width, allowing for more expressive writing. The comfortable rubber grip offers ergonomic support, reducing hand fatigue and making lengthy writing projects a breeze. Archival-safe and acid-free black ink is formulated to be long-lasting and fade-resistant, ensuring your documents last for a long time. Pilot's G2 line blends smooth writing with long-lasting ink, precision and comfort for an exceptional writing experience.",
            "upcValues": [],
            "eanValues": [],
            "modelNumber": null,
            "manufacturerName": null,
            "bundleQuantity": null,
            "badges": []
        },
        {
            "asin": "B07PLL76SR",
            "asinType": "STANDARD",
            "signedProductId": "amzn1.business.asin.4H5SMQ3TTETT4MJW6REWI2LRMFZG423ZORUGOZLEG5ZGMY3BONQ6B4JLVPAFRKZHEJE47V5YW5PFOUQLUGT6TC3V3D5XNVIANJIL34DUHBCXWITPRC57PRL3B6J45YZ6IBXQJYSNYXCTQ47EFLZRG2FR664JFBFBHB2K2XWIEHRAF4Y7OQLA",
            "includedDataTypes": {},
            "features": [
                "ZEBRA CUSTOM BULK PACK OF PENS - 12 Black pens and 12 Blue pens included in set, Zgrip, 1mm medium point ballpoint pens featuring low viscosity for a smooth, skip-less writing experience and quicker writing speeds.",
                "Highly Recommended for business executive, Soft, latex-free rubberized grip provides increased comfort while the plastic barrel allows for ink supply visibility Great to use for office pens, signature pens, School supplies for Adults and kids.",
                "Convenient metal pocket clip for quick, easy access, and to ensure you never lose your favorite Zebra pen again.",
                "Vivid, reliable assorted color gel ink and solid pen construction make for a great everyday writing tool! Assorted colors include: Black ink pens & Blue ink pens.",
                "The ideal ink pen to use in a notebook, journal, planner, legal pad, on invitation cards and almost any paper surface."
            ],
            "editorialReviews": [],
            "taxonomies": [
                {
                    "taxonomyCode": "24240701",
                    "title": "",
                    "type": "ECLASS"
                },
                {
                    "taxonomyCode": "44121701",
                    "title": "Rollerball pens",
                    "type": "UNSPSC"
                }
            ],
            "packageTypeNames": [],
            "title": "Zebra Pen Ballpoint - Bulk Pack Of 24 Z-grip Retractable Medium Point 1.0 mm, 12 Black & 12 Blue Combo pack",
            "url": "https://www.amazon.com/dp/B07PLL76SR?ref_=ab_psdp",
            "format": null,
            "bookInformation": {
                "isbn": {
                    "isbn10": null,
                    "isbn13": null
                },
                "publicationDate": null,
                "publishedLanguage": null
            },
            "byLine": [],
            "mediaInformation": {
                "editions": [],
                "mediaFormats": []
            },
            "productOverview": {
                "Date First Available": "March 11, 2019",
                "Closure": "Retractable",
                "Unit Count": "12 Count",
                "Recommended Uses For Product": "Note-taking, Journaling, General Writing",
                "Included Components": "Pack of 24 Zebra Ink Pens",
                "Size": "24 Piece Set",
                "Age Range Description": "Adult",
                "Writing Instrument Form": "Ballpoint Pen",
                "ASIN": "B07PLL76SR",
                "UPC": "045888901063",
                "Material Type": "Plastic, Metal",
                "Point Type": "Medium",
                "Is Bulk Pack": "Yes",
                "Drill Point": "Medium",
                "Ink Color": "Black",
                "Ink Base": "Water",
                "Manufacturer": "Zebra Pen",
                "Style": "Standard",
                "Number of Items": "24",
                "Special Feature": "Fade Resistant",
                "Body Shape": "Round",
                "Model Name": "90106",
                "Package Dimensions": "7.4 x 6.57 x 1.14 inches",
                "Color": "Black and Blue",
                "Item Diameter": "1 Millimeters",
                "Item model number": "90106",
                "Manufacturer Part Number": "90106",
                "Hand Orientation": "Ambidextrous",
                "Material": "Plastic, Metal",
                "Model Number": "90106",
                "Line Size": "1.0 mm",
                "Grip Type": "Soft",
                "Brand Name": "Zebra Pen",
                "Brand": "Zebra Pen",
                "Additional Features": "Fade Resistant",
                "Age Range (Description)": "Adult",
                "Closure Type": "Retractable"
            },
            "productDetails": {},
            "productVariations": {
                "dimensions": [
                    {
                        "index": 0,
                        "displayString": "Color",
                        "dimensionValues": [
                            {
                                "index": 0,
                                "displayString": "Black and Blue"
                            }
                        ]
                    },
                    {
                        "index": 1,
                        "displayString": "Style",
                        "dimensionValues": [
                            {
                                "index": 0,
                                "displayString": "Standard"
                            }
                        ]
                    }
                ],
                "variations": [
                    {
                        "asin": "B07PLL76SR",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 0
                            },
                            {
                                "index": 1,
                                "value": 0
                            }
                        ]
                    }
                ]
            },
            "customerReviewsSummary": {
                "numberOfRatings": null,
                "starRating": null
            },
            "productDescription": "LOOKING FOR AN EVERYDAY TOOL THAT DOESN’T LOOK OR PERFORM LIKE ONE?Zebra’s Z-Grip brand of ink pens is where simple, effective style meets high-performance writing.The Z-Grip Ballpoint Retractable Pen delivers on all fronts: value, performance, comfort, and style.There’s no need to compromise on any of the attributes you like in your pens as the Z-Grip Retractable Ballpoint Pen features easy-glide ink, a comfort ridged grip and a metal clip for durability.The silky smooth low viscosity ink provides quicker writing speeds and a smooth, skip-less writing experience, making the Z-Grip Retractable Ballpoint Pen ideal to use for note-taking, journaling, and long meetings.A soft, latex-free rubberized grip provides increased comfort while the plastic barrel allows for ink supply visibility.The convenient metal pocket clip allows quick access and ensures you will never lose your favorite pen again.Now you can get the job done right every time with a reliable, smooth-flowing pen! You’ll feel the difference when you write, but not at the cash register.BALLPOINT PEN IS NOT REFILLABLE.",
            "upcValues": [],
            "eanValues": [],
            "modelNumber": null,
            "manufacturerName": null,
            "bundleQuantity": null,
            "badges": []
        },
        {
            "asin": "B019QBOG3U",
            "asinType": "STANDARD",
            "signedProductId": "amzn1.business.asin.NXS7EPEU2CY2OUVN374WI2LRMFZG423ZORUGOZLEG5ZGMY3BONQQ3NS4PDVCR7VWEOZM65Z2LD7WR233THC7LJWZ3LRRGUTH3NBVIDXZTMY46G6MD337G7JRHPBW3YVMDWYA5MBFXLN67DG5IYAWFNA5EQUAPQP4I6QXCARSUHIIPQPQWATQ",
            "includedDataTypes": {},
            "features": [
                "Smooth Writing: Medium point (0.7 mm) for smooth and uninterrupted writing",
                "Assorted Colors: Offers a spectrum of vibrant colors for diversified tasks",
                "Fast-Drying Ink: Minimizes smudges and keeps your work neat",
                "Versatile Use: Works effectively on most paper surfaces",
                "Quality Ink: Ensures consistent application and durability",
                "Bulk Pack: Set of 14 to cater to all your writing needs",
                "Reliable Brand: Made by Paper Mate, known for its high-quality writing instruments"
            ],
            "editorialReviews": [],
            "taxonomies": [
                {
                    "taxonomyCode": "60121524",
                    "title": "Gel pens",
                    "type": "UNSPSC"
                },
                {
                    "taxonomyCode": "24240100",
                    "title": "",
                    "type": "ECLASS"
                }
            ],
            "packageTypeNames": [],
            "title": "Paper Mate InkJoy Gel Pens, Medium Point, Assorted Colors, Set of 14",
            "url": "https://www.amazon.com/dp/B019QBOG3U?ref_=ab_psdp",
            "format": null,
            "bookInformation": {
                "isbn": {
                    "isbn10": null,
                    "isbn13": null
                },
                "publicationDate": null,
                "publishedLanguage": null
            },
            "byLine": [],
            "mediaInformation": {
                "editions": [],
                "mediaFormats": []
            },
            "productOverview": {
                "Date First Available": "January 8, 2016",
                "Closure": "Retractable",
                "Unit Count": "14.0 Count",
                "Recommended Uses For Product": "Drawing, Writing, Bullet Journaling",
                "Included Components": "Gel Pens (14)",
                "Size": "14 Count",
                "Age Range Description": "Adult",
                "Writing Instrument Form": "Roller Ball Pen",
                "ASIN": "B019QBOG3U",
                "UPC": "071641099623",
                "Material Type": "Plastic",
                "Product Dimensions": "0.65 x 7.63 x 7.75 inches",
                "Is Discontinued By Manufacturer": "No",
                "Point Type": "Medium",
                "Drill Point": "Medium",
                "Ink Color": "Multicolor",
                "Item Hardness": "2.0",
                "Manufacturer": "Newell Rubbermaid Office",
                "Style": "Medium Point",
                "Number of Items": "1",
                "Special Feature": "Retractable",
                "Pattern": "Pens",
                "Body Shape": "Round",
                "Model Name": "InkJoy",
                "Item dimensions L x W x H": "0.65 x 7.63 x 7.75 inches",
                "Color": "Assorted",
                "Item Diameter": "0.7 Millimeters",
                "Item model number": "1951636",
                "Manufacturer Part Number": "1951636",
                "Hand Orientation": "Ambidextrous",
                "Material": "Plastic",
                "Model Number": "1951636",
                "Hardness": "2.0",
                "Pencil Lead Degree (Hardness)": "2.0",
                "Line Size": "0.7mm Millimeters",
                "Grip Type": "Ergonomic",
                "Brand Name": "Paper Mate",
                "Brand": "Paper Mate",
                "Water Resistance Level": "Not Water Resistant",
                "Theme": "Writing & Colorful Stationery",
                "Additional Features": "Retractable",
                "Item Dimensions": "0.65 x 7.63 x 7.75 inches",
                "Age Range (Description)": "Adult",
                "Closure Type": "Retractable",
                "Item Weight": "6.24 ounces"
            },
            "productDetails": {},
            "productVariations": {
                "dimensions": [
                    {
                        "index": 0,
                        "displayString": "Size",
                        "dimensionValues": [
                            {
                                "index": 0,
                                "displayString": "10 Count"
                            },
                            {
                                "index": 1,
                                "displayString": "14 Count"
                            },
                            {
                                "index": 2,
                                "displayString": "36 Count"
                            }
                        ]
                    },
                    {
                        "index": 1,
                        "displayString": "Pattern",
                        "dimensionValues": [
                            {
                                "index": 0,
                                "displayString": "Pens"
                            }
                        ]
                    }
                ],
                "variations": [
                    {
                        "asin": "B019QBOFZO",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 0
                            },
                            {
                                "index": 1,
                                "value": 0
                            }
                        ]
                    },
                    {
                        "asin": "B019QBOG3U",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 1
                            },
                            {
                                "index": 1,
                                "value": 0
                            }
                        ]
                    },
                    {
                        "asin": "B08QQMKDQV",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 2
                            },
                            {
                                "index": 1,
                                "value": 0
                            }
                        ]
                    }
                ]
            },
            "customerReviewsSummary": {
                "numberOfRatings": null,
                "starRating": null
            },
            "productDescription": "The Paper Mate InkJoy gel pen pack of 14 offers a range of vibrant colors for exceptional note-taking, art creations, and everyday writing tasks. Equipped with a medium point (0.7 mm), these pens ensure smooth and uninterrupted writing, making them a must-have for students, professionals, and artists alike. Moreover, the fast-drying ink reduces smudges and keeps your work neat. Each gel pen is imbued with high-quality ink that promises consistency, longevity, and versatility on various surfaces. Whether you use these gel pens for creating vibrant artwork or distinguishing important details in your notes, Paper Mate InkJoy guarantees precision, comfort, and satisfaction.",
            "upcValues": [],
            "eanValues": [],
            "modelNumber": null,
            "manufacturerName": null,
            "bundleQuantity": null,
            "badges": []
        },
        {
            "asin": "B0D2NMGYBY",
            "asinType": "STANDARD",
            "signedProductId": "amzn1.business.asin.VBDMGVFHIQWWKT5BFIRGI2LRMFZG423ZORUGOZLEG5ZGMY3BONQ7RHWRNELNAVAPE6PVZWC5XVGJXCUQWVUJEAILFYIF4ITMVDIE7VBOFJSKD55SZ7Y3UYUFNWDW24X5XMO6LIXBOAJDDR4JCQCVSQZXHID6AOIC75EOT5HEZZTTDXROKQFA",
            "includedDataTypes": {},
            "features": [
                "No Bleed Ink: No bleed ink technology ensures a clear and sharp writing experience with no bleeding in onion paper",
                "Smooth Wtriting: Enjoy a smooth and effortless writing experience with our pens, featuring a 1.0 mm tip that glides across the page like butter",
                "Value Set: Enjoy a plentiful supply of 100 pens without to spare and won't have to worry about misplacing them",
                "Durable Use: Made of high-quality materials, these pens are sturdy and durable and will last you a long time",
                "Wide Application: Effortlessly transition from school to office to conference with this versatile product"
            ],
            "editorialReviews": [],
            "taxonomies": [
                {
                    "taxonomyCode": "44121700",
                    "title": "Writing instruments",
                    "type": "UNSPSC"
                }
            ],
            "packageTypeNames": [],
            "title": "deegtran Pens Bulk, 100 Pack No Bleed Black Ink Click Pens with Soft Grip, Wholesale Retractable Ballpoint Pens for Office School, Medium Point Smooth 1.0MM",
            "url": "https://www.amazon.com/dp/B0D2NMGYBY?ref_=ab_psdp",
            "format": null,
            "bookInformation": {
                "isbn": {
                    "isbn10": null,
                    "isbn13": null
                },
                "publicationDate": null,
                "publishedLanguage": null
            },
            "byLine": [],
            "mediaInformation": {
                "editions": [],
                "mediaFormats": []
            },
            "productOverview": {
                "Date First Available": "April 25, 2024",
                "Closure": "Retractable",
                "Unit Count": "100.0 Count",
                "Recommended Uses For Product": "Drafting, Writing",
                "Size": "1 Count (Pack of 100)",
                "Age Range Description": "Adult",
                "Writing Instrument Form": "Ballpoint Pen",
                "ASIN": "B0D2NMGYBY",
                "Material Type": "Acrylonitrile Butadiene Styrene",
                "Point Type": "Medium",
                "Drill Point": "Medium",
                "Ink Color": "Black",
                "Ink Base": "Oil",
                "Item Hardness": "Soft",
                "Manufacturer": "DEEGTRAN",
                "Style": "Modern",
                "Number of Items": "100",
                "Special Feature": "Retractable, Lightweight, Long Lasting, Refillable",
                "Body Shape": "Round",
                "Package Dimensions": "7.44 x 6.06 x 4.37 inches",
                "Color": "Black",
                "Item model number": "DGMC007100",
                "Manufacturer Part Number": "DGMC007100",
                "Hand Orientation": "Ambidextrous",
                "Material": "Acrylonitrile Butadiene Styrene",
                "Model Number": "DGMC007100",
                "Hardness": "Soft",
                "Pencil Lead Degree (Hardness)": "Soft",
                "Line Size": "1 Millimeters",
                "Grip Type": "Ribbed",
                "Brand Name": "deegtran",
                "Brand": "deegtran",
                "Additional Features": "Retractable, Lightweight, Long Lasting, Refillable",
                "Age Range (Description)": "Adult",
                "Closure Type": "Retractable"
            },
            "productDetails": {},
            "productVariations": {
                "dimensions": [
                    {
                        "index": 0,
                        "displayString": "Color",
                        "dimensionValues": [
                            {
                                "index": 0,
                                "displayString": "Black"
                            },
                            {
                                "index": 1,
                                "displayString": "Black+Blue"
                            },
                            {
                                "index": 2,
                                "displayString": "Black+Red"
                            },
                            {
                                "index": 3,
                                "displayString": "Blue"
                            },
                            {
                                "index": 4,
                                "displayString": "Blue+Red"
                            },
                            {
                                "index": 5,
                                "displayString": "Red"
                            }
                        ]
                    }
                ],
                "variations": [
                    {
                        "asin": "B0D2NMGYBY",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 0
                            }
                        ]
                    },
                    {
                        "asin": "B0CJ98FMPN",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 1
                            }
                        ]
                    },
                    {
                        "asin": "B0CJ98451M",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 2
                            }
                        ]
                    },
                    {
                        "asin": "B0CJ96X7Y5",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 3
                            }
                        ]
                    },
                    {
                        "asin": "B0DM1R64BF",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 4
                            }
                        ]
                    },
                    {
                        "asin": "B0CXHJSKX3",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 5
                            }
                        ]
                    }
                ]
            },
            "customerReviewsSummary": {
                "numberOfRatings": null,
                "starRating": null
            },
            "productDescription": "Deegtran Pens Bulk, 100 Pack No Bleed Black Ink Click Pens with Soft Grip, Wholesale Retractable Ballpoint Pens for Office School, Medium Point Smooth 1.0MM",
            "upcValues": [],
            "eanValues": [],
            "modelNumber": null,
            "manufacturerName": null,
            "bundleQuantity": null,
            "badges": []
        },
        {
            "asin": "B07BDWD8B7",
            "asinType": "STANDARD",
            "signedProductId": "amzn1.business.asin.3RWEF3LOC4KJFBFVHIJWI2LRMFZG423ZORUGOZLEG5ZGMY3BONQYP3JVNEIDVIILCG5DDKDGP7JP3DWXM7IM5GC567T2TE4K2NKWU3FR77A2U22JM4AEMRKOXFIKTCBPN3XIVZRYJM3QDJB7ACC3WPHQ54LPJHPNWOQ5HQHICZFEA2IQEETA",
            "includedDataTypes": {},
            "features": [
                "SMOOTH WRITING EXPERIENCE: Enjoy consistent ink flow and a 1.2mm point for clear, bold lines with each stroke. These ball point pens provide smooth writing for taking notes",
                "DURABLE AND RELIABLE: Constructed to meet ASTM D4236 and ISO 12757-1 standards, these colorful pens provide lasting quality and performance",
                "COMFORTABLE GRIP DESIGN: These pens for school have a design that provides a comfortable grip for extended writing sessions, making them ideal for students and professionals",
                "CONVENIENT RETRACTABLE FUNCTION: Easily click to retract the pens, keeping your pockets and bags clean",
                "12-PACK VALUE SET: You always have ball point pens for note taking on hand with this convenient 24-pack, ideal for work, home, or as part of your back to school supplies"
            ],
            "editorialReviews": [],
            "taxonomies": [
                {
                    "taxonomyCode": "44121704",
                    "title": "Ball point pens",
                    "type": "UNSPSC"
                },
                {
                    "taxonomyCode": "24240503",
                    "title": "",
                    "type": "ECLASS"
                }
            ],
            "packageTypeNames": [],
            "title": "Amazon Basics Black Ballpoint Pens for Smooth Writing, Retractable, 12-Pack",
            "url": "https://www.amazon.com/dp/B07BDWD8B7?ref_=ab_psdp",
            "format": null,
            "bookInformation": {
                "isbn": {
                    "isbn10": null,
                    "isbn13": null
                },
                "publicationDate": null,
                "publishedLanguage": null
            },
            "byLine": [],
            "mediaInformation": {
                "editions": [],
                "mediaFormats": []
            },
            "productOverview": {
                "Date First Available": "May 31, 2018",
                "Closure": "Retractable",
                "Unit Count": "12.0 Count",
                "Recommended Uses For Product": "Writing",
                "Size": "12 Count (Pack of 1)",
                "Age Range Description": "Adult",
                "Writing Instrument Form": "Ballpoint Pen",
                "Global Trade Identification Number": "00192233020808",
                "ASIN": "B07BDWD8B7",
                "UPC": "192233020808",
                "Material Type": "Rubber",
                "Product Dimensions": "5.71 x 0.39 x 0.55 inches",
                "Point Type": "Bold",
                "Drill Point": "Bold",
                "Ink Color": "Black",
                "Item Hardness": "H",
                "Manufacturer": "Amazon",
                "Style": "Retractable Ballpoint",
                "Number of Items": "1",
                "Special Feature": "Retractable",
                "Pattern": "Pen",
                "Body Shape": "Round",
                "Model Name": "Amazon Basics",
                "Item dimensions L x W x H": "5.71 x 0.39 x 0.55 inches",
                "Color": "Black",
                "Item Diameter": "0.39 Inches",
                "Item model number": "AH518-12-B",
                "Manufacturer Part Number": "AH518-12-B",
                "Hand Orientation": "Ambidextrous",
                "Material": "Rubber",
                "Model Number": "AH518-12-B",
                "Hardness": "H",
                "Pencil Lead Degree (Hardness)": "H",
                "Grip Type": "No Grip",
                "Brand Name": "Amazon Basics",
                "Brand": "Amazon Basics",
                "Additional Features": "Retractable",
                "Item Dimensions": "5.71 x 0.39 x 0.55 inches",
                "Age Range (Description)": "Adult",
                "Closure Type": "Retractable",
                "Item Weight": "0.28 Ounces"
            },
            "productDetails": {},
            "productVariations": {
                "dimensions": [
                    {
                        "index": 0,
                        "displayString": "Color",
                        "dimensionValues": [
                            {
                                "index": 0,
                                "displayString": "Assorted Colors"
                            },
                            {
                                "index": 1,
                                "displayString": "Black"
                            }
                        ]
                    }
                ],
                "variations": [
                    {
                        "asin": "B07BDV7PDL",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 0
                            }
                        ]
                    },
                    {
                        "asin": "B07BDWD8B7",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 1
                            }
                        ]
                    }
                ]
            },
            "customerReviewsSummary": {
                "numberOfRatings": null,
                "starRating": null
            },
            "productDescription": "These pens are ideal for back to school supplies, offering a comprehensive color pens set for all your writing needs. Whether you're taking notes, creating a masterpiece, or organizing your thoughts in a journal, these multi color pens have you covered. Each pen features a 1.2mm point, ensuring smooth, consistent writing. With a variety of multicolored pens at your disposal, you can easily highlight important information or add a burst of color to your bullet journals. Included in this 24-pack are essential red pens ballpoint, ideal for editing or emphasizing key points. These pens work efficiently as journal pens or bullet journal pens, offering a seamless writing experience that supports your daily activities. The assortment includes pens colored to suit diverse tastes and preferences, allowing for creativity to flourish. Each pen conforms to ASTM D4236 standards, offering quality performance.",
            "upcValues": [],
            "eanValues": [],
            "modelNumber": null,
            "manufacturerName": null,
            "bundleQuantity": null,
            "badges": []
        },
        {
            "asin": "B07FZRXNHT",
            "asinType": "STANDARD",
            "signedProductId": "amzn1.business.asin.JBRH7RVRIM4TGVIKWSDGI2LRMFZG423ZORUGOZLEG5ZGMY3BONQVXQ7W7LEB4QTYXW5UJXZUXL63TBGLCJX6Z6ZC27P3SGPEMPLDSDFIARHFW3AJK2BXJCMOPAXBYKK6OKRYUF3I3PDYA2KJFXGFJUZBU6EFEFBUYB3YBX2IRRG5XFGRQU6A",
            "includedDataTypes": {},
            "features": [
                "QUANTITY: Shuttle Art 70 Pack Retractable Black Gel Ink Pens set has 70 pens, all with black ink.",
                "UNLIMITED USES: Shuttle Art 70 Pack Retractable Black Gel Ink Pens are ideal for school, office and home use. These fine point gel ink pens are suitable for note taking, journal, dairy writing and more.",
                "HIGH QUALITY: Shuttle Art 70 Pack Retractable Black Gel Ink Pens with TWICE large ink volume, comfortable grip and durable pocket clip. Long-lasting, quick-drying ink delivers smooth glides all the time, no smearing & no fading. And each pen with translucent barrel helps you see how much ink is remaining.",
                "NON-TOXIC&ACID-FREE: Shuttle Art 70 Pack Retractable Black Gel Ink Pens conform to ASTM D- 4236 & EN71. CAUTION: 1. Each pen is sealed with wax to prevent ink from drying, please don’t remove the wax before using. 2. The pens need to be kept in horizontal and please avoid them from direct sunlight. WARNING: CHOKING HAZARD ---small parts not for children under 3 yrs.",
                "SERVICE GUARANTEE: Your satisfaction is our top priority, please rest assured to purchase our products. If you are not satisfied with our products or have any questions, please feel free to contact us at any time."
            ],
            "editorialReviews": [],
            "taxonomies": [
                {
                    "taxonomyCode": "44121700",
                    "title": "Writing instruments",
                    "type": "UNSPSC"
                },
                {
                    "taxonomyCode": "24240701",
                    "title": "",
                    "type": "ECLASS"
                }
            ],
            "packageTypeNames": [],
            "title": "Shuttle Art Black Gel Pens, 70 Pack Retractable Medium Point Rollerball Gel Ink Pens Smooth Writing with Comfortable Grip for Office School Home Work",
            "url": "https://www.amazon.com/dp/B07FZRXNHT?ref_=ab_psdp",
            "format": null,
            "bookInformation": {
                "isbn": {
                    "isbn10": null,
                    "isbn13": null
                },
                "publicationDate": null,
                "publishedLanguage": null
            },
            "byLine": [],
            "mediaInformation": {
                "editions": [],
                "mediaFormats": []
            },
            "productOverview": {
                "Date First Available": "July 29, 2018",
                "Closure": "Retractable",
                "Unit Count": "70 Count",
                "Recommended Uses For Product": "Shuttle Art 70 Pack Retractable Black Gel Ink Pens are ideal for school, office and home use.These fine point gel ink pens are suitable for journal, note taking, bullet journal,dairy writing and more.",
                "Included Components": "Pocket Clip",
                "Size": "1 Count (Pack of 70)",
                "Age Range Description": "Adult",
                "ASIN": "B07FZRXNHT",
                "UPC": "729270011973",
                "Material Type": "Plastic",
                "Is Discontinued By Manufacturer": "No",
                "Point Type": "Fine",
                "Drill Point": "Fine",
                "Ink Color": "Black",
                "Manufacturer": "Shuttle Art",
                "Number of Items": "70",
                "Special Feature": "Retractable",
                "Body Shape": "Round",
                "Package Dimensions": "6.93 x 6.14 x 2.8 inches",
                "Color": "70 Black Gel Pens",
                "Item model number": "SA-RGP70",
                "Manufacturer Part Number": "SA-RGP70",
                "Hand Orientation": "Ambidextrous",
                "Material": "Plastic",
                "Model Number": "SA-RGP70",
                "Line Size": "0.7mm",
                "Brand Name": "Shuttle Art",
                "Brand": "Shuttle Art",
                "Additional Features": "Retractable",
                "Age Range (Description)": "Adult",
                "Closure Type": "Retractable"
            },
            "productDetails": {},
            "productVariations": {
                "dimensions": [
                    {
                        "index": 0,
                        "displayString": "Number of Items",
                        "dimensionValues": [
                            {
                                "index": 0,
                                "displayString": "70"
                            },
                            {
                                "index": 1,
                                "displayString": "100"
                            }
                        ]
                    }
                ],
                "variations": [
                    {
                        "asin": "B07FZRXNHT",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 0
                            }
                        ]
                    },
                    {
                        "asin": "B07PQVNVSJ",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 1
                            }
                        ]
                    }
                ]
            },
            "customerReviewsSummary": {
                "numberOfRatings": null,
                "starRating": null
            },
            "productDescription": "QUANTITY:Shuttle Art 70 Pack Retractable Black Gel Ink Pens set has 70 pens,all with black ink. UNLIMITED USES:Shuttle Art 70 Pack Retractable Black Gel Ink Pens are ideal for school, office and home use.These fine point gel ink pens are suitable for journal, note taking, bullet journal,dairy writing and more. HIGH QUALITY: Shuttle Art 70 Pack Retractable Black Gel Ink Pens with Twice large ink volume ,Comfortable Grip and Durable Pocket Clip.Long-lasting,quick-drying ink is smooth writing,no smearing & no fading.And each pen with translucent barrel to see how much ink is remaining. NON-TOXIC&ACID-FREE:Shuttle Art 70 Pack Retractable Black Gel Ink Pens conform to ASTM D- 4236 & EN71. CAUTION:1.Each pen is sealed with wax to prevent ink from drying,please don’t remove the wax before using. 2.The pens needs to be kept in horizontal and please avoid them from direct sunlight.WARNING:CHOKING HAZAED ---small parts not for children under 3 yrs. 100% SATISFACTION GUARANTEE: We will handle and solve all the product' problems immediately for you. If it's still unsatisfactory we will provide full refund.",
            "upcValues": [],
            "eanValues": [],
            "modelNumber": null,
            "manufacturerName": null,
            "bundleQuantity": null,
            "badges": []
        },
        {
            "asin": "B0DB13YSJ5",
            "asinType": "STANDARD",
            "signedProductId": "amzn1.business.asin.3R7FSDJGWDGHREXVSOWWI2LRMFZG423ZORUGOZLEG5ZGMY3BONQ562E6NZGMUK6HVNOPQXBCMGB5B3LQJBGCYDWDDRUBQKB3ZNY5SEPGKM47DTXKHHKT3X4ZXXOLHTLNDZWV2N2ZJNYZ37AI7V226EFHJUZUZZKSPNQYUZHEMPR4KY3ROD2A",
            "includedDataTypes": {},
            "features": [
                "【Long-Lasting & Refillable】These gel pens are designed with a large ink capacity, offering long-lasting performance. You can write more without the need for frequent refills. The translucent barrel lets you easily see how much ink remains. Plus, by refilling the retractable pens with ink refills, you can save money and reduce waste",
                "【Comfortable Grip】The soft rubber grip provides a comfortable and ergonomic holding experience, making it easier to tackle long writing sessions without strain",
                "【Portable & Leak-Proof】Featuring a durable pocket clip, these black gel pens are easy to carry wherever you go. The retractable design prevents ink leaks, while each pen is sealed with wax to keep the ink from drying out",
                "【Smooth & Fast-Drying, No Bleeding】With a 0.7mm medium tip, these medium point pens offer a smooth, skip-free writing experience. The gel ink flows effortlessly across the paper, providing consistent, smudge-free writing. Thanks to the reliable tungsten carbide ball, the ink won’t skip or bleed through paper, ensuring an ideal writing experience",
                "【Unbeatable Value】This set includes 100 black ink gel pens, offering exceptional value. Perfect for offices, schools, businesses, and home use, these pens are ideal for note-taking, journaling, and everyday writing, all while saving you money"
            ],
            "editorialReviews": [],
            "taxonomies": [
                {
                    "taxonomyCode": "44121700",
                    "title": "Writing instruments",
                    "type": "UNSPSC"
                }
            ],
            "packageTypeNames": [],
            "title": "deli Gel Pens, 100 Pcs Retractable Pens Black Ink, Medium Point Pen 0.7mm, Smooth Writing, Fast Dry, No Bleed for Journaling Note Taking, Home School Office Supplies",
            "url": "https://www.amazon.com/dp/B0DB13YSJ5?ref_=ab_psdp",
            "format": null,
            "bookInformation": {
                "isbn": {
                    "isbn10": null,
                    "isbn13": null
                },
                "publicationDate": null,
                "publishedLanguage": null
            },
            "byLine": [],
            "mediaInformation": {
                "editions": [],
                "mediaFormats": []
            },
            "productOverview": {
                "Date First Available": "July 24, 2024",
                "Closure": "Retractable",
                "Unit Count": "100.0 Count",
                "Recommended Uses For Product": "Coloring, Drawing, Drafting, Note Taking, Writing",
                "Size": "1 Count (Pack of 100)",
                "Age Range Description": "Adult",
                "Writing Instrument Form": "Roller Ball Pen",
                "ASIN": "B0DB13YSJ5",
                "Material Type": "Plastic",
                "Point Type": "Medium",
                "Is Bulk Pack": "Yes",
                "Drill Point": "Medium",
                "Ink Color": "Black",
                "Manufacturer": "deli",
                "Style": "Modern",
                "Number of Items": "100",
                "Special Feature": "Ergonomic, Quick Drying, Pocket Clip, Long Lasting, Soft Grip",
                "Body Shape": "Round",
                "Model Name": "AZ10420B",
                "Package Dimensions": "4.84 x 0.79 x 0.75 inches",
                "Color": "Black",
                "Item model number": "AZ10420B",
                "Manufacturer Part Number": "AZ10420B",
                "Hand Orientation": "Ambidextrous",
                "Material": "Plastic",
                "Model Number": "AZ10420B",
                "Line Size": "0.7 Millimeters",
                "Grip Type": "Contoured",
                "Brand Name": "deli",
                "Brand": "deli",
                "Water Resistance Level": "Waterproof",
                "Additional Features": "Ergonomic, Quick Drying, Pocket Clip, Long Lasting, Soft Grip",
                "Age Range (Description)": "Adult",
                "Closure Type": "Retractable"
            },
            "productDetails": {},
            "productVariations": {
                "dimensions": [
                    {
                        "index": 0,
                        "displayString": "Size",
                        "dimensionValues": [
                            {
                                "index": 0,
                                "displayString": "1 Count (Pack of 50)"
                            },
                            {
                                "index": 1,
                                "displayString": "1 Count (Pack of 100)"
                            }
                        ]
                    }
                ],
                "variations": [
                    {
                        "asin": "B0DB1449VQ",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 0
                            }
                        ]
                    },
                    {
                        "asin": "B0DB13YSJ5",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 1
                            }
                        ]
                    }
                ]
            },
            "customerReviewsSummary": {
                "numberOfRatings": null,
                "starRating": null
            },
            "productDescription": "Deli Gel Pens, 100 Pcs Retractable Pens Black Ink, Medium Point Pen 0.7mm, Smooth Writing, Fast Dry , No Bleed for Journaling Note Taking, Home School Office Supplies",
            "upcValues": [],
            "eanValues": [],
            "modelNumber": null,
            "manufacturerName": null,
            "bundleQuantity": null,
            "badges": []
        },
        {
            "asin": "B0C9W8DD9S",
            "asinType": "STANDARD",
            "signedProductId": "amzn1.business.asin.47G73SPVNKHRVZ35P3UGI2LRMFZG423ZORUGOZLEG5ZGMY3BONQ66E72F7SJGAZIGLP3EGVJDZXFVRFGIHWOVFJJEDJFGDAZIPQ4NYGHWBRLBWWLDCVBMC23WHCATIFFX5G7YCXMECL5D4ONM5AB6WEEKKW6Z5GGP5EQD3KFQ4CRDGM5KIGQ",
            "includedDataTypes": {},
            "features": [
                "Gel Pens: You will receive 6pc quick-drying ink pens with a modern minimalist design to suit your needs Daily use and replacement needs",
                "Quick-Drying Ink: These retractable roller ball gel pens feature reliable ink that won't fade or smudge easily; the rollerball ink dries quickly that help you keep work neat and organized",
                "Practical and Simple Design: The convenient clip design can firmly clip the neutral ink ballpoint pen to a book, notebook or bag, easy to carry, without worrying about losing; retractable design, gently press the cap, the pen end automatically retracts",
                "Scope of use: 6pc gel pen is suitable for children and adults for writing, diary, sketching, painting, scrapbooking, making gift cards, etc., to meet your various needs in daily study and work",
                "Practical Gifts: You can give these colored gel pens as practical gifts to your family, friends, students, classmates and colleagues to express your feelings on various occasions such as birthdays, thanksgiving, Christmas stockings stuffers, graduations, classroom activities, parties, etc. love and blessings"
            ],
            "editorialReviews": [],
            "taxonomies": [
                {
                    "taxonomyCode": "44121700",
                    "title": "Writing instruments",
                    "type": "UNSPSC"
                },
                {
                    "taxonomyCode": "24240000",
                    "title": "",
                    "type": "ECLASS"
                }
            ],
            "packageTypeNames": [],
            "title": "Ddaowanx Gel Pens, 6 Pcs 0.5mm Quick Dry Black Ink Pens Fine Point Smooth Writing Pens, Cute Office School Supplies Gifts for Women",
            "url": "https://www.amazon.com/dp/B0C9W8DD9S?ref_=ab_psdp",
            "format": null,
            "bookInformation": {
                "isbn": {
                    "isbn10": null,
                    "isbn13": null
                },
                "publicationDate": null,
                "publishedLanguage": null
            },
            "byLine": [],
            "mediaInformation": {
                "editions": [],
                "mediaFormats": []
            },
            "productOverview": {
                "Date First Available": "July 1, 2023",
                "Closure": "Retractable",
                "Unit Count": "6.0 Count",
                "Recommended Uses For Product": "Office",
                "Included Components": "6 retractable gel pens",
                "Size": "6 Count (Pack of 1)",
                "Age Range Description": "Adult",
                "Writing Instrument Form": "Ballpoint Pen",
                "ASIN": "B0C9W8DD9S",
                "UPC": "741421002302",
                "Product Dimensions": "2.36 x 0.55 x 5.9 inches",
                "Point Type": "Fine",
                "Drill Point": "Fine",
                "Ink Color": "Black",
                "Ink Base": "Water",
                "Manufacturer": "Ddaowanx",
                "Style": "Modern",
                "Special Feature": "Quick Drying, Heavy Duty, Soft Grip",
                "Body Shape": "Round",
                "Item dimensions L x W x H": "2.36 x 0.55 x 5.9 inches",
                "Color": "6 Pcs Morandi-Black Ink",
                "Item model number": "Gel Pen-01",
                "Manufacturer Part Number": "Gel Pen-01",
                "Hand Orientation": "Ambidextrous",
                "Model Number": "Gel Pen-01",
                "Line Size": "0.5 Millimeters",
                "Brand Name": "Ddaowanx",
                "Brand": "Ddaowanx",
                "Theme": "Office Modern Style",
                "Additional Features": "Quick Drying, Heavy Duty, Soft Grip",
                "Item Dimensions": "2.36 x 0.55 x 5.9 inches",
                "Age Range (Description)": "Adult",
                "Closure Type": "Retractable",
                "Item Weight": "0.24 Pounds"
            },
            "productDetails": {},
            "productVariations": {
                "dimensions": [
                    {
                        "index": 0,
                        "displayString": "Color",
                        "dimensionValues": [
                            {
                                "index": 0,
                                "displayString": "10 Pcs Gradient-Black Ink"
                            },
                            {
                                "index": 1,
                                "displayString": "12 Pcs Morandi-Black Ink"
                            },
                            {
                                "index": 2,
                                "displayString": "12 Pcs Vintage+Morandi-Black Ink"
                            },
                            {
                                "index": 3,
                                "displayString": "12 Pcs Vintage-Black Ink"
                            },
                            {
                                "index": 4,
                                "displayString": "24 Pcs Morandi-Black Ink"
                            },
                            {
                                "index": 5,
                                "displayString": "24 Pcs Vintage-Black Ink"
                            },
                            {
                                "index": 6,
                                "displayString": "4 Pcs Morandi Cat-Black Ink"
                            },
                            {
                                "index": 7,
                                "displayString": "5 Pcs Gradient-Black Ink"
                            },
                            {
                                "index": 8,
                                "displayString": "6 Pcs Morandi-Black Ink"
                            },
                            {
                                "index": 9,
                                "displayString": "6 Pcs Vintage-Black Ink"
                            },
                            {
                                "index": 10,
                                "displayString": "8 Pcs Morandi Cat-Black Ink"
                            }
                        ]
                    }
                ],
                "variations": [
                    {
                        "asin": "B0CPXD4H8D",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 0
                            }
                        ]
                    },
                    {
                        "asin": "B0CPXB8B92",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 1
                            }
                        ]
                    },
                    {
                        "asin": "B0CPXB9383",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 2
                            }
                        ]
                    },
                    {
                        "asin": "B0CPXBGZWJ",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 3
                            }
                        ]
                    },
                    {
                        "asin": "B0D1DZWYK7",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 4
                            }
                        ]
                    },
                    {
                        "asin": "B0D1DBQY4W",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 5
                            }
                        ]
                    },
                    {
                        "asin": "B0CPXCWRXM",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 6
                            }
                        ]
                    },
                    {
                        "asin": "B0CDWP5Q3F",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 7
                            }
                        ]
                    },
                    {
                        "asin": "B0C9W8DD9S",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 8
                            }
                        ]
                    },
                    {
                        "asin": "B0CPXBTHL3",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 9
                            }
                        ]
                    },
                    {
                        "asin": "B0CPXC1KZ8",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 10
                            }
                        ]
                    }
                ]
            },
            "customerReviewsSummary": {
                "numberOfRatings": null,
                "starRating": null
            },
            "productDescription": "Features: \n6pcs retractable ink pens are designed with a minimalist style , which are elegant and chic, will bring you a pleasant mood and comfortable writing experience. \n \n0.5mm fine point: \n 6pcs gel pen with 0.5mm fine point design can write more on pages or note cards, perfect for students, diaries, nurse notes, drawing creations. \n \nSpecifications: \nColor: \nRefill: black \nSize: 0.5 mm \n \nThe package includes: \n6 retractable gel pens",
            "upcValues": [],
            "eanValues": [],
            "modelNumber": null,
            "manufacturerName": null,
            "bundleQuantity": null,
            "badges": []
        },
        {
            "asin": "B0C73JDN4S",
            "asinType": "STANDARD",
            "signedProductId": "amzn1.business.asin.LJVJZFRHML3Q747AAZWWI2LRMFZG423ZORUGOZLEG5ZGMY3BONQ4GZ2MUG45JVR2VGQT7VDRGOE63T3VORURCICTWLCB6P3HCGOE5PMHCEPKYYKQA3M56EYVJFWI5EN55YRAFT6KW5K3LKFZEO4SFFZ64KZ4ZVRGAOCNA6OQCKGAYHOEYWPQ",
            "includedDataTypes": {},
            "features": [
                "Super Soft Non-slip Grip: Features grip bring a super soft and comfortable touch feeling which make each ballpoint pen easy to hold",
                "Medium 1.0mm Point: Classic black pens. Vivid, black ink construction make for a great everyday writing tool. Long-lasting, refillable ink for reliable writing, the ball tip of the ball is smooth, and it is not easy to break the ink",
                "Quick-drying Ink: Ballpoint pen ink drying speed is super fast, writing is smooth, not easy to cause stains, bright colors, dries fast",
                "Easy To Use: Ideal for office pens, signature pens, school supplies for adults and children"
            ],
            "editorialReviews": [],
            "taxonomies": [
                {
                    "taxonomyCode": "44121704",
                    "title": "Ball point pens",
                    "type": "UNSPSC"
                },
                {
                    "taxonomyCode": "24240503",
                    "title": "",
                    "type": "ECLASS"
                }
            ],
            "packageTypeNames": [],
            "title": "Linbsunne Ballpoint Pens Black Medium Point 1mm Pen with Super Soft Grip Ball Point Pen for Men Women Retractable Pens (gold-12 pcs)",
            "url": "https://www.amazon.com/dp/B0C73JDN4S?ref_=ab_psdp",
            "format": null,
            "bookInformation": {
                "isbn": {
                    "isbn10": null,
                    "isbn13": null
                },
                "publicationDate": null,
                "publishedLanguage": null
            },
            "byLine": [],
            "mediaInformation": {
                "editions": [],
                "mediaFormats": []
            },
            "productOverview": {
                "Date First Available": "June 5, 2023",
                "Closure": "Retractable",
                "Unit Count": "12.0 Count",
                "Recommended Uses For Product": "Office",
                "Included Components": "Pocket Clip",
                "Size": "1 Count (Pack of 12)",
                "Age Range Description": "Adult",
                "Writing Instrument Form": "Ballpoint Pen",
                "ASIN": "B0C73JDN4S",
                "Material Type": "Metal",
                "Point Type": "Medium",
                "Drill Point": "Medium",
                "Ink Color": "Black",
                "Ink Base": "Hybrid",
                "Item Hardness": "Soft",
                "Manufacturer": "Linbsunne",
                "Style": "refillable",
                "Number of Items": "12",
                "Special Feature": "Retractable",
                "Body Shape": "Round",
                "Package Dimensions": "5.75 x 5.35 x 0.71 inches",
                "Color": "gold-12 pcs",
                "Item model number": "Linbsunne",
                "Manufacturer Part Number": "P06",
                "Hand Orientation": "Ambidextrous",
                "Material": "Metal",
                "Model Number": "Linbsunne",
                "Hardness": "Soft",
                "Pencil Lead Degree (Hardness)": "Soft",
                "Grip Type": "Contoured",
                "Brand Name": "Linbsunne",
                "Brand": "Linbsunne",
                "Additional Features": "Retractable",
                "Age Range (Description)": "Adult",
                "Closure Type": "Retractable",
                "Item Weight": "4.97 ounces"
            },
            "productDetails": {},
            "productVariations": {
                "dimensions": [
                    {
                        "index": 0,
                        "displayString": "Color",
                        "dimensionValues": [
                            {
                                "index": 0,
                                "displayString": "gold-12 pcs"
                            },
                            {
                                "index": 1,
                                "displayString": "silver-12 pcs"
                            }
                        ]
                    }
                ],
                "variations": [
                    {
                        "asin": "B0C73JDN4S",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 0
                            }
                        ]
                    },
                    {
                        "asin": "B0C73JT5M4",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 1
                            }
                        ]
                    }
                ]
            },
            "customerReviewsSummary": {
                "numberOfRatings": null,
                "starRating": null
            },
            "productDescription": "PRODUCT DETAIL\n 1.Retractable Pens: convenient and quick to use. \n 2.Soft Non-slip Grip: Features soft grip for extra comfort that fits.snugly in the hand for hours of comfortable writing.\n 3.Eesy To Hold: Convenient metal pocket clip for quick to use.\n 4.1mm Medium Point Ball Point Pen\n 5.Black Ink: Quick-Drying, No-Bleed Ink.\n\n",
            "upcValues": [],
            "eanValues": [],
            "modelNumber": null,
            "manufacturerName": null,
            "bundleQuantity": null,
            "badges": []
        },
        {
            "asin": "B000FDR47E",
            "asinType": "STANDARD",
            "signedProductId": "amzn1.business.asin.GZ4XMGJNYGCY62TJUC3WI2LRMFZG423ZORUGOZLEG5ZGMY3BONQVYY2GICVN57MR3P5EZ342OAHBH2257PFRT3KMUIB45F6IKLOCEEXRAZENC2266U7HIUYASRFXKLJ2W6OJHSLVSP4C4KIBCG7JC6EYNBT4KYAMEEV74KF3FI4VENOSXOKQ",
            "includedDataTypes": {},
            "features": [
                "Nothing Else Like It - Uni's proprietary ink formulation is archival quality, our long-lasting inks are high quality and immune to fading, fraud, and water; The obvious choice for professionals, amateurs, and everyone in between.",
                "Simply The Best - Each Uniball pen is meticulously and thoughtfully designed, manufactured, and assembled in Japan; our high-quality finishes along with our stylish designs make us the standard when it comes to the ideal writing experience.",
                "Multiple Tip Sizes - Choose from 0.38 pens ultra micro tip, 0.5 pens micro tip, 0.7 pens medium tip, and 1.0 pens bold tip; Best pens for coloring, drawing, studying, business, and precision writing.",
                "Multiple Color Options - Choose from black ink pens, blue ink, red ink, purple ink, and multi-color pens; whether you need blue and black pens or colorful pens, we've got you covered!",
                "Multiple Quantities - Various pack sizes from 2 pens up to 144 bulk pens; Bulk pens are high school classroom essentials, nursing essentials for work, and college essentials for studying."
            ],
            "editorialReviews": [],
            "taxonomies": [
                {
                    "taxonomyCode": "24240701",
                    "title": "",
                    "type": "ECLASS"
                },
                {
                    "taxonomyCode": "44121700",
                    "title": "Writing instruments",
                    "type": "UNSPSC"
                }
            ],
            "packageTypeNames": [],
            "title": "Black Retractable Gel Pens 12 Pack with Medium Points, Uni-Ball 207 Signo Click Pens are Fraud Proof and the Best Office Pens, Nursing Pens, Business Pens, School Pens, and Bible Pens",
            "url": "https://www.amazon.com/dp/B000FDR47E?ref_=ab_psdp",
            "format": null,
            "bookInformation": {
                "isbn": {
                    "isbn10": null,
                    "isbn13": null
                },
                "publicationDate": null,
                "publishedLanguage": null
            },
            "byLine": [],
            "mediaInformation": {
                "editions": [],
                "mediaFormats": []
            },
            "productOverview": {
                "Date First Available": "October 29, 2004",
                "Closure": "Retractable",
                "Unit Count": "12.0 Count",
                "Tip Type": "Conical",
                "Recommended Uses For Product": "Marking Out, Calligraphy, Carpentry, Writing, Sketching",
                "Included Components": "Pens (12)",
                "Size": "1 Count (Pack of 12)",
                "Age Range Description": "Adult",
                "Writing Instrument Form": "Multifunction Writing Instruments",
                "Global Trade Identification Number": "00070530339505",
                "ASIN": "B000FDR47E",
                "UPC": "030246339503 641438203047 801593362700 070530339505",
                "Material Type": "Polyester",
                "Product Dimensions": "1.3 x 3.1 x 6 inches",
                "Is Discontinued By Manufacturer": "No",
                "Point Type": "Medium",
                "Drill Point": "Medium",
                "Ink Color": "Black",
                "Ink Base": "Hybrid",
                "Item Hardness": "HB",
                "Manufacturer": "0",
                "Style": "0.7mm Medium",
                "Number of Items": "12",
                "Special Feature": "Retractable, Ergonomic, Visible Ink Level, Liquid Ink, Soft Grip",
                "Pattern": "12 Count",
                "Body Shape": "Round",
                "Model Name": "Uni-ball 207",
                "Item dimensions L x W x H": "1.3 x 3.1 x 6 inches",
                "Color": "Black",
                "Item Diameter": "0.7 Millimeters",
                "Item model number": "33950",
                "Manufacturer Part Number": "33950",
                "Hand Orientation": "Ambidextrous",
                "Material": "Polyester",
                "Model Number": "33950",
                "Hardness": "HB",
                "Pencil Lead Degree (Hardness)": "HB",
                "Line Size": "0.7mm",
                "Grip Type": "Ribbed",
                "Brand Name": "Uni-Ball",
                "Brand": "Uni-Ball",
                "Water Resistance Level": "Water Resistant",
                "Theme": "Rainbow, Animal, Fantasy, Cartoon, Floral",
                "Additional Features": "Retractable, Ergonomic, Visible Ink Level, Liquid Ink, Soft Grip",
                "Item Dimensions": "1.3 x 3.1 x 6 inches",
                "Age Range (Description)": "Adult",
                "Closure Type": "Retractable",
                "Item Weight": "0.31 Pounds"
            },
            "productDetails": {},
            "productVariations": {
                "dimensions": [
                    {
                        "index": 0,
                        "displayString": "Color",
                        "dimensionValues": [
                            {
                                "index": 0,
                                "displayString": "Black"
                            },
                            {
                                "index": 1,
                                "displayString": "Blue"
                            },
                            {
                                "index": 2,
                                "displayString": "Bulk Black"
                            },
                            {
                                "index": 3,
                                "displayString": "Bulk Blue"
                            },
                            {
                                "index": 4,
                                "displayString": "Red"
                            },
                            {
                                "index": 5,
                                "displayString": "Violet"
                            }
                        ]
                    },
                    {
                        "index": 1,
                        "displayString": "Size",
                        "dimensionValues": [
                            {
                                "index": 0,
                                "displayString": "1 Count (Pack of 12)"
                            },
                            {
                                "index": 1,
                                "displayString": "1 Count (Pack of 36)"
                            },
                            {
                                "index": 2,
                                "displayString": "1 Count (Pack of 180)"
                            },
                            {
                                "index": 3,
                                "displayString": "12 Count (Pack of 1)"
                            }
                        ]
                    },
                    {
                        "index": 2,
                        "displayString": "Style",
                        "dimensionValues": [
                            {
                                "index": 0,
                                "displayString": "0.7mm Medium"
                            },
                            {
                                "index": 1,
                                "displayString": "0.38mm Ultra Micro"
                            }
                        ]
                    }
                ],
                "variations": [
                    {
                        "asin": "B000FDR47E",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 0
                            },
                            {
                                "index": 1,
                                "value": 0
                            },
                            {
                                "index": 2,
                                "value": 0
                            }
                        ]
                    },
                    {
                        "asin": "B005HNZ5SW",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 0
                            },
                            {
                                "index": 1,
                                "value": 3
                            },
                            {
                                "index": 2,
                                "value": 1
                            }
                        ]
                    },
                    {
                        "asin": "B0002LCVVI",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 1
                            },
                            {
                                "index": 1,
                                "value": 3
                            },
                            {
                                "index": 2,
                                "value": 0
                            }
                        ]
                    },
                    {
                        "asin": "B005HNZ5TG",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 1
                            },
                            {
                                "index": 1,
                                "value": 3
                            },
                            {
                                "index": 2,
                                "value": 1
                            }
                        ]
                    },
                    {
                        "asin": "B00RKOW49E",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 2
                            },
                            {
                                "index": 1,
                                "value": 1
                            },
                            {
                                "index": 2,
                                "value": 0
                            }
                        ]
                    },
                    {
                        "asin": "B00OQQ05PO",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 3
                            },
                            {
                                "index": 1,
                                "value": 1
                            },
                            {
                                "index": 2,
                                "value": 0
                            }
                        ]
                    },
                    {
                        "asin": "B0DF4B116Q",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 3
                            },
                            {
                                "index": 1,
                                "value": 2
                            },
                            {
                                "index": 2,
                                "value": 0
                            }
                        ]
                    },
                    {
                        "asin": "B000Z8ET18",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 4
                            },
                            {
                                "index": 1,
                                "value": 0
                            },
                            {
                                "index": 2,
                                "value": 0
                            }
                        ]
                    },
                    {
                        "asin": "B0017TI7S0",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 5
                            },
                            {
                                "index": 1,
                                "value": 0
                            },
                            {
                                "index": 2,
                                "value": 0
                            }
                        ]
                    }
                ]
            },
            "customerReviewsSummary": {
                "numberOfRatings": null,
                "starRating": null
            },
            "productDescription": "Create text that's clear and bold with uni-ball 207 gel click pens. Our black ink pens feature exclusive uni Super Ink with three-way protection against water, fading, and fraud. The acid-free ink is also vividly pigmented and resistant to fading, making these nice pens perfect for archival-quality projects. Our retractable pens feature sleek metallic accents for an elegant appearance. The visible ink supply ensures that you don't run out unexpectedly.",
            "upcValues": [],
            "eanValues": [],
            "modelNumber": null,
            "manufacturerName": null,
            "bundleQuantity": null,
            "badges": []
        }
    ]
}

In this example, the API returns 306 products matching the search criteria. The response includes searchRefinements such as the following:

   "searchRefinements": [
...
        {
            "selectionType": "InsteadSelect",
            "displayValue": "Delivery Day",
            "refinementValues": [
                {
                    "displayName": "Get It by Tomorrow",
                    "searchRefinementValue": "SSI$p_90#BN$8308921011"
                }
            ]
        },
        {
            "selectionType": "MultiSelectOR",
            "displayValue": "Amazon Prime",
            "refinementValues": [
                {
                    "displayName": "Prime Eligible",
                    "searchRefinementValue": "SSI$p_85#BN$2470955011"
                }
            ]
        },
        {
            "selectionType": "MultiSelectOR",
            "displayValue": "Shipping Options",
            "refinementValues": [
                {
                    "displayName": "Free Shipping by Amazon",
                    "searchRefinementValue": "SSI$p_76#BN$2661625011"
                }
            ]
        },
        {
            "selectionType": "InsteadSelect",
            "displayValue": "Customer Reviews",
            "refinementValues": [
                {
                    "displayName": "4 Stars & Up",
                    "searchRefinementValue": "SSI$p_72#BN$2661618011"
                }
            ]
        }
        ...

In the Amazon Business search UI, these refinements would be rendered as filters that customers could use to filter their search requests.

In the next step, we’ll use these refinements to narrow down this search and find more specific products.

Step 2. Refine your search

You can filter your search by making a second call to the searchProductsRequest operation. In this request, include the same fields as your first query in Step 1, as well as the searchRefinements query parameter. In this parameter, include the applicable searchRefinementValue IDs from Step 1 for the search refinements you would like to use.

TypeNameDescriptionSchemaRequired
QuerysearchRefinementsA list of search refinement IDs that you can use to refine your keyword search for relevant results. To include multiple refinements in a single request, separate each refinement with a comma.stringYes

❗️

Do not hard-code search refinement values in the request. Instead, the search refinements value should be dynamically retrieved from a previous API response and used in subsequent requests.

In this example, we’ll include SSI$p_123#GID$234478 in the searchRefinements query parameter to limit results to the Amazon Basics brand.

GET https://na.business-api.amazon.com/products/2020-08-26/products?category=OFFICE_PRODUCTS&searchRefinements=SSI$p_123%23GID$234478&productRegion=US&keywords=pens&locale=en-US
import requests

url = "https://na.business-api.amazon.com/products/2020-08-26/products?category=OFFICE_PRODUCTS&searchRefinements=SSI$p_123%23GID$234478&productRegion=US&keywords=pens&locale=en-US"

headers = {
    "accept": "application/json",
    "x-amz-access-token": "<Access token retrieved in Prerequisites Step 1>",
    "x-amz-user-email": "<Customer email address",
}

response = requests.get(url, headers=headers)

print(response.text)

A successful request returns search results filtered by the selected criteria. Now the API results only include products in the Office Products category from the Amazon Basics brand. After applying the search refinements, the API now returns 71 results matching the search query.

{
    "matchingProductCount": 61,
    "searchRefinements": [
        {
            "selectionType": "SingleSelect",
            "displayValue": "Department",
            "refinementValues": [
                {
                    "displayName": "Office & School Supplies",
                    "searchRefinementValue": "node#1069242"
                },
                {
                    "displayName": "Office Electronics",
                    "searchRefinementValue": "node#172574"
                },
                {
                    "displayName": "Office Furniture & Lighting",
                    "searchRefinementValue": "node#1069102"
                }
            ]
        },
        {
            "selectionType": "SingleSelect",
            "displayValue": "Office Products",
            "refinementValues": []
        },
        {
            "selectionType": "MultiSelectOR",
            "displayValue": "Amazon Prime",
            "refinementValues": [
                {
                    "displayName": "Prime Eligible",
                    "searchRefinementValue": "SSI$p_85#BN$2470955011"
                }
            ]
        },
        {
            "selectionType": "MultiSelectOR",
            "displayValue": "Eligible for Free Shipping",
            "refinementValues": [
                {
                    "displayName": "Free Shipping by Amazon",
                    "searchRefinementValue": "SSI$p_76#BN$1249170011"
                }
            ]
        },
        {
            "selectionType": "MultiSelectOR",
            "displayValue": "Brands",
            "refinementValues": [
                {
                    "displayName": "Amazon Basics",
                    "searchRefinementValue": "SSI$p_123#GID$234478"
                },
                {
                    "displayName": "Sharpie",
                    "searchRefinementValue": "SSI$p_123#GID$237088"
                },
                {
                    "displayName": "PILOT",
                    "searchRefinementValue": "SSI$p_123#GID$486782"
                },
                {
                    "displayName": "BIC",
                    "searchRefinementValue": "SSI$p_123#GID$266624"
                },
                {
                    "displayName": "Pentel",
                    "searchRefinementValue": "SSI$p_123#GID$236620"
                },
                {
                    "displayName": "Paper Mate",
                    "searchRefinementValue": "SSI$p_123#GID$237107"
                },
                {
                    "displayName": "Uni-Ball",
                    "searchRefinementValue": "SSI$p_123#GID$251662"
                },
                {
                    "displayName": "SAKURA",
                    "searchRefinementValue": "SSI$p_123#GID$463040"
                },
                {
                    "displayName": "Cross",
                    "searchRefinementValue": "SSI$p_123#GID$18514"
                },
                {
                    "displayName": "Zebra Pen",
                    "searchRefinementValue": "SSI$p_123#GID$3479962"
                },
                {
                    "displayName": "Parker",
                    "searchRefinementValue": "SSI$p_123#GID$237099"
                },
                {
                    "displayName": "STABILO",
                    "searchRefinementValue": "SSI$p_123#GID$251776"
                },
                {
                    "displayName": "Lamy",
                    "searchRefinementValue": "SSI$p_123#GID$333875"
                },
                {
                    "displayName": "MONTBLANC",
                    "searchRefinementValue": "SSI$p_123#GID$233934"
                },
                {
                    "displayName": "Waterman",
                    "searchRefinementValue": "SSI$p_123#GID$237101"
                },
                {
                    "displayName": "Tombow",
                    "searchRefinementValue": "SSI$p_123#GID$234145"
                },
                {
                    "displayName": "Faber-Castell",
                    "searchRefinementValue": "SSI$p_123#GID$234755"
                },
                {
                    "displayName": "Sheaffer",
                    "searchRefinementValue": "SSI$p_123#GID$314019"
                },
                {
                    "displayName": "Kaweco",
                    "searchRefinementValue": "SSI$p_123#GID$245990"
                },
                {
                    "displayName": "STAEDTLER",
                    "searchRefinementValue": "SSI$p_123#GID$312915"
                },
                {
                    "displayName": "Caran d'Ache",
                    "searchRefinementValue": "SSI$p_123#GID$314632"
                },
                {
                    "displayName": "Pelikan",
                    "searchRefinementValue": "SSI$p_123#GID$359043"
                },
                {
                    "displayName": "Monteverde",
                    "searchRefinementValue": "SSI$p_123#GID$370064"
                },
                {
                    "displayName": "U Brands",
                    "searchRefinementValue": "SSI$p_123#GID$377734"
                },
                {
                    "displayName": "Conklin",
                    "searchRefinementValue": "SSI$p_123#GID$2696413"
                },
                {
                    "displayName": "Uchida",
                    "searchRefinementValue": "SSI$p_123#GID$617936"
                },
                {
                    "displayName": "Mr. Pen",
                    "searchRefinementValue": "SSI$p_123#GID$157114"
                },
                {
                    "displayName": "posca",
                    "searchRefinementValue": "SSI$p_123#GID$253577"
                },
                {
                    "displayName": "ARTEZA",
                    "searchRefinementValue": "SSI$p_123#GID$244357"
                },
                {
                    "displayName": "TRU RED",
                    "searchRefinementValue": "SSI$p_123#GID$623024"
                },
                {
                    "displayName": "Rocketbook",
                    "searchRefinementValue": "SSI$p_123#GID$342634"
                },
                {
                    "displayName": "STAPLES",
                    "searchRefinementValue": "SSI$p_123#GID$467683"
                },
                {
                    "displayName": "Erin Condren",
                    "searchRefinementValue": "SSI$p_123#GID$246691"
                },
                {
                    "displayName": "Copic",
                    "searchRefinementValue": "SSI$p_123#GID$232700"
                },
                {
                    "displayName": "Rite in the Rain",
                    "searchRefinementValue": "SSI$p_123#GID$247349"
                },
                {
                    "displayName": "Schneider",
                    "searchRefinementValue": "SSI$p_123#GID$5750981"
                },
                {
                    "displayName": "Diplomat",
                    "searchRefinementValue": "SSI$p_123#GID$492747"
                },
                {
                    "displayName": "Kuretake",
                    "searchRefinementValue": "SSI$p_123#GID$380895"
                },
                {
                    "displayName": "PAPERAGE",
                    "searchRefinementValue": "SSI$p_123#GID$472708"
                },
                {
                    "displayName": "Moleskine",
                    "searchRefinementValue": "SSI$p_123#GID$248702"
                },
                {
                    "displayName": "Zonon",
                    "searchRefinementValue": "SSI$p_123#GID$615078"
                }
            ]
        },
        {
            "selectionType": "InsteadSelect",
            "displayValue": "Customer Reviews",
            "refinementValues": [
                {
                    "displayName": "4 Stars & Up",
                    "searchRefinementValue": "SSI$p_72#BN$1248945011"
                }
            ]
        },
        {
            "selectionType": "InsteadSelect",
            "displayValue": "Condition",
            "refinementValues": [
                {
                    "displayName": "New",
                    "searchRefinementValue": "SSI$p_n_condition-type#BN$6358196011"
                }
            ]
        },
        {
            "selectionType": "InsteadSelect",
            "displayValue": "Price",
            "refinementValues": [
                {
                    "displayName": "Under $25",
                    "searchRefinementValue": "SSI$p_36#BN$1253550011"
                }
            ]
        },
        {
            "selectionType": "InsteadSelect",
            "displayValue": "Deals & Discounts",
            "refinementValues": [
                {
                    "displayName": "All Discounts",
                    "searchRefinementValue": "SSI$p_n_deal_type#BN$23566065011"
                },
                {
                    "displayName": "Today's Deals",
                    "searchRefinementValue": "SSI$p_n_deal_type#BN$23566064011"
                }
            ]
        },
        {
            "selectionType": "MultiSelectOR",
            "displayValue": "Top Brands in Office Products",
            "refinementValues": [
                {
                    "displayName": "Top Brands",
                    "searchRefinementValue": "SSI$p_n_feature_forty-one_browse-bin#BN$119653281011"
                }
            ]
        },
        {
            "selectionType": "MultiSelectOR",
            "displayValue": "Seller Type",
            "refinementValues": [
                {
                    "displayName": "Business Seller",
                    "searchRefinementValue": "SSI$p_amazon_business_seller#BN$15156999011"
                }
            ]
        },
        {
            "selectionType": "MultiSelectOR",
            "displayValue": "From Our Brands",
            "refinementValues": [
                {
                    "displayName": "Amazon Brands",
                    "searchRefinementValue": "SSI$p_n_feature_forty-seven_browse-bin#BN$24677333011"
                }
            ]
        },
        {
            "selectionType": "MultiSelectOR",
            "displayValue": "Subscribe & Save",
            "refinementValues": [
                {
                    "displayName": "Subscribe & Save Eligible",
                    "searchRefinementValue": "SSI$p_n_is_sns_available#BN$2617006011"
                }
            ]
        },
        {
            "selectionType": "MultiSelectOR",
            "displayValue": "Seller",
            "refinementValues": [
                {
                    "displayName": "Amazon",
                    "searchRefinementValue": "SSI$p_6#SC$A2Q1LRYTXHYQ2K"
                },
                {
                    "displayName": "Amazon.com",
                    "searchRefinementValue": "SSI$p_6#SC$ATVPDKIKX0DER"
                }
            ]
        }
    ],
    "refinements": {
        "categories": [],
        "subCategories": [
            {
                "displayName": "Office & School Supplies",
                "id": "1069242"
            },
            {
                "displayName": "Office Electronics",
                "id": "172574"
            },
            {
                "displayName": "Office Furniture & Lighting",
                "id": "1069102"
            }
        ],
        "availabilityOptions": [],
        "deliveryDayOptions": [],
        "eligibleForFreeShippingOptions": [],
        "primeEligible": [
            {
                "displayName": "Prime Eligible",
                "id": "PrimeEligibleOnly"
            }
        ]
    },
    "numberOfPages": 3,
    "products": [
        {
            "asin": "B07BDWD8B7",
            "asinType": "STANDARD",
            "signedProductId": "amzn1.business.asin.4I7OU3LQHXVKUL5WWQBWI2LRMFZG423ZORUGOZLEG5ZGMY3BONQ3EFHYS7GOECOC5ANEVPRGYDT4F6QAQZVEOJCJKM5UF5FGUUXTBQDBVXSPR42DO4SPTCFTFVU2AJSXJGJ33GVU4AUVYTSK7HL7KUWXOWDSRJFR423WA5UL6PWTDUUA6NIQ",
            "includedDataTypes": {},
            "features": [
                "SMOOTH WRITING EXPERIENCE: Enjoy consistent ink flow and a 1.2mm point for clear, bold lines with each stroke. These ball point pens provide smooth writing for taking notes",
                "DURABLE AND RELIABLE: Constructed to meet ASTM D4236 and ISO 12757-1 standards, these colorful pens provide lasting quality and performance",
                "COMFORTABLE GRIP DESIGN: These pens for school have a design that provides a comfortable grip for extended writing sessions, making them ideal for students and professionals",
                "CONVENIENT RETRACTABLE FUNCTION: Easily click to retract the pens, keeping your pockets and bags clean",
                "12-PACK VALUE SET: You always have ball point pens for note taking on hand with this convenient 12-pack, ideal for work, home, or as part of your back to school supplies"
            ],
            "editorialReviews": [],
            "taxonomies": [
                {
                    "taxonomyCode": "44121704",
                    "title": "Ball point pens",
                    "type": "UNSPSC"
                },
                {
                    "taxonomyCode": "24240503",
                    "title": "",
                    "type": "ECLASS"
                }
            ],
            "packageTypeNames": [],
            "title": "Amazon Basics Black Ballpoint Pens for Smooth Writing, Retractable, 12-Pack",
            "url": "https://www.amazon.com/dp/B07BDWD8B7?ref_=ab_psdp",
            "format": null,
            "bookInformation": {
                "isbn": {
                    "isbn10": null,
                    "isbn13": null
                },
                "publicationDate": null,
                "publishedLanguage": null
            },
            "byLine": [],
            "mediaInformation": {
                "editions": [],
                "mediaFormats": []
            },
            "productOverview": {
                "Date First Available": "May 31, 2018",
                "Closure": "Retractable",
                "Unit Count": "12.0 Count",
                "Recommended Uses For Product": "Writing",
                "Size": "12 Count (Pack of 1)",
                "Age Range Description": "Adult",
                "Writing Instrument Form": "Ballpoint Pen",
                "Global Trade Identification Number": "00192233020808",
                "ASIN": "B07BDWD8B7",
                "UPC": "192233020808",
                "Material Type": "Rubber",
                "Product Dimensions": "5.71 x 0.39 x 0.55 inches",
                "Point Type": "Bold",
                "Drill Point": "Bold",
                "Ink Color": "Black",
                "Ink Base": "Alcohol",
                "Item Height": "0.55 inches",
                "Item Hardness": "H",
                "Manufacturer": "Amazon",
                "Style": "Retractable Ballpoint",
                "Number of Items": "1",
                "Special Feature": "Retractable",
                "Pattern": "Pen",
                "Body Shape": "Round",
                "Model Name": "Amazon Basics",
                "Item dimensions L x W x H": "5.71 x 0.39 x 0.55 inches",
                "Color": "Black",
                "Item Diameter": "0.39 Inches",
                "Item model number": "AH518-12-B",
                "Manufacturer Part Number": "AH518-12-B",
                "Hand Orientation": "Ambidextrous",
                "Material": "Rubber",
                "Hardness": "H",
                "Model Number": "AH518-12-B",
                "Pencil Lead Degree (Hardness)": "H",
                "Line Size": "2mm_and_above",
                "Grip Type": "No Grip",
                "Brand Name": "Amazon Basics",
                "Brand": "Amazon Basics",
                "Additional Features": "Retractable",
                "Item Dimensions": "5.71 x 0.39 x 0.55 inches",
                "Age Range (Description)": "Adult",
                "Closure Type": "Retractable",
                "Item Weight": "0.28 Ounces"
            },
            "productDetails": {},
            "productVariations": {
                "dimensions": [
                    {
                        "index": 0,
                        "displayString": "Color",
                        "dimensionValues": [
                            {
                                "index": 0,
                                "displayString": "Assorted Colors"
                            },
                            {
                                "index": 1,
                                "displayString": "Black"
                            }
                        ]
                    }
                ],
                "variations": [
                    {
                        "asin": "B07BDV7PDL",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 0
                            }
                        ]
                    },
                    {
                        "asin": "B07BDWD8B7",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 1
                            }
                        ]
                    }
                ]
            },
            "customerReviewsSummary": {
                "numberOfRatings": null,
                "starRating": null
            },
            "productDescription": "These pens are ideal for back to school supplies, offering a comprehensive color pens set for all your writing needs. Whether you're taking notes, creating a masterpiece, or organizing your thoughts in a journal, these multi color pens have you covered. Each pen features a 1.2mm point, ensuring smooth, consistent writing. With a variety of multicolored pens at your disposal, you can easily highlight important information or add a burst of color to your bullet journals. Included in this 24-pack are essential red pens ballpoint, ideal for editing or emphasizing key points. These pens work efficiently as journal pens or bullet journal pens, offering a seamless writing experience that supports your daily activities. The assortment includes pens colored to suit diverse tastes and preferences, allowing for creativity to flourish. Each pen conforms to ASTM D4236 standards, offering quality performance.",
            "upcValues": [],
            "eanValues": [],
            "modelNumber": null,
            "manufacturerName": null,
            "bundleQuantity": null,
            "badges": [],
            "isBundledAsin": null
        },
        {
            "asin": "B0BZVGC5TZ",
            "asinType": "STANDARD",
            "signedProductId": "amzn1.business.asin.X37CDDRFNNSVMJNPMIPGI2LRMFZG423ZORUGOZLEG5ZGMY3BONQVAWWEGTILLESECO7T4FZW5OS4DDYKY4AOW6JQHNNXIKV57LBQAJKENRXZSXGDKGDPZ7IR2YNZBWABNHNG56EWMMB3B4BAVZ5DVTJPEZ6EHDMLAIKUFI7EFN5ADBH6ZUZQ",
            "includedDataTypes": {},
            "features": [
                "SMUDGE-FREE INK: These retractable black gel pens feature no-smear technology to help keep your pages pristine",
                "CONSISTENT FLOW: The fine point gel ink pens provide smooth, no-skip ink flow",
                "FINE TIP PRECISION: The fine point gel pens boast a 0.7mm tip ideal for detailed work and clear handwriting",
                "LONG-LASTING PERFORMANCE: The black ink pens are designed to provide writing until the last drop of ink, maximizing usage and value",
                "CONVENIENT QUANTITY: This pack includes 12 fine point retractable black pens, suitable for school, home, or office use"
            ],
            "editorialReviews": [],
            "taxonomies": [
                {
                    "taxonomyCode": "44121700",
                    "title": "Writing instruments",
                    "type": "UNSPSC"
                },
                {
                    "taxonomyCode": "24240000",
                    "title": "",
                    "type": "ECLASS"
                }
            ],
            "packageTypeNames": [],
            "title": "Amazon Basics Gel Pens Fine Point Smooth Writing Pens, Retractable, Black, 0.7mm, 12 Pack",
            "url": "https://www.amazon.com/dp/B0BZVGC5TZ?ref_=ab_psdp",
            "format": null,
            "bookInformation": {
                "isbn": {
                    "isbn10": null,
                    "isbn13": null
                },
                "publicationDate": null,
                "publishedLanguage": null
            },
            "byLine": [],
            "mediaInformation": {
                "editions": [],
                "mediaFormats": []
            },
            "productOverview": {
                "Date First Available": "December 10, 2024",
                "Closure": "Retractable",
                "Unit Count": "12.0 Count",
                "Recommended Uses For Product": "Writing, Note-taking, Sketching",
                "Included Components": "12 Count of Amazon Basics Retractable Gel Pens",
                "Size": "12 Count (Pack of 1)",
                "Age Range Description": "Adult",
                "ASIN": "B0BZVGC5TZ",
                "UPC": "840324404937",
                "Material Type": "Plastic, Rubber",
                "Product Dimensions": "5.51 x 0.59 x 0.39 inches",
                "Point Type": "Fine",
                "Drill Point": "Fine",
                "Ink Color": "Black",
                "Ink Base": "Water",
                "Item Height": "0.99 centimeters",
                "Manufacturer": "Amazon",
                "Style": "Refillable",
                "Number of Items": "1",
                "Special Feature": "Retractable",
                "Warranty Description": "18 months",
                "Body Shape": "Round",
                "Item dimensions L x W x H": "5.51 x 0.59 x 0.39 inches",
                "Color": "Black",
                "Item model number": "GP1842-12BK",
                "Manufacturer Part Number": "GP1842-12BK",
                "Hand Orientation": "Left",
                "Material": "Plastic, Rubber",
                "Model Number": "GP1842-12BK",
                "Line Size": "0_7mm",
                "Grip Type": "Contoured",
                "Brand Name": "Amazon Basics",
                "Brand": "Amazon Basics",
                "Additional Features": "Retractable",
                "Item Dimensions": "5.51 x 0.59 x 0.39 inches",
                "Age Range (Description)": "Adult",
                "Closure Type": "Retractable",
                "Item Weight": "0.01 Kilograms"
            },
            "productDetails": {},
            "productVariations": {
                "dimensions": [
                    {
                        "index": 0,
                        "displayString": "Color",
                        "dimensionValues": [
                            {
                                "index": 0,
                                "displayString": "Assorted"
                            },
                            {
                                "index": 1,
                                "displayString": "Black"
                            },
                            {
                                "index": 2,
                                "displayString": "Blue"
                            }
                        ]
                    }
                ],
                "variations": [
                    {
                        "asin": "B0BZVFXQYV",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 0
                            }
                        ]
                    },
                    {
                        "asin": "B0BZVGC5TZ",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 1
                            }
                        ]
                    },
                    {
                        "asin": "B0BZVBKVTQ",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 2
                            }
                        ]
                    }
                ]
            },
            "customerReviewsSummary": {
                "numberOfRatings": null,
                "starRating": null
            },
            "productDescription": "These writing pens for journaling and writing offer a no-smear, smudge-free ink. Designed with fine point pens technology, they feature a 0.7 mm tip that creates strong, consistent lines that do not skip. Packaged in a convenient set of 12, these black pens for school provide uninterrupted writing thanks to their consistent ink flow that won’t dry out or clog when left unretracted. These fine point pens provide long-lasting performance, functioning until the last drop of ink is used.",
            "upcValues": [],
            "eanValues": [],
            "modelNumber": null,
            "manufacturerName": null,
            "bundleQuantity": null,
            "badges": [],
            "isBundledAsin": null
        },
        {
            "asin": "B0756H8HMV",
            "asinType": "STANDARD",
            "signedProductId": "amzn1.business.asin.CDSNHODZ3IREEZXI3RHWI2LRMFZG423ZORUGOZLEG5ZGMY3BONQR25J74NPIVDUWTQJ6H3MNXQR2DIM4JH55IMUW7SW7IXXEQRSJ3FITCQAUA6HYMKETXYGU3ECVAGKVNPQB3YZRCM2MPFDVFIPJHAER4TOGB4FPBOR2D24FRQT2I27FW3NQ",
            "includedDataTypes": {},
            "features": [
                "SMOOTH WRITING EXPERIENCE: Enjoy premium quick-dry ink for effortless, smear-proof writing with these black gel pens",
                "PRECISE AND FINE DETAIL: These fine point pens have a 0.7mm tip that aid in crisp and clear writing, making them trustworthy pens for note taking and detailed tasks",
                "COMFORTABLE AND CONTROLLED GRIP: The black pens have contoured rubber grips that offer comfort and control while you're writing",
                "CONVENIENT RETRACTABLE DESIGN: Simply engage or retract these office pens with one click, without making accidental marks",
                "EASY PORTABILITY: They feature a handy pocket clip, making them simple to attach to notebooks or pockets for on-the-go writing"
            ],
            "editorialReviews": [],
            "taxonomies": [
                {
                    "taxonomyCode": "44121700",
                    "title": "Writing instruments",
                    "type": "UNSPSC"
                },
                {
                    "taxonomyCode": "24240000",
                    "title": "",
                    "type": "ECLASS"
                }
            ],
            "packageTypeNames": [],
            "title": "Amazon Basics Retractable Gel Ink Pens, Fine Point, Smooth Writing, Black, 12-Pack",
            "url": "https://www.amazon.com/dp/B0756H8HMV?ref_=ab_psdp",
            "format": null,
            "bookInformation": {
                "isbn": {
                    "isbn10": null,
                    "isbn13": null
                },
                "publicationDate": null,
                "publishedLanguage": null
            },
            "byLine": [],
            "mediaInformation": {
                "editions": [],
                "mediaFormats": []
            },
            "productOverview": {
                "Date First Available": "August 31, 2017",
                "Closure": "Retractable",
                "Unit Count": "12.0 Count",
                "Recommended Uses For Product": "Writing",
                "Included Components": "Pocket Clip",
                "Size": "12 Count (Pack of 1)",
                "Age Range Description": "Adult",
                "Writing Instrument Form": "Ballpoint Pen",
                "Global Trade Identification Number": "00192233011028",
                "ASIN": "B0756H8HMV",
                "UPC": "748926476492 192233011028",
                "Material Type": "Rubber",
                "Product Dimensions": "14.8 x 1.6 x 1.2 inches",
                "Is Discontinued By Manufacturer": "No",
                "Point Type": "Fine",
                "Drill Point": "Fine",
                "Ink Color": "Black",
                "Ink Base": "Water",
                "Item Height": "1.2 inches",
                "Manufacturer": "Amazon",
                "Style": "Fine Point",
                "Number of Items": "1",
                "Special Feature": "Retractable",
                "Body Shape": "Round",
                "Model Name": "Amazon Basics Retractable Gel Ink Pens",
                "Item dimensions L x W x H": "14.8 x 1.6 x 1.2 inches",
                "Color": "Black",
                "Item Diameter": "0.7 Millimeters",
                "Item model number": "GP1810-12BK",
                "Manufacturer Part Number": "GP1810-12BK",
                "Hand Orientation": "Ambidextrous",
                "Material": "Rubber",
                "Model Number": "GP1810-12BK",
                "Line Size": "0.7 Millimeters",
                "Grip Type": "Contoured",
                "Brand Name": "Amazon Basics",
                "Brand": "Amazon Basics",
                "Water Resistance Level": "Waterproof",
                "Additional Features": "Retractable",
                "Item Dimensions": "14.8 x 1.6 x 1.2 inches",
                "Age Range (Description)": "Adult",
                "Closure Type": "Retractable",
                "Item Weight": "10.16 g"
            },
            "productDetails": {},
            "productVariations": {
                "dimensions": [
                    {
                        "index": 0,
                        "displayString": "Color",
                        "dimensionValues": [
                            {
                                "index": 0,
                                "displayString": "Black"
                            }
                        ]
                    }
                ],
                "variations": [
                    {
                        "asin": "B0756H8HMV",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 0
                            }
                        ]
                    }
                ]
            },
            "customerReviewsSummary": {
                "numberOfRatings": null,
                "starRating": null
            },
            "productDescription": "This 12-pack of gel ink pens is great for everyday tasks, whether you're at school, the office, or journaling at home. Each pen features a fine point tip of 0.7mm, providing precise and smooth lines with every stroke. The premium quick-dry ink makes your words smear-proof, offering a reliable option for note-taking and creative projects. These fine point black pens are not only practical but also comfortable to use, thanks to the contoured rubber grip that offers control and ease during long writing sessions. With a retractable design, these gel ink pens fine point can be easily operated with a simple click, preventing any unwanted marks or ink stains when not in use. The pack of pens comes with a convenient pocket clip, allowing you to securely attach them to notebooks or pockets, making them a great choice for on-the-go use.",
            "upcValues": [],
            "eanValues": [],
            "modelNumber": null,
            "manufacturerName": null,
            "bundleQuantity": null,
            "badges": [],
            "isBundledAsin": null
        },
        {
            "asin": "B078WJM15Y",
            "asinType": "STANDARD",
            "signedProductId": "amzn1.business.asin.2LXFXFAZYKT2QMRFRGAGI2LRMFZG423ZORUGOZLEG5ZGMY3BONQQRR6DC5JEDWEEJZSEC2HVTKMA4H4YPSP5UFZTS5RJWWOAVY65HE6XM2FF2GLP75EPUB6JVJXEGNAAUC3KW3MZQIYBJA33WEMVVEL3U6VDHCWRHL4NZ6LGPPWC5DFJSM2Q",
            "includedDataTypes": {},
            "features": [
                "VERSATILE USE: Ideal for art projects, corrections, and color-coding notes, this 12-pack includes colorful pens for note taking",
                "SMOOTH WRITING: These marker pens feature a no-fray tip, that provides medium-width points and creates strong lines and detailed work",
                "HIGH PIGMENTATION: With smear-resistant, water-based ink, these multi colored pens offer vibrant color, ideal for both creative and practical needs",
                "DURABLE DESIGN: These colored markers are constructed with sturdy plastic housing and a matching removable cap",
                "CONVENIENT STORAGE: The multicolored pens come with a metal clip for adequate pocket storage",
                "ASTM D4236: Conforms to ASTM D4236"
            ],
            "editorialReviews": [],
            "taxonomies": [
                {
                    "taxonomyCode": "44121700",
                    "title": "Writing instruments",
                    "type": "UNSPSC"
                },
                {
                    "taxonomyCode": "24250401",
                    "title": "",
                    "type": "ECLASS"
                }
            ],
            "packageTypeNames": [],
            "title": "Amazon Basics Felt Tip Marker Pens, Versatile for Writing, Drawing, and Journaling, Assorted Colors, 12-Pack",
            "url": "https://www.amazon.com/dp/B078WJM15Y?ref_=ab_psdp",
            "format": null,
            "bookInformation": {
                "isbn": {
                    "isbn10": null,
                    "isbn13": null
                },
                "publicationDate": null,
                "publishedLanguage": null
            },
            "byLine": [],
            "mediaInformation": {
                "editions": [],
                "mediaFormats": []
            },
            "productOverview": {
                "Date First Available": "December 4, 2018",
                "Unit Count": "12.0 Count",
                "Number of Pieces": "12",
                "Recommended Uses For Product": "Art projects, Corrections, Color-coding notes, To-do lists, Recipe cards, Labeling packages",
                "Size": "12 Count (Pack of 1)",
                "UPC": "192233017495",
                "Global Trade Identification Number": "00192233017495",
                "ASIN": "B078WJM15Y",
                "Material Type": "Plastic",
                "Point Type": "Felt tip",
                "Ink Color": "Assorted colors",
                "Item Height": "0.43 inches",
                "Target Audience": "Adult",
                "Manufacturer": "Amazon",
                "Style": "Marker Pens",
                "Number of Items": "1",
                "Marker Type": "Paint Marker",
                "Pattern": "Solid",
                "Body Shape": "cylindrical",
                "Color": "Assorted Colors",
                "Item model number": "AH2013A-12-ASST",
                "Manufacturer Part Number": "AH2013A-12-ASST",
                "Hand Orientation": "Ambidextrous",
                "Material": "Plastic",
                "Is Waterproof": "false",
                "Surface Recommendation": "Cardboard",
                "Brand": "Amazon Basics",
                "Line Size": "0.5 millimeters",
                "Brand Name": "Amazon Basics",
                "Water Resistance Level": "Not Water Resistant",
                "Theme": "Rainbow",
                "Item Weight": "7.94 g"
            },
            "productDetails": {},
            "productVariations": {
                "dimensions": [
                    {
                        "index": 0,
                        "displayString": "Color",
                        "dimensionValues": [
                            {
                                "index": 0,
                                "displayString": "Assorted Colors"
                            },
                            {
                                "index": 1,
                                "displayString": "Black"
                            }
                        ]
                    },
                    {
                        "index": 1,
                        "displayString": "Size",
                        "dimensionValues": [
                            {
                                "index": 0,
                                "displayString": "12 Count (Pack of 1)"
                            },
                            {
                                "index": 1,
                                "displayString": "24 Count (Pack of 1)"
                            }
                        ]
                    }
                ],
                "variations": [
                    {
                        "asin": "B078WJM15Y",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 0
                            },
                            {
                                "index": 1,
                                "value": 0
                            }
                        ]
                    },
                    {
                        "asin": "B078WJTPV4",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 0
                            },
                            {
                                "index": 1,
                                "value": 1
                            }
                        ]
                    },
                    {
                        "asin": "B0BGSWTHR2",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 1
                            },
                            {
                                "index": 1,
                                "value": 1
                            }
                        ]
                    }
                ]
            },
            "customerReviewsSummary": {
                "numberOfRatings": null,
                "starRating": null
            },
            "productDescription": "These felt tip pens deliver smooth, no-fray performance, making them perfect for journaling, teaching, or everyday writing. The set features high-pigment ink in black, blue, red, and additional vibrant colors to enhance your writing experience. Conforming to ASTM D4236 standards, these pens ensure quality and reliability, offering versatility and performance for anyone who values premium writing tools.",
            "upcValues": [],
            "eanValues": [],
            "modelNumber": null,
            "manufacturerName": null,
            "bundleQuantity": null,
            "badges": [],
            "isBundledAsin": null
        },
        {
            "asin": "B07BDV7QXS",
            "asinType": "STANDARD",
            "signedProductId": "amzn1.business.asin.DVJV7KN6QUHLCLFLBSWWI2LRMFZG423ZORUGOZLEG5ZGMY3BONQ6JXVP6B4ZL2457LBLTQGHD572SK4OGO2GTJWQUG7VQMXHNEGMMX3W6DAERTNEVK5ZBPFYXNPWUDMF2S65J3EYMG34FIFYO3DV2J3V5W7VRYUMJN6WK42IL55AHR273UCA",
            "includedDataTypes": {},
            "features": [
                "SMOOTH WRITING EXPERIENCE: Enjoy consistent ink flow and a 1.2mm point for clear, bold lines with each stroke. These blue ballpoint pens provide smooth writing for all your needs",
                "DURABLE AND RELIABLE: Constructed to meet ASTM D4236 and ISO 12757-1 standards, these pens provide lasting quality and performance for any task",
                "COMFORTABLE GRIP DESIGN: The design provides a comfortable grip for extended writing sessions, making these ink pens for writing ideal for students and professionals",
                "CONVENIENT RETRACTABLE FUNCTION: Easily click to retract the blue ballpoint pens, keeping your pockets and bags clean; great for stress-reducing transport and daily use",
                "12-PACK VALUE SET: Confirm you always have colored pens for note taking on hand with this convenient 12-pack, ideal for work, home, or as part of your back to school supplies"
            ],
            "editorialReviews": [],
            "taxonomies": [
                {
                    "taxonomyCode": "44121704",
                    "title": "Ball point pens",
                    "type": "UNSPSC"
                },
                {
                    "taxonomyCode": "24240503",
                    "title": "",
                    "type": "ECLASS"
                }
            ],
            "packageTypeNames": [],
            "title": "Amazon Basics Retractable Ballpoint Pens, Smooth Writing, Blue, 12-Pack",
            "url": "https://www.amazon.com/dp/B07BDV7QXS?ref_=ab_psdp",
            "format": null,
            "bookInformation": {
                "isbn": {
                    "isbn10": null,
                    "isbn13": null
                },
                "publicationDate": null,
                "publishedLanguage": null
            },
            "byLine": [],
            "mediaInformation": {
                "editions": [],
                "mediaFormats": []
            },
            "productOverview": {
                "Date First Available": "May 31, 2018",
                "Closure": "Retractable",
                "Unit Count": "12.0 Count",
                "Recommended Uses For Product": "Writing",
                "Size": "12 Count (Pack of 1)",
                "Age Range Description": "All Ages",
                "Writing Instrument Form": "Ballpoint Pen",
                "Global Trade Identification Number": "00192233020815",
                "ASIN": "B07BDV7QXS",
                "UPC": "192233020815",
                "Product Dimensions": "5.71 x 0.39 x 0.55 inches",
                "Point Type": "Ballpoint",
                "Drill Point": "Ballpoint",
                "Ink Color": "Blue",
                "Item Height": "0.55 inches",
                "Item Hardness": "H",
                "Manufacturer": "Amazon",
                "Style": "Retractable Ballpoint",
                "Number of Items": "1",
                "Special Feature": "Retractable",
                "Pattern": "Pen",
                "Body Shape": "Round",
                "Item dimensions L x W x H": "5.71 x 0.39 x 0.55 inches",
                "Color": "Blue",
                "Item model number": "AH518-12-BL",
                "Manufacturer Part Number": "AH518-12-BL",
                "Hand Orientation": "Ambidextrous",
                "Hardness": "H",
                "Model Number": "AH518-12-BL",
                "Pencil Lead Degree (Hardness)": "H",
                "Grip Type": "No Grip",
                "Brand Name": "Amazon Basics",
                "Brand": "Amazon Basics",
                "Additional Features": "Retractable",
                "Item Dimensions": "5.71 x 0.39 x 0.55 inches",
                "Age Range (Description)": "All Ages",
                "Closure Type": "Retractable",
                "Item Weight": "0.28 Ounces"
            },
            "productDetails": {},
            "productVariations": {
                "dimensions": [],
                "variations": []
            },
            "customerReviewsSummary": {
                "numberOfRatings": null,
                "starRating": null
            },
            "productDescription": "Amazon Basics Retractable Ballpoint Pen - Blue - 12-Pack",
            "upcValues": [],
            "eanValues": [],
            "modelNumber": null,
            "manufacturerName": null,
            "bundleQuantity": null,
            "badges": [],
            "isBundledAsin": null
        },
        {
            "asin": "B07SNFK6TP",
            "asinType": "STANDARD",
            "signedProductId": "amzn1.business.asin.YEWCDKV7NL6W52FHIOIWI2LRMFZG423ZORUGOZLEG5ZGMY3BONQZP2X2QEREERI6MHLVXRWINCEKO3GFF7B765KBHNZN45YGCNWSDKAHQRBYJOXRG5JQFXVKYEP6MKZROPLS4JNDMQXJJOCMF2AD2F6QRNC5OLYXJLBS3FLNDJNYS3F5JJ7Q",
            "includedDataTypes": {},
            "features": [
                "Fountain pen combines a premium feel with smooth results for a luxurious writing experience",
                "Water/dye-based black ink; comes with 1 ink cartridge and 2 replacements",
                "Black brass-metal barrel provides a comfortable hold and ultimate control; metal clip for attaching to a notebook or pocket",
                "Medium-sized nib for creating bolder lines; pen comes in an elegant black plastic case; great for gift giving",
                "Measures 5.5 by 0.5 by 0.6 inches; backed by an Amazon Basics 1-year limited warranty"
            ],
            "editorialReviews": [],
            "taxonomies": [
                {
                    "taxonomyCode": "44121700",
                    "title": "Writing instruments",
                    "type": "UNSPSC"
                },
                {
                    "taxonomyCode": "24241100",
                    "title": "",
                    "type": "ECLASS"
                }
            ],
            "packageTypeNames": [],
            "title": "Amazon Basics Fountain Pen with two replacement cartridges- Medium Point, Black Ink",
            "url": "https://www.amazon.com/dp/B07SNFK6TP?ref_=ab_psdp",
            "format": null,
            "bookInformation": {
                "isbn": {
                    "isbn10": null,
                    "isbn13": null
                },
                "publicationDate": null,
                "publishedLanguage": null
            },
            "byLine": [],
            "mediaInformation": {
                "editions": [],
                "mediaFormats": []
            },
            "productOverview": {
                "Date First Available": "November 19, 2019",
                "Unit Count": "1.0 Count",
                "Recommended Uses For Product": "Writing",
                "Included Components": "Ink Cartridge",
                "Size": "1 Count (Pack of 1)",
                "Age Range Description": "Adult",
                "Writing Instrument Form": "Fountain Pen",
                "Global Trade Identification Number": "00843558100392",
                "ASIN": "B07SNFK6TP",
                "UPC": "843558100392",
                "Material Type": "Plastic",
                "Product Dimensions": "5.43 x 0.5 x 0.59 inches",
                "Point Type": "Medium",
                "Drill Point": "Medium",
                "Ink Color": "Black",
                "Item Height": "0.59 inches",
                "Manufacturer": "Amazon",
                "Style": "Medium point",
                "Special Feature": "Refillable",
                "Pattern": "Pen",
                "Body Shape": "Round",
                "Item dimensions L x W x H": "5.43 x 0.5 x 0.59 inches",
                "Color": "Black",
                "Item model number": "FC008A-1-M",
                "Manufacturer Part Number": "FC008A-1-M",
                "Hand Orientation": "Ambidextrous",
                "Material": "Plastic",
                "Model Number": "FC008A-1-M",
                "Grip Type": "Ergonomic",
                "Brand Name": "Amazon Basics",
                "Brand": "Amazon Basics",
                "Additional Features": "Refillable",
                "Item Dimensions": "5.43 x 0.5 x 0.59 inches",
                "Age Range (Description)": "Adult",
                "Item Weight": "0.06 Pounds"
            },
            "productDetails": {},
            "productVariations": {
                "dimensions": [
                    {
                        "index": 0,
                        "displayString": "Size",
                        "dimensionValues": [
                            {
                                "index": 0,
                                "displayString": "1 Count (Pack of 1)"
                            }
                        ]
                    },
                    {
                        "index": 1,
                        "displayString": "Style",
                        "dimensionValues": [
                            {
                                "index": 0,
                                "displayString": "Medium point"
                            },
                            {
                                "index": 1,
                                "displayString": "Fine tip"
                            }
                        ]
                    }
                ],
                "variations": [
                    {
                        "asin": "B07SNFK6TP",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 0
                            },
                            {
                                "index": 1,
                                "value": 0
                            }
                        ]
                    },
                    {
                        "asin": "B07SM9CSWT",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 0
                            },
                            {
                                "index": 1,
                                "value": 1
                            }
                        ]
                    }
                ]
            },
            "customerReviewsSummary": {
                "numberOfRatings": null,
                "starRating": null
            },
            "productDescription": "Amazon Basics Refillable Fountain Pen - Medium Point, Black Ink",
            "upcValues": [],
            "eanValues": [],
            "modelNumber": null,
            "manufacturerName": null,
            "bundleQuantity": null,
            "badges": [],
            "isBundledAsin": null
        },
        {
            "asin": "B09PNYZMXD",
            "asinType": "STANDARD",
            "signedProductId": "amzn1.business.asin.WNX2E244IB3RR3324X5WI2LRMFZG423ZORUGOZLEG5ZGMY3BONQZYCK4MCDBYJ5EYDQ35ZFSKYF2YN7GOHV7HJZJ34D2E6NR4NTBX2NJS2WRWLJVTQRIIRFKAGOSEZCLS5LXNCFWOP4W4BS76Z27BU24N2JRFQG5AGDEESRCRJRGXU4O7ORQ",
            "includedDataTypes": {},
            "features": [
                "6-pack of 4-color retractable ballpoint pens for taking notes, homework, office use and more",
                "Medium point for easy writing and clear legibility",
                "Reliable 1.0mm medium point is perfect for everyday use",
                "Incudes 4 interchangable colors: red, green, blue, and black",
                "Ideal for organizing, color-coding, journaling, grading papers and more",
                "Retractable design prevents marking when in your pocket, bag or briefcase"
            ],
            "editorialReviews": [],
            "taxonomies": [
                {
                    "taxonomyCode": "24240503",
                    "title": "",
                    "type": "ECLASS"
                },
                {
                    "taxonomyCode": "44121704",
                    "title": "Ball point pens",
                    "type": "UNSPSC"
                }
            ],
            "packageTypeNames": [],
            "title": "Amazon Basics 4 Color Retractable Ballpoint Pen, Medium Point 1.0 mm, 6 pack, Multicolor",
            "url": "https://www.amazon.com/dp/B09PNYZMXD?ref_=ab_psdp",
            "format": null,
            "bookInformation": {
                "isbn": {
                    "isbn10": null,
                    "isbn13": null
                },
                "publicationDate": null,
                "publishedLanguage": null
            },
            "byLine": [],
            "mediaInformation": {
                "editions": [],
                "mediaFormats": []
            },
            "productOverview": {
                "Date First Available": "September 26, 2022",
                "Closure": "Retractable",
                "Unit Count": "6 Count",
                "Recommended Uses For Product": "Office",
                "Size": "6 Count (Pack of 1)",
                "Age Range Description": "Adult",
                "Writing Instrument Form": "Ballpoint Pen",
                "ASIN": "B09PNYZMXD",
                "UPC": "840095884013",
                "Material Type": "Plastic",
                "Product Dimensions": "5.71 x 0.44 x 0.59 inches",
                "Point Type": "Medium",
                "Drill Point": "Medium",
                "Ink Color": "Multicolor",
                "Item Height": "1.5 centimeters",
                "Manufacturer": "Amazon Basics",
                "Style": "Refillable",
                "Number of Items": "1",
                "Special Feature": "Retractable",
                "Body Shape": "Round",
                "Model Name": "4 Color Retractable Ballpoint Pen",
                "Item dimensions L x W x H": "5.71 x 0.44 x 0.59 inches",
                "Color": "Multicolor",
                "Item model number": "AH147W-6-ASST",
                "Manufacturer Part Number": "AH147W-6-ASST",
                "Hand Orientation": "Ambidextrous",
                "Material": "Plastic",
                "Model Number": "AH147W-6-ASST",
                "Brand Name": "Amazon Basics",
                "Brand": "Amazon Basics",
                "Additional Features": "Retractable",
                "Item Dimensions": "5.71 x 0.44 x 0.59 inches",
                "Age Range (Description)": "Adult",
                "Closure Type": "Retractable",
                "Item Weight": "0.01 Kilograms"
            },
            "productDetails": {},
            "productVariations": {
                "dimensions": [],
                "variations": []
            },
            "customerReviewsSummary": {
                "numberOfRatings": null,
                "starRating": null
            },
            "productDescription": "An Amazon Brand",
            "upcValues": [],
            "eanValues": [],
            "modelNumber": null,
            "manufacturerName": null,
            "bundleQuantity": null,
            "badges": [],
            "isBundledAsin": null
        },
        {
            "asin": "B09PNY32ZD",
            "asinType": "STANDARD",
            "signedProductId": "amzn1.business.asin.LLWAVMU7TWWYIW4W3ZMGI2LRMFZG423ZORUGOZLEG5ZGMY3BONQ5Z5T6O7CWB4N6NMLN277YNDOBPPTDJMO5WYP7GM2BQGLA4KVMO2OMG3VU3YSXORADWTTYO2RGMAC7XNYSOZZTKDWMVWBWEL4WQISLWUTXOURC3OLCHOIVHMRVVTJE2C7Q",
            "includedDataTypes": {},
            "features": [
                "12-pack of retractable ballpoint pens with black ink for taking notes, homework, office use and more",
                "Ultra-smooth ink for easy writing and bold legibility",
                "Reliable 1.0mm medium point is perfect for everyday use",
                "Comfortable grip helps reduce hand fatigue when writing",
                "Retractable design prevents marking when in your pocket, bag or briefcase"
            ],
            "editorialReviews": [],
            "taxonomies": [
                {
                    "taxonomyCode": "44121700",
                    "title": "Writing instruments",
                    "type": "UNSPSC"
                },
                {
                    "taxonomyCode": "24240503",
                    "title": "",
                    "type": "ECLASS"
                }
            ],
            "packageTypeNames": [],
            "title": "Amazon Basics Retractable Ballpoint Pens White Barrel, Medium Point 1.0mm, Black Ink, 12 Pack",
            "url": "https://www.amazon.com/dp/B09PNY32ZD?ref_=ab_psdp",
            "format": null,
            "bookInformation": {
                "isbn": {
                    "isbn10": null,
                    "isbn13": null
                },
                "publicationDate": null,
                "publishedLanguage": null
            },
            "byLine": [],
            "mediaInformation": {
                "editions": [],
                "mediaFormats": []
            },
            "productOverview": {
                "Date First Available": "September 26, 2022",
                "Closure": "Retractable",
                "Unit Count": "12.0 Count",
                "Recommended Uses For Product": "Office",
                "Size": "1 Count (Pack of 12)",
                "Age Range Description": "Adult",
                "Writing Instrument Form": "Ballpoint Pen",
                "ASIN": "B09PNY32ZD",
                "UPC": "840095883993",
                "Material Type": "Plastic, Metal (or hard alloy)",
                "Product Dimensions": "5.78 x 0.43 x 0.59 inches",
                "Point Type": "Medium",
                "Drill Point": "Medium",
                "Ink Color": "Black",
                "Ink Base": "Oil",
                "Item Height": "1.5 centimeters",
                "Manufacturer": "Amazon Basics",
                "Number of Items": "12",
                "Special Feature": "Retractable",
                "Body Shape": "Round",
                "Item dimensions L x W x H": "5.78 x 0.43 x 0.59 inches",
                "Color": "White",
                "Item model number": "AH5855V-12-B",
                "Manufacturer Part Number": "AH5855V-12-B",
                "Hand Orientation": "Ambidextrous",
                "Material": "Plastic, Metal (or hard alloy)",
                "Model Number": "AH5855V-12-B",
                "Line Size": "1_0_1_9mm",
                "Grip Type": "Comfortable",
                "Brand Name": "Amazon Basics",
                "Brand": "Amazon Basics",
                "Additional Features": "Retractable",
                "Item Dimensions": "5.78 x 0.43 x 0.59 inches",
                "Age Range (Description)": "Adult",
                "Closure Type": "Retractable",
                "Item Weight": "0.01 Kilograms"
            },
            "productDetails": {},
            "productVariations": {
                "dimensions": [],
                "variations": []
            },
            "customerReviewsSummary": {
                "numberOfRatings": null,
                "starRating": null
            },
            "productDescription": "An Amazon Brand",
            "upcValues": [],
            "eanValues": [],
            "modelNumber": null,
            "manufacturerName": null,
            "bundleQuantity": null,
            "badges": [],
            "isBundledAsin": null
        },
        {
            "asin": "B0BLVTCZQ6",
            "asinType": "STANDARD",
            "signedProductId": "amzn1.business.asin.VLRHGINRJBCQWVRKJ4IGI2LRMFZG423ZORUGOZLEG5ZGMY3BONQSQOFX35PDXUORBM7NKWMS3YDT36KUL6P6PERTKKYPMB42FVXHBPL65VCVP54VUI2MSOTLITTNTS624WWGVSDL5VKHKQQ2PSGNKT745KPXL7VYG6D3ZUO6I23YCMTRKWDA",
            "includedDataTypes": {},
            "features": [
                "PERFECT FOR ANY SETTING: Dry erase whiteboard markers with fine tips for classroom, home, or office use, providing versatile functionality",
                "BRIGHT AND VIBRANT COLORS: Includes 12 dry erase markers in an assortment of bright, vibrant ink colors to make your presentations and notes stand out",
                "LOW-ODOR INK: Thin dry erase markers with fine tips and low-odor ink that write easily with consistent, skip-free marking and erases cleanly for a professional look",
                "PRECISE WRITING: Ultra fine dry erase markers for creating thin lines and writing with precision, great for detail-oriented tasks and fine writing needs",
                "DURABLE DESIGN: Fine tip dry erase markers designed with no ink leakage; sturdy tip won't split or separate for long-lasting use"
            ],
            "editorialReviews": [],
            "taxonomies": [
                {
                    "taxonomyCode": "44121700",
                    "title": "Writing instruments",
                    "type": "UNSPSC"
                },
                {
                    "taxonomyCode": "24240000",
                    "title": "",
                    "type": "ECLASS"
                }
            ],
            "packageTypeNames": [],
            "title": "Amazon Basics Low Odor Ultra Fine Tip Dry Erase White Board Markers, Assorted Colors, 12-Pack",
            "url": "https://www.amazon.com/dp/B0BLVTCZQ6?ref_=ab_psdp",
            "format": null,
            "bookInformation": {
                "isbn": {
                    "isbn10": null,
                    "isbn13": null
                },
                "publicationDate": null,
                "publishedLanguage": null
            },
            "byLine": [],
            "mediaInformation": {
                "editions": [],
                "mediaFormats": []
            },
            "productOverview": {
                "Date First Available": "May 13, 2024",
                "Unit Count": "12.0 Count",
                "Number of Pieces": "12",
                "Recommended Uses For Product": "White Board",
                "Size": "12 Count (Pack of 1)",
                "UPC": "840324400441",
                "ASIN": "B0BLVTCZQ6",
                "Material Type": "Plastic",
                "Point Type": "Ultra Fine",
                "Ink Color": "Assorted",
                "Item Height": "1.3 centimeters",
                "Target Audience": "Adult",
                "Manufacturer": "Amazon",
                "Style": "Fine",
                "Number of Items": "1",
                "Marker Type": "Whiteboard Marker",
                "Special Feature": "Quick-Drying Ink",
                "Warranty Description": "18 montha",
                "Pattern": "Solid",
                "Body Shape": "cylindrical",
                "Color": "Assorted",
                "Item model number": "BY100200-12Assorted",
                "Manufacturer Part Number": "BY100200-12Assorted",
                "Material": "Plastic",
                "Surface Recommendation": "Whiteboard",
                "Brand": "Amazon Basics",
                "Line Size": "Very Small",
                "Brand Name": "Amazon Basics",
                "Additional Features": "Quick-Drying Ink",
                "Item Weight": "0.01 Kilograms"
            },
            "productDetails": {},
            "productVariations": {
                "dimensions": [
                    {
                        "index": 0,
                        "displayString": "Size",
                        "dimensionValues": [
                            {
                                "index": 0,
                                "displayString": "12 Count (Pack of 1)"
                            }
                        ]
                    },
                    {
                        "index": 1,
                        "displayString": "Color",
                        "dimensionValues": [
                            {
                                "index": 0,
                                "displayString": "Assorted"
                            },
                            {
                                "index": 1,
                                "displayString": "Black"
                            }
                        ]
                    }
                ],
                "variations": [
                    {
                        "asin": "B0BLVTCZQ6",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 0
                            },
                            {
                                "index": 1,
                                "value": 0
                            }
                        ]
                    },
                    {
                        "asin": "B0BLVVGN7H",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 0
                            },
                            {
                                "index": 1,
                                "value": 1
                            }
                        ]
                    }
                ]
            },
            "customerReviewsSummary": {
                "numberOfRatings": null,
                "starRating": null
            },
            "productDescription": "An Amazon Brand",
            "upcValues": [],
            "eanValues": [],
            "modelNumber": null,
            "manufacturerName": null,
            "bundleQuantity": null,
            "badges": [],
            "isBundledAsin": null
        },
        {
            "asin": "B06ZZ2NDZX",
            "asinType": "STANDARD",
            "signedProductId": "amzn1.business.asin.OMQVKWZTV345A4J5JPQGI2LRMFZG423ZORUGOZLEG5ZGMY3BONQWSW7M63V4CV32WMPRNXODK7OVMZNWLWZBVOY353S2QYRLTOJW5XZY4IQWFTOMNMN2TTE6YCMSW72TKCAGBLEQSK7DOHJKRL3DRKDEDKPWQEVKTG4BVH3YXDQ64B2WGDGA",
            "includedDataTypes": {},
            "features": [
                "BOLD MARKS & CLEAN LINES: The fine point permanent marker produces clear lines making it great for writing, doodling, and drawing with precision",
                "VERSATILE USAGE: The black permanent markers are well-suited for photos, plastic, wood, and metal",
                "LONG-LASTING VIVID INK: With quick-drying, waterproof ink that stays permanent, these black markers keep your work vibrant and detailed for a long time",
                "WARNINGS: Keep out of reach of children. Avoid contact with eyes, Rinse eyes immediately if product comes into contact with them. The product should be labelled according to CLP regulation and SDs hazard warnings"
            ],
            "editorialReviews": [],
            "taxonomies": [
                {
                    "taxonomyCode": "44121700",
                    "title": "Writing instruments",
                    "type": "UNSPSC"
                },
                {
                    "taxonomyCode": "24241600",
                    "title": "",
                    "type": "ECLASS"
                }
            ],
            "packageTypeNames": [],
            "title": "Amazon Basics Fine Tip Point Permanent Markers for Office, School, and Home Use, Black, 24 Pack",
            "url": "https://www.amazon.com/dp/B06ZZ2NDZX?ref_=ab_psdp",
            "format": null,
            "bookInformation": {
                "isbn": {
                    "isbn10": null,
                    "isbn13": null
                },
                "publicationDate": null,
                "publishedLanguage": null
            },
            "byLine": [],
            "mediaInformation": {
                "editions": [],
                "mediaFormats": []
            },
            "productOverview": {
                "Date First Available": "December 9, 2017",
                "Unit Count": "24.0 Count",
                "Number of Pieces": "24",
                "Tip Type": "Fine",
                "Recommended Uses For Product": "Drawing,Stone,Wood",
                "Size": "24 Count (Pack of 1)",
                "UPC": "841710187076",
                "Global Trade Identification Number": "00841710187076",
                "ASIN": "B06ZZ2NDZX",
                "Point Type": "Fine",
                "Ink Color": "Black",
                "Ink Base": "Water",
                "Item Height": "0.5 inches",
                "Manufacturer": "Amazon",
                "Style": "Markers",
                "Item Type Name": "PY100200BK",
                "Number of Items": "1",
                "Marker Type": "Permanent Marker",
                "Special Feature": "Waterproof",
                "Pattern": "Solid",
                "Body Shape": "Round",
                "Color": "Black",
                "Item model number": "PY100200BK",
                "Manufacturer Part Number": "PY100200BK",
                "Hand Orientation": "Ambidextrous",
                "Is Waterproof": "true",
                "Surface Recommendation": "Metal,Plastic,Stone,Wood",
                "Brand": "Amazon Basics",
                "Line Size": "0.7mm",
                "Brand Name": "Amazon Basics",
                "Water Resistance Level": "Waterproof",
                "Additional Features": "Waterproof",
                "Item Weight": "0.35 Ounces"
            },
            "productDetails": {},
            "productVariations": {
                "dimensions": [
                    {
                        "index": 0,
                        "displayString": "Color",
                        "dimensionValues": [
                            {
                                "index": 0,
                                "displayString": "Assorted"
                            },
                            {
                                "index": 1,
                                "displayString": "Black"
                            }
                        ]
                    },
                    {
                        "index": 1,
                        "displayString": "Size",
                        "dimensionValues": [
                            {
                                "index": 0,
                                "displayString": "1 Count (Pack of 4)"
                            },
                            {
                                "index": 1,
                                "displayString": "12 Count (Pack of 1)"
                            },
                            {
                                "index": 2,
                                "displayString": "24 Count (Pack of 1)"
                            }
                        ]
                    }
                ],
                "variations": [
                    {
                        "asin": "B01DN8TN8K",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 0
                            },
                            {
                                "index": 1,
                                "value": 1
                            }
                        ]
                    },
                    {
                        "asin": "B06ZZX41Q1",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 0
                            },
                            {
                                "index": 1,
                                "value": 2
                            }
                        ]
                    },
                    {
                        "asin": "B0CRDZ5VWX",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 1
                            },
                            {
                                "index": 1,
                                "value": 0
                            }
                        ]
                    },
                    {
                        "asin": "B01DN8TPG0",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 1
                            },
                            {
                                "index": 1,
                                "value": 1
                            }
                        ]
                    },
                    {
                        "asin": "B06ZZ2NDZX",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 1
                            },
                            {
                                "index": 1,
                                "value": 2
                            }
                        ]
                    }
                ]
            },
            "customerReviewsSummary": {
                "numberOfRatings": null,
                "starRating": null
            },
            "productDescription": "This 24-pack of assorted markers for school features a durable fine point that creates bold marks and clean lines, ideal for writing, doodling, and drawing. These permanent markers are versatile, working seamlessly on almost any surface, including photos, plastic, cellophane, wood, stone, and metal. The markers offer long-lasting and vivid ink that dries quickly and is waterproof, ensuring your creations stay intact. Please remember to keep these markers out of reach of children and avoid contact with eyes. If contact occurs, rinse immediately. This product is labeled in accordance with CLP regulations and SDS hazard warnings. As an Amazon Brand, you can trust in the quality and performance of these fine-point tip permanent markers. ",
            "upcValues": [],
            "eanValues": [],
            "modelNumber": null,
            "manufacturerName": null,
            "bundleQuantity": null,
            "badges": [],
            "isBundledAsin": null
        },
        {
            "asin": "B07S9FD67D",
            "asinType": "STANDARD",
            "signedProductId": "amzn1.business.asin.PDMPPWRKZYBZIXCS7E7GI2LRMFZG423ZORUGOZLEG5ZGMY3BONQYRC53X5N27Z727PJPHPTRHPTADKPVLW2OPQXAQPKRAVUI6DTR646D6NFX3PX2SHLHK5SEW5HGO7M7BIATHQAROLUVQOMKRS2NROR5YYVI4JA6USTTT5LR7CECZHZH22ZA",
            "includedDataTypes": {},
            "features": [
                "Colored chalk set for making unique art, leaving reminder notes and more; comes in a variety of colors for a variety of uses",
                "Suitable for smooth non-porous surfaces, such as blackboards, whiteboards, glass, ceramics, metals, plastics, etc.",
                "Removable, non-smudge water-based ink can be wiped with a damp cloth; chalk has no odor and no dust",
                "Color-coded caps for easy identification; durable tip is suitable for saturated strokes and precise lines",
                "Use of this product by children should be supervised by an adult/may produce allergic by skin contact; wash hands immediately after use; conforms to ASTM D-4236",
                "Note: Please review instruction before use; keep instructions for future possible needs"
            ],
            "editorialReviews": [],
            "taxonomies": [
                {
                    "taxonomyCode": "44121700",
                    "title": "Writing instruments",
                    "type": "UNSPSC"
                }
            ],
            "packageTypeNames": [],
            "title": "Amazon Basics Bullet/Chisel Reversible Tip Chalk Markers, Fine Point, 8-Pack, Bright Colors",
            "url": "https://www.amazon.com/dp/B07S9FD67D?ref_=ab_psdp",
            "format": null,
            "bookInformation": {
                "isbn": {
                    "isbn10": null,
                    "isbn13": null
                },
                "publicationDate": null,
                "publishedLanguage": null
            },
            "byLine": [],
            "mediaInformation": {
                "editions": [],
                "mediaFormats": []
            },
            "productOverview": {
                "Date First Available": "March 9, 2021",
                "Unit Count": "8.0 Count",
                "Number of Pieces": "8",
                "Tip Type": "metal",
                "Recommended Uses For Product": "Ceramics,Glass",
                "Size": "1 Count (Pack of 8)",
                "Global Trade Identification Number": "06937550116223",
                "ASIN": "B07S9FD67D",
                "Material Type": "Metal",
                "Point Type": "Fine",
                "Ink Color": "White",
                "Item Height": "0.71 inches",
                "Target Audience": "Adult",
                "Manufacturer": "Amazon",
                "Style": "Fine Point",
                "Number of Items": "8",
                "Marker Type": "Chalk Marker",
                "Special Feature": "Washable",
                "Pattern": "Solid",
                "Color": "Bright Colors",
                "Item model number": "BV2100",
                "Manufacturer Part Number": "BV2100",
                "Hand Orientation": "Ambidextrous",
                "Material": "Metal",
                "Surface Recommendation": "Glass",
                "Brand": "Amazon Basics",
                "Line Size": "0.5",
                "Brand Name": "Amazon Basics",
                "Water Resistance Level": "Not Water Resistant",
                "Additional Features": "Washable",
                "Item Weight": "4.8 ounces"
            },
            "productDetails": {},
            "productVariations": {
                "dimensions": [
                    {
                        "index": 0,
                        "displayString": "Color",
                        "dimensionValues": [
                            {
                                "index": 0,
                                "displayString": "Bright Colors"
                            }
                        ]
                    },
                    {
                        "index": 1,
                        "displayString": "Style",
                        "dimensionValues": [
                            {
                                "index": 0,
                                "displayString": "Bold Point"
                            },
                            {
                                "index": 1,
                                "displayString": "Fine Point"
                            }
                        ]
                    }
                ],
                "variations": [
                    {
                        "asin": "B07S9G3VGF",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 0
                            },
                            {
                                "index": 1,
                                "value": 0
                            }
                        ]
                    },
                    {
                        "asin": "B07S9FD67D",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 0
                            },
                            {
                                "index": 1,
                                "value": 1
                            }
                        ]
                    }
                ]
            },
            "customerReviewsSummary": {
                "numberOfRatings": null,
                "starRating": null
            },
            "productDescription": "Amazon Basics Bullet/Chisel Reversible Tip Chalk Markers, Bright Colors, Fine Point",
            "upcValues": [],
            "eanValues": [],
            "modelNumber": null,
            "manufacturerName": null,
            "bundleQuantity": null,
            "badges": [],
            "isBundledAsin": null
        },
        {
            "asin": "B00T3ROM9G",
            "asinType": "STANDARD",
            "signedProductId": "amzn1.business.asin.XQYRY4ZADRFSQ2YKPVMGI2LRMFZG423ZORUGOZLEG5ZGMY3BONQ2BK2PLYD46AWJ3YOSZOESPHI37DFPKX7AN42AEMB4Y6DAMH3K3YYKWPRGP2EWM62JNQZT5ZM3EAS34D44TM4MLLFD3G64DIETJ75FRJROBX2J64IFTLAWVSG35TKZ2JPQ",
            "includedDataTypes": {},
            "features": [
                "ASSORTED COLORS: This pack of dry erase markers includes 12 markers in a broad range of colors including black, blue, light blue, purple, red, pink, green, light green, yellow, orange, and brown",
                "LOW ODOR INK: Enjoy a pleasant writing experience with low odor dry erase markers that write, draw, and erase cleanly",
                "CHISEL TIP VERSATILITY: The chisel tip dry erase marker design allows for versatile writing, allowing you to create both thick and thin lines with ease",
                "AMAZON BRAND QUALITY: These white board dry erase markers have the quality and reliability typical of this brand, making them a trusted choice for your writing, drawing, and erasing needs"
            ],
            "editorialReviews": [],
            "taxonomies": [
                {
                    "taxonomyCode": "24241600",
                    "title": "",
                    "type": "ECLASS"
                },
                {
                    "taxonomyCode": "44121708",
                    "title": "Markers",
                    "type": "UNSPSC"
                }
            ],
            "packageTypeNames": [],
            "title": "Amazon Basics Dry Erase Markers For Whiteboards, Chisel Tip, Low-Odor, Assorted Colors, Pack of 12",
            "url": "https://www.amazon.com/dp/B00T3ROM9G?ref_=ab_psdp",
            "format": null,
            "bookInformation": {
                "isbn": {
                    "isbn10": null,
                    "isbn13": null
                },
                "publicationDate": null,
                "publishedLanguage": null
            },
            "byLine": [],
            "mediaInformation": {
                "editions": [],
                "mediaFormats": []
            },
            "productOverview": {
                "Date First Available": "July 11, 2015",
                "Unit Count": "12.0 Count",
                "Number of Pieces": "12",
                "Tip Type": "chisel",
                "Recommended Uses For Product": "writing",
                "Included Components": "Dry Erase Markers",
                "Size": "12 Count (Pack of 1)",
                "UPC": "840324401868 841710153293 841710107937",
                "Global Trade Identification Number": "00841710107937",
                "ASIN": "B00T3ROM9G",
                "Material Type": "Plastic",
                "Product Dimensions": "0.78\"D x 0.78\"W x 0.78\"H",
                "Point Type": "Chisel",
                "Ink Color": "Assorted colors",
                "Ink Base": "Hybrid",
                "Item Height": "0.63 inches",
                "Target Audience": "Adult",
                "Manufacturer": "Amazon",
                "Style": "Chisel Tip",
                "Number of Items": "1",
                "Marker Type": "Whiteboard Marker",
                "Special Feature": "Dry Erase",
                "Pattern": "Markers",
                "Color": "Assorted Colors",
                "Item model number": "37151AZB",
                "Manufacturer Part Number": "37151AZB",
                "Material": "Plastic",
                "Is Waterproof": "false",
                "Surface Recommendation": "Ceramic",
                "Brand": "Amazon Basics",
                "Line Size": "0.7mm",
                "Brand Name": "Amazon Basics",
                "Water Resistance Level": "Not Water Resistant",
                "Item Dimensions D x W x H": "0.78\"D x 0.78\"W x 0.78\"H",
                "Theme": "Rainbow",
                "Additional Features": "Dry Erase",
                "Item Weight": "0.02 Kilograms"
            },
            "productDetails": {},
            "productVariations": {
                "dimensions": [
                    {
                        "index": 0,
                        "displayString": "Size",
                        "dimensionValues": [
                            {
                                "index": 0,
                                "displayString": "3 Count (Pack of 1)"
                            },
                            {
                                "index": 1,
                                "displayString": "4 Count (Pack of 1)"
                            },
                            {
                                "index": 2,
                                "displayString": "12 Count (Pack of 1)"
                            }
                        ]
                    },
                    {
                        "index": 1,
                        "displayString": "Color",
                        "dimensionValues": [
                            {
                                "index": 0,
                                "displayString": "Assorted Colors"
                            },
                            {
                                "index": 1,
                                "displayString": "Black"
                            },
                            {
                                "index": 2,
                                "displayString": "Black, Red, Blue"
                            },
                            {
                                "index": 3,
                                "displayString": "Black, Red, Green, Blue"
                            },
                            {
                                "index": 4,
                                "displayString": "Blue"
                            },
                            {
                                "index": 5,
                                "displayString": "Red"
                            }
                        ]
                    }
                ],
                "variations": [
                    {
                        "asin": "B0CRDZWSWL",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 0
                            },
                            {
                                "index": 1,
                                "value": 2
                            }
                        ]
                    },
                    {
                        "asin": "B0DG892KCY",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 1
                            },
                            {
                                "index": 1,
                                "value": 3
                            }
                        ]
                    },
                    {
                        "asin": "B00T3ROM9G",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 2
                            },
                            {
                                "index": 1,
                                "value": 0
                            }
                        ]
                    },
                    {
                        "asin": "B00T3ROSTU",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 2
                            },
                            {
                                "index": 1,
                                "value": 1
                            }
                        ]
                    },
                    {
                        "asin": "B0CV511TCV",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 2
                            },
                            {
                                "index": 1,
                                "value": 4
                            }
                        ]
                    },
                    {
                        "asin": "B0CV5122GL",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 2
                            },
                            {
                                "index": 1,
                                "value": 5
                            }
                        ]
                    }
                ]
            },
            "customerReviewsSummary": {
                "numberOfRatings": null,
                "starRating": null
            },
            "productDescription": "These dry erase markers offer a versatile addition to your school supplies for teachers, home, or office use. This set includes twelve colored dry erase markers featuring low odor DryGuard ink that writes smoothly, erases cleanly, and remains vibrant.",
            "upcValues": [],
            "eanValues": [],
            "modelNumber": null,
            "manufacturerName": null,
            "bundleQuantity": null,
            "badges": [],
            "isBundledAsin": null
        },
        {
            "asin": "B0CTZTGCXS",
            "asinType": "STANDARD",
            "signedProductId": "amzn1.business.asin.OL2NR7WAZOL4N3BFDSPGI2LRMFZG423ZORUGOZLEG5ZGMY3BONQ7N776SB74KXQSPD4RVTNMN6WBBPORRABDW6WETPQMKVV67FPJU4VK4VCRKWJKOODRW5DWKFXMHOMVRTQLGFDBUDQUDPLJKHWSOANDJLSBA3XJS2TIVTDERQFGX4QU5M4A",
            "includedDataTypes": {},
            "features": [
                "Permanent marker (12-pack) with bold Black ink; ideal for home or office, whether writing, doodling, or drawing",
                "Ultra fine tip for outlining and high precision detail; no skipping or leaking for smooth, clean results",
                "Long lasting, quick drying ink; smear proof and fade resistant",
                "Works on almost any surface, including photos, plastic, wood, stone, and metal",
                "Non-toxic; conforms to ASTM-D4236"
            ],
            "editorialReviews": [],
            "taxonomies": [
                {
                    "taxonomyCode": "44121700",
                    "title": "Writing instruments",
                    "type": "UNSPSC"
                },
                {
                    "taxonomyCode": "24240000",
                    "title": "",
                    "type": "ECLASS"
                }
            ],
            "packageTypeNames": [],
            "title": "Amazon Basics Ultra Fine Point Permanent Markers, Black, 12-Pack",
            "url": "https://www.amazon.com/dp/B0CTZTGCXS?ref_=ab_psdp",
            "format": null,
            "bookInformation": {
                "isbn": {
                    "isbn10": null,
                    "isbn13": null
                },
                "publicationDate": null,
                "publishedLanguage": null
            },
            "byLine": [],
            "mediaInformation": {
                "editions": [],
                "mediaFormats": []
            },
            "productOverview": {
                "Date First Available": "November 28, 2024",
                "Unit Count": "12.0 Count",
                "Number of Pieces": "12",
                "Size": "12 Count (Pack of 1)",
                "UPC": "840324415605",
                "ASIN": "B0CTZTGCXS",
                "Point Type": "Ultra Fine",
                "Department": "consumer_electronics",
                "Ink Color": "Black",
                "Item Height": "0.43 centimeters",
                "Target Audience": "Adult",
                "Manufacturer": "Amazon",
                "Style": "Chisel",
                "Number of Items": "1",
                "Marker Type": "Permanent Marker",
                "Special Feature": "Waterproof",
                "Warranty Description": "1 year limited warranty",
                "Pattern": "Solid",
                "Color": "Black",
                "Item model number": "PY108405-12B",
                "Manufacturer Part Number": "PY108405-12B",
                "Is Waterproof": "true",
                "Surface Recommendation": "Plastic, Wood, Stone, Metal",
                "Brand": "Amazon Basics",
                "Line Size": "0_3mm",
                "Brand Name": "Amazon Basics",
                "Additional Features": "Waterproof",
                "Item Weight": "0.26 Ounces"
            },
            "productDetails": {},
            "productVariations": {
                "dimensions": [],
                "variations": []
            },
            "customerReviewsSummary": {
                "numberOfRatings": null,
                "starRating": null
            },
            "productDescription": "An Amazon Brand",
            "upcValues": [],
            "eanValues": [],
            "modelNumber": null,
            "manufacturerName": null,
            "bundleQuantity": null,
            "badges": [],
            "isBundledAsin": null
        },
        {
            "asin": "B089MTWSHC",
            "asinType": "STANDARD",
            "signedProductId": "amzn1.business.asin.7FQR7DVYS4PD5AFT3N3WI2LRMFZG423ZORUGOZLEG5ZGMY3BONQY7CMUIMHPEYKA5XOZA7ZPH43VE4ZVKENLMZIMIYGDB7UCG2FYOMA3VDE2BCO5JZA3QOBP7D3YOEUPABKG7ZCPGIODXPIMQVDAI5RKFUQR3Q7234QMQJR4YSQLRXFFKLEQ",
            "includedDataTypes": {},
            "features": [
                "VERSATILE USAGE: The black permanent markers mark on paper, plastic, metal, and more",
                "BOLD AND VIBRANT: Enjoy vibrant colors with black felt tip pens that deliver rich pigment, so your notes and art drawing supplies stand out on any page in a striking way",
                "FAST DRYING INK: The quick-drying ink in our black markers is both fade- and water-resistant, providing long-lasting results without smudges",
                "CONVENIENT RETRACTABILITY: These retractable permanent markers feature a retractable tip that keeps the marker's freshness intact and prevents accidental messes",
                "USAGE WARNING: These should be kept away from children. If incidental marks from the permanent markers occur, wash the skin with soap and water for removal."
            ],
            "editorialReviews": [],
            "taxonomies": [
                {
                    "taxonomyCode": "44121708",
                    "title": "Markers",
                    "type": "UNSPSC"
                }
            ],
            "packageTypeNames": [],
            "title": "Amazon Basics Retractable Permanent Markers, Versatile Art Supplies for Home, School, and Office Use, 12 Count, Black",
            "url": "https://www.amazon.com/dp/B089MTWSHC?ref_=ab_psdp",
            "format": null,
            "bookInformation": {
                "isbn": {
                    "isbn10": null,
                    "isbn13": null
                },
                "publicationDate": null,
                "publishedLanguage": null
            },
            "byLine": [],
            "mediaInformation": {
                "editions": [],
                "mediaFormats": []
            },
            "productOverview": {
                "Date First Available": "November 11, 2020",
                "Unit Count": "12.0 Count",
                "Number of Pieces": "12",
                "Recommended Uses For Product": "Metal,Plastic",
                "UPC": "840095852050",
                "ASIN": "B089MTWSHC",
                "Point Type": "Medium",
                "Ink Color": "Black",
                "Item Height": "0.5 inches",
                "Target Audience": "Adult",
                "Manufacturer": "Amazon",
                "Style": "Permanent",
                "Number of Items": "12",
                "Marker Type": "Permanent Marker",
                "Special Feature": "Quick-drying,Retractable",
                "Pattern": "Solid",
                "Body Shape": "Cylindrical",
                "Color": "Black",
                "Item model number": "DS-805S-B 12pack Black",
                "Hand Orientation": "Ambidextrous",
                "Is Waterproof": "true",
                "Surface Recommendation": "Metal,Paper,Plastic",
                "Brand": "Amazon Basics",
                "Line Size": "1.0_1.9mm",
                "Brand Name": "Amazon Basics",
                "Water Resistance Level": "Water Resistant",
                "Additional Features": "Quick-drying,Retractable",
                "Item Weight": "0.01 Kilograms"
            },
            "productDetails": {
                "B089MTWSHC": {
                    "Color": "Black",
                    "Ean ": "0840095852050",
                    "Item Weight": "0.370 ounces",
                    "Model Number": "DS-805S-B 12pack Black",
                    "Number of Items": "12",
                    "Part Number": "DS-805S-B 12pack Black",
                    "Pattern": "Solid",
                    "Point Type": "Medium",
                    "Size": "1 Count (Pack of 12)",
                    "Special Features": "Quick-drying,Retractable",
                    "Style": "Permanent",
                    "Tip Description": "metal",
                    "UPC": "840095852050"
                },
                "B089MXRGJD": {
                    "Brand Name": "Amazon Basics",
                    "Hand Orientation": "Ambidextrous",
                    "Model Number": "DS-805S-B 8pack 8 assorted colors-P",
                    "Part Number": "DS-805S-B 8pack 8 assorted colors-P",
                    "Style": "Chisel",
                    "UNSPSC Code": "44121708"
                }
            },
            "productVariations": {
                "dimensions": [
                    {
                        "index": 0,
                        "displayString": "Size",
                        "dimensionValues": [
                            {
                                "index": 0,
                                "displayString": "1 Count (Pack of 12)"
                            }
                        ]
                    },
                    {
                        "index": 1,
                        "displayString": "Color",
                        "dimensionValues": [
                            {
                                "index": 0,
                                "displayString": "Assorted"
                            },
                            {
                                "index": 1,
                                "displayString": "Black"
                            },
                            {
                                "index": 2,
                                "displayString": "Red"
                            }
                        ]
                    }
                ],
                "variations": [
                    {
                        "asin": "B089MXCMG7",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 0
                            },
                            {
                                "index": 1,
                                "value": 0
                            }
                        ]
                    },
                    {
                        "asin": "B089MTWSHC",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 0
                            },
                            {
                                "index": 1,
                                "value": 1
                            }
                        ]
                    },
                    {
                        "asin": "B089MW6B2N",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 0
                            },
                            {
                                "index": 1,
                                "value": 2
                            }
                        ]
                    }
                ]
            },
            "customerReviewsSummary": {
                "numberOfRatings": null,
                "starRating": null
            },
            "productDescription": "Great for both professional art supplies and adult art supplies collections, these markers offer functionality and versatility. With a rich pigment that stands out, the felt tip pens black edition is a must-have for any artist. Designed for those who value quality, these retractable markers leave a lasting impression on paper, plastic, metal, and a variety of other surfaces. The quick-drying, fade- and water-resistant ink allows your work to remain vibrant over time, making them excellent art pens for various projects. The retractable tip not only keeps ink fresh but also helps prevent accidental markings, keeping your art pens always ready for use. Please note, they are intended for adult use and should be kept out of reach of children. For any incidental marking on skin, wash thoroughly with soap and water.",
            "upcValues": [],
            "eanValues": [],
            "modelNumber": null,
            "manufacturerName": null,
            "bundleQuantity": null,
            "badges": [],
            "isBundledAsin": null
        },
        {
            "asin": "B0CTZRWVQC",
            "asinType": "STANDARD",
            "signedProductId": "amzn1.business.asin.RTP3IHUUHDLF6VZPAKAWI2LRMFZG423ZORUGOZLEG5ZGMY3BONQW7WFTFAGK5HBIXW2I6OTFDRB24BM7HNZBWNUEAPRZ2MSQKJL6KXLQU7LJKH6JX6KZXQE6RNBK5ACMFLYNS6UADR54AEDME6H3DFE7TPDPUWFC5QSXT224ZDO2FRTOU7LA",
            "includedDataTypes": {},
            "features": [
                "Permanent marker (12-pack) with bold Black ink; ideal for home or office",
                "Large chisel tip creates wide marks with no skipping or leaking for smooth, clean results",
                "Long lasting, quick drying ink; smear proof and fade resistant",
                "Works on almost any surface, including paper, plastic, wood, and leather",
                "Non-toxic and acid free; conforms to ASTM-D4236"
            ],
            "editorialReviews": [],
            "taxonomies": [
                {
                    "taxonomyCode": "44121700",
                    "title": "Writing instruments",
                    "type": "UNSPSC"
                },
                {
                    "taxonomyCode": "24240000",
                    "title": "",
                    "type": "ECLASS"
                }
            ],
            "packageTypeNames": [],
            "title": "Amazon Basics Large Chisel Tip Permanent Markers, Black, 12-Pack",
            "url": "https://www.amazon.com/dp/B0CTZRWVQC?ref_=ab_psdp",
            "format": null,
            "bookInformation": {
                "isbn": {
                    "isbn10": null,
                    "isbn13": null
                },
                "publicationDate": null,
                "publishedLanguage": null
            },
            "byLine": [],
            "mediaInformation": {
                "editions": [],
                "mediaFormats": []
            },
            "productOverview": {
                "Date First Available": "November 28, 2024",
                "Unit Count": "12.0 Count",
                "Number of Pieces": "12",
                "Recommended Uses For Product": "Drawing, labelling and marking different surfaces such as paper, plastic, wood and leather",
                "Size": "12 Count (Pack of 1)",
                "UPC": "840324415612",
                "ASIN": "B0CTZRWVQC",
                "Material Type": "Plastic",
                "Point Type": "Chisel",
                "Department": "consumer_electronics",
                "Ink Base": "Alcohol",
                "Item Height": "1 inches",
                "Target Audience": "Adult",
                "Manufacturer": "Amazon",
                "Style": "Chisel",
                "Number of Items": "1",
                "Marker Type": "Permanent Marker",
                "Special Feature": "Waterproof",
                "Warranty Description": "1 year limited warranty",
                "Pattern": "Solid",
                "Body Shape": "wedge shape",
                "Color": "Black",
                "Item model number": "PY282000-12B",
                "Manufacturer Part Number": "PY282000-12B",
                "Material": "Plastic",
                "Is Waterproof": "true",
                "Surface Recommendation": "Paper, Plastic, Wood, Leather",
                "Brand": "Amazon Basics",
                "Line Size": "1_0_1_9mm",
                "Brand Name": "Amazon Basics",
                "Water Resistance Level": "Water Resistant",
                "Additional Features": "Waterproof",
                "Item Weight": "0.83 Pounds"
            },
            "productDetails": {},
            "productVariations": {
                "dimensions": [
                    {
                        "index": 0,
                        "displayString": "Size",
                        "dimensionValues": [
                            {
                                "index": 0,
                                "displayString": "12 Count (Pack of 1)"
                            },
                            {
                                "index": 1,
                                "displayString": "24 Count (Pack of 1)"
                            }
                        ]
                    },
                    {
                        "index": 1,
                        "displayString": "Color",
                        "dimensionValues": [
                            {
                                "index": 0,
                                "displayString": "Assorted"
                            },
                            {
                                "index": 1,
                                "displayString": "Black"
                            }
                        ]
                    }
                ],
                "variations": [
                    {
                        "asin": "B0CTZRWVQC",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 0
                            },
                            {
                                "index": 1,
                                "value": 1
                            }
                        ]
                    },
                    {
                        "asin": "B0CTZV7JC7",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 1
                            },
                            {
                                "index": 1,
                                "value": 0
                            }
                        ]
                    },
                    {
                        "asin": "B0CTZTSV8Y",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 1
                            },
                            {
                                "index": 1,
                                "value": 1
                            }
                        ]
                    }
                ]
            },
            "customerReviewsSummary": {
                "numberOfRatings": null,
                "starRating": null
            },
            "productDescription": "An Amazon Brand",
            "upcValues": [],
            "eanValues": [],
            "modelNumber": null,
            "manufacturerName": null,
            "bundleQuantity": null,
            "badges": [],
            "isBundledAsin": null
        },
        {
            "asin": "B00QSR9URI",
            "asinType": "STANDARD",
            "signedProductId": "amzn1.business.asin.VZ4GOHIDBZE3EAM2U3VWI2LRMFZG423ZORUGOZLEG5ZGMY3BONQ7IYNDJTNTLLEOCU2GVCOE7ZTQ3JRXTRJCRTABRYQQ4PEPZBN4VLJTY77KFS3TL67ZA7HYBMKZRP3A2YPWHNTCGQQRNSPR2A2ZJ2YUIFQL2PV2JQDF6ISHXVIZQ7OMOM4Q",
            "includedDataTypes": {},
            "features": [
                "12-pack of 50-sheet note pads with letter-size 16 pound White paper; ideal for everyday use at home, school, or office",
                "Wide ruled with 11/32 inch line spacing for larger handwriting and easier reading and transcribing",
                "Sturdy chipboard backing for added writing pad support",
                "Perforated top for easy removal of the letter-size sheets from the pad",
                "Left-side margin and title space for organizing notes",
                "Product Dimensions: 8-1/2 x 11-3/4 inches (WxL, including binding)"
            ],
            "editorialReviews": [],
            "taxonomies": [
                {
                    "taxonomyCode": "14111514",
                    "title": "Paper pads or notebooks",
                    "type": "UNSPSC"
                },
                {
                    "taxonomyCode": "24260200",
                    "title": "",
                    "type": "ECLASS"
                }
            ],
            "packageTypeNames": [],
            "title": "Amazon Basics Wide Ruled Lined Writing Note Pads, 8.5 inch x 11.75 inch, White, 12 Count (12 Pack of 50)",
            "url": "https://www.amazon.com/dp/B00QSR9URI?ref_=ab_psdp",
            "format": null,
            "bookInformation": {
                "isbn": {
                    "isbn10": null,
                    "isbn13": null
                },
                "publicationDate": null,
                "publishedLanguage": null
            },
            "byLine": [],
            "mediaInformation": {
                "editions": [],
                "mediaFormats": []
            },
            "productOverview": {},
            "productDetails": {},
            "productVariations": {
                "dimensions": [
                    {
                        "index": 0,
                        "displayString": "Color",
                        "dimensionValues": [
                            {
                                "index": 0,
                                "displayString": "Canary"
                            },
                            {
                                "index": 1,
                                "displayString": "Multicolor"
                            },
                            {
                                "index": 2,
                                "displayString": "White"
                            }
                        ]
                    },
                    {
                        "index": 1,
                        "displayString": "Size",
                        "dimensionValues": [
                            {
                                "index": 0,
                                "displayString": "5-Inch by 8-Inch"
                            },
                            {
                                "index": 1,
                                "displayString": "8.5-Inch by 11.75-Inch"
                            }
                        ]
                    }
                ],
                "variations": [
                    {
                        "asin": "B00QSR9BT0",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 0
                            },
                            {
                                "index": 1,
                                "value": 0
                            }
                        ]
                    },
                    {
                        "asin": "B00QSR9KFU",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 0
                            },
                            {
                                "index": 1,
                                "value": 1
                            }
                        ]
                    },
                    {
                        "asin": "B07TQ8567K",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 1
                            },
                            {
                                "index": 1,
                                "value": 0
                            }
                        ]
                    },
                    {
                        "asin": "B086LW3VDD",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 1
                            },
                            {
                                "index": 1,
                                "value": 1
                            }
                        ]
                    },
                    {
                        "asin": "B00QSR9PRI",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 2
                            },
                            {
                                "index": 1,
                                "value": 0
                            }
                        ]
                    },
                    {
                        "asin": "B00QSR9URI",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 2
                            },
                            {
                                "index": 1,
                                "value": 1
                            }
                        ]
                    }
                ]
            },
            "customerReviewsSummary": {
                "numberOfRatings": null,
                "starRating": null
            },
            "productDescription": "An Amazon Brand.",
            "upcValues": [],
            "eanValues": [],
            "modelNumber": null,
            "manufacturerName": null,
            "bundleQuantity": null,
            "badges": [
                {
                    "fragment": {
                        "title": "#1 Best Seller",
                        "message": null,
                        "link": {
                            "text": "Letter & Legal Ruled Pads",
                            "url": "https://www.amazon.com/gp/bestsellers/office-products/490764011?language=en_US"
                        },
                        "type": "BESTSELLER_BADGE",
                        "fragments": null
                    }
                }
            ],
            "isBundledAsin": null
        },
        {
            "asin": "B07VVB7DSK",
            "asinType": "STANDARD",
            "signedProductId": "amzn1.business.asin.MI5I5PDHJP4OBM2TUTAGI2LRMFZG423ZORUGOZLEG5ZGMY3BONQY3SFL3W7BPVANZ36V25BQXUJTMKYY2FKPTXDNFZESAXKD5ZH7ONXASDXQ65BNTU4N2G6A3W65IUCS3GO4K7SE5M5EFYZ346RJWW6NNDGCTXVJLNP6DJMPYM3LJBECL6WA",
            "includedDataTypes": {},
            "features": [
                "Pencil cup ideal for hold writing utensils and office supplies such as pens, scissor, rulers, brushes, and more",
                "Made of durable steel wire; mesh design offers an industrial look",
                "Powder-coat finish in sleek black for a professional appearance",
                "Black mesh metal construction and cone design reveal special and elegant appearance",
                "Double-rimmed, smooth edges; ideal for office, home, school, and more"
            ],
            "editorialReviews": [],
            "taxonomies": [
                {
                    "taxonomyCode": "44111500",
                    "title": "Organizers and accessories",
                    "type": "UNSPSC"
                },
                {
                    "taxonomyCode": "24291590",
                    "title": "",
                    "type": "ECLASS"
                }
            ],
            "packageTypeNames": [],
            "title": "Amazon Basics Wire Mesh Pen Cup, Black",
            "url": "https://www.amazon.com/dp/B07VVB7DSK?ref_=ab_psdp",
            "format": null,
            "bookInformation": {
                "isbn": {
                    "isbn10": null,
                    "isbn13": null
                },
                "publicationDate": null,
                "publishedLanguage": null
            },
            "byLine": [],
            "mediaInformation": {
                "editions": [],
                "mediaFormats": []
            },
            "productOverview": {
                "Date First Available": "October 16, 2019",
                "Unit Count": "1.0 Count",
                "Size": "1 Count (Pack of 1)",
                "Included Components": "/",
                "Color": "Black",
                "Item model number": "AMZME013",
                "Manufacturer Part Number": "AMZME013",
                "Global Trade Identification Number": "00811540030620",
                "UPC": "811540030620",
                "ASIN": "B07VVB7DSK",
                "Material Type": "Alloy Steel",
                "Material": "Alloy Steel",
                "Finish Types": "Powder Coated",
                "Brand": "Amazon Basics",
                "Brand Name": "Amazon Basics",
                "Capacity": "47.87 Cubic Inches",
                "Ink Color": "Black",
                "Item Height": "3.54 inches",
                "Manufacturer": "Amazon",
                "Item Type Name": "Pen Cup",
                "Finish Type": "Powder Coated",
                "Number of Items": "1",
                "Item Weight": "62 Grams"
            },
            "productDetails": {},
            "productVariations": {
                "dimensions": [
                    {
                        "index": 0,
                        "displayString": "Style",
                        "dimensionValues": [
                            {
                                "index": 0,
                                "displayString": "Desk Organizer"
                            },
                            {
                                "index": 1,
                                "displayString": "Magnetic Storage Bin"
                            },
                            {
                                "index": 2,
                                "displayString": "Pen Holder Organizer"
                            },
                            {
                                "index": 3,
                                "displayString": "Wire Mesh Pen Cup, Black"
                            }
                        ]
                    },
                    {
                        "index": 1,
                        "displayString": "Size",
                        "dimensionValues": [
                            {
                                "index": 0,
                                "displayString": "‎9.1\" x 5.9\" x 5.5"
                            },
                            {
                                "index": 1,
                                "displayString": "9.25\" x 4.53\" x 3.94\""
                            },
                            {
                                "index": 2,
                                "displayString": "1 Count (Pack of 1)"
                            },
                            {
                                "index": 3,
                                "displayString": "14.8 x 6.5 x 5.4 cm"
                            }
                        ]
                    }
                ],
                "variations": [
                    {
                        "asin": "B08VPFB5G3",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 0
                            },
                            {
                                "index": 1,
                                "value": 1
                            }
                        ]
                    },
                    {
                        "asin": "B08VPFB5L8",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 1
                            },
                            {
                                "index": 1,
                                "value": 3
                            }
                        ]
                    },
                    {
                        "asin": "B08VP72ZNS",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 2
                            },
                            {
                                "index": 1,
                                "value": 0
                            }
                        ]
                    },
                    {
                        "asin": "B07VVB7DSK",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 3
                            },
                            {
                                "index": 1,
                                "value": 2
                            }
                        ]
                    }
                ]
            },
            "customerReviewsSummary": {
                "numberOfRatings": null,
                "starRating": null
            },
            "productDescription": "Amazon Basics Wire Mesh Pen Cup, Black",
            "upcValues": [],
            "eanValues": [],
            "modelNumber": null,
            "manufacturerName": null,
            "bundleQuantity": null,
            "badges": [],
            "isBundledAsin": null
        },
        {
            "asin": "B01FV0FBX4",
            "asinType": "STANDARD",
            "signedProductId": "amzn1.business.asin.W7OKM7G7I3RM5P6GSMQWI2LRMFZG423ZORUGOZLEG5ZGMY3BONQRZTWU3LWB25PPKRTMZJCAXDV4WBX4JESONDWIFX5YQ7VH2SY73WTBDQYR7K7EEJNKXO7MRKW42PKSOEDTSUK6NEVC3MJA6TOAYKWZQTW74ZZADBRQCFVBX2RCF6ATIRTA",
            "includedDataTypes": {},
            "features": [
                "PRECISE HIGHLIGHTING: The molded narrow chisel tip of these highlighter markers allow for broad highlighting or fine underlining",
                "COMFORTABLE CONTROL: These highlighters have a pocket-style design with a narrow barrel that produce a comfortable grip",
                "SLEEK PORTABILITY: With a removable cap and built-in clip, these thin highlighters attach easily to pockets or books",
                "VIBRANT COLOR VARIETY: This pack offers vibrant colors, including pink, orange, green, purple, blue, and yellow"
            ],
            "editorialReviews": [],
            "taxonomies": [
                {
                    "taxonomyCode": "44121700",
                    "title": "Writing instruments",
                    "type": "UNSPSC"
                },
                {
                    "taxonomyCode": "24241700",
                    "title": "",
                    "type": "ECLASS"
                }
            ],
            "packageTypeNames": [],
            "title": "Amazon Basics Highlighters, Fluorescent Ink, Chisel Tip, Assorted Colors, School Supplies, 12 Pack",
            "url": "https://www.amazon.com/dp/B01FV0FBX4?ref_=ab_psdp",
            "format": null,
            "bookInformation": {
                "isbn": {
                    "isbn10": null,
                    "isbn13": null
                },
                "publicationDate": null,
                "publishedLanguage": null
            },
            "byLine": [],
            "mediaInformation": {
                "editions": [],
                "mediaFormats": []
            },
            "productOverview": {
                "Date First Available": "October 29, 2016",
                "Unit Count": "12.0 Count",
                "Number of Pieces": "12",
                "Recommended Uses For Product": "Writing",
                "Included Components": "12 Highlighters",
                "Size": "12 Count (Pack of 1)",
                "UPC": "841710143065",
                "Global Trade Identification Number": "00841710143065",
                "ASIN": "B01FV0FBX4",
                "Material Type": "Plastic",
                "Point Type": "Chisel",
                "Ink Color": "Assorted",
                "Ink Base": "Water",
                "Item Height": "0.51 inches",
                "Target Audience": "Adult",
                "Manufacturer": "Amazon Basics",
                "Style": "12 Pack",
                "Number of Items": "1",
                "Marker Type": "Highlighter",
                "Special Feature": "Retractable",
                "Pattern": "Highlighters",
                "Body Shape": "Round",
                "Color": "Assorted",
                "Item model number": "HY100200-12CT",
                "Manufacturer Part Number": "HY100200-12CT",
                "Hand Orientation": "Ambidextrous",
                "Material": "Plastic",
                "Is Waterproof": "False",
                "Surface Recommendation": "Paper",
                "Brand": "Amazon Basics",
                "Line Size": "0_5mm",
                "Brand Name": "Amazon Basics",
                "Water Resistance Level": "Not Water Resistant",
                "Theme": "Study",
                "Additional Features": "Retractable",
                "Item Weight": "1.76 Ounces"
            },
            "productDetails": {},
            "productVariations": {
                "dimensions": [
                    {
                        "index": 0,
                        "displayString": "Style",
                        "dimensionValues": [
                            {
                                "index": 0,
                                "displayString": "12 Pack"
                            },
                            {
                                "index": 1,
                                "displayString": "24 Pack"
                            }
                        ]
                    }
                ],
                "variations": [
                    {
                        "asin": "B01FV0FBX4",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 0
                            }
                        ]
                    },
                    {
                        "asin": "B01FV0FD0U",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 1
                            }
                        ]
                    }
                ]
            },
            "customerReviewsSummary": {
                "numberOfRatings": null,
                "starRating": null
            },
            "productDescription": "Amazon Basics Chisel Tip, Fluorescent Ink Highlighters, Assorted Colors - Pack of 12",
            "upcValues": [],
            "eanValues": [],
            "modelNumber": null,
            "manufacturerName": null,
            "bundleQuantity": null,
            "badges": [],
            "isBundledAsin": null
        },
        {
            "asin": "B071JM699B",
            "asinType": "STANDARD",
            "signedProductId": "amzn1.business.asin.IF7VRD22VN5DGQGYA5YGI2LRMFZG423ZORUGOZLEG5ZGMY3BONQ7MB4ADXQZDLGUYBKPYLURK5U5FEU5RKZY52TM4FJYUXNVYCVJM4ODIOYSHLJ5YMOL7HHB77IQ7UYBYHBQFD4D7JNLP3LCD3FIFGLP34ESXP4FV2OZB3KJHAV3VLAVRMXA",
            "includedDataTypes": {},
            "features": [
                "Wood-cased pencils (30-count) for writing, drawing, or sketching; ideal for home, office, or classroom",
                "#2 HB medium-soft lead for strength, smooth writing, and versatile use",
                "Top eraser for easily removing unwanted marks; smudge-free and latex-free",
                "Product Dimensions: 7.4 x 0.3 x 0.3 inches (LxWxH)"
            ],
            "editorialReviews": [],
            "taxonomies": [
                {
                    "taxonomyCode": "24240101",
                    "title": "Pencil (office)",
                    "type": "ECLASS"
                },
                {
                    "taxonomyCode": "44121705",
                    "title": "Mechanical pencils",
                    "type": "UNSPSC"
                }
            ],
            "packageTypeNames": [],
            "title": "Amazon Basics Woodcased Classroom #2 Pencils with Erasers, Pre-sharpened, HB Lead, Value Pack of 30 count, Orange",
            "url": "https://www.amazon.com/dp/B071JM699B?ref_=ab_psdp",
            "format": null,
            "bookInformation": {
                "isbn": {
                    "isbn10": null,
                    "isbn13": null
                },
                "publicationDate": null,
                "publishedLanguage": null
            },
            "byLine": [],
            "mediaInformation": {
                "editions": [],
                "mediaFormats": []
            },
            "productOverview": {
                "Date First Available": "October 21, 2017",
                "Unit Count": "30.0 Count",
                "Recommended Uses For Product": "Drawing, Writing",
                "Included Components": "Eraser/Lead",
                "Size": "1 Count (Pack of 30)",
                "Age Range Description": "Kid, Teen, Adult",
                "Writing Instrument Form": "Graphite Pencil",
                "Global Trade Identification Number": "00841710187106",
                "ASIN": "B071JM699B",
                "UPC": "841710187106",
                "Material Type": "Wood",
                "Product Dimensions": "7.72 x 1.65 x 1.97 inches",
                "Point Type": "Medium",
                "Drill Point": "Medium",
                "Ink Color": "Gray",
                "Item Height": "5 centimeters",
                "Item Hardness": "HB",
                "Manufacturer": "Amazon Basics",
                "Style": "pre-sharpened",
                "Number of Items": "30",
                "Special Feature": "Pre-Sharpened",
                "Warranty Description": "comply with TUV testing requirements",
                "Pattern": "Pencils",
                "Body Shape": "Round",
                "Item dimensions L x W x H": "7.72 x 1.65 x 1.97 inches",
                "Color": "Orange",
                "Item model number": "PHB-30",
                "Manufacturer Part Number": "PHB-30",
                "Hand Orientation": "Ambidextrous",
                "Material": "Wood",
                "Hardness": "HB",
                "Model Number": "PHB-30",
                "Pencil Lead Degree (Hardness)": "HB",
                "Line Size": "0.5mm or 0.7mm",
                "Grip Type": "No Grip",
                "Brand Name": "Amazon Basics",
                "Brand": "Amazon Basics",
                "Additional Features": "Pre-Sharpened",
                "Item Dimensions": "7.72 x 1.65 x 1.97 inches",
                "Age Range (Description)": "Kid, Teen, Adult",
                "Item Weight": "0.01 Kilograms"
            },
            "productDetails": {},
            "productVariations": {
                "dimensions": [],
                "variations": []
            },
            "customerReviewsSummary": {
                "numberOfRatings": null,
                "starRating": null
            },
            "productDescription": "Amazon Basics Woodcased #2 Pencils, Pre-sharpened, HB Lead, 30 count, Yellow",
            "upcValues": [],
            "eanValues": [],
            "modelNumber": null,
            "manufacturerName": null,
            "bundleQuantity": null,
            "badges": [
                {
                    "fragment": {
                        "title": "#1 Best Seller",
                        "message": null,
                        "link": {
                            "text": "Woodcase Lead Pencils",
                            "url": "https://www.amazon.com/gp/bestsellers/office-products/490674011?language=en_US"
                        },
                        "type": "BESTSELLER_BADGE",
                        "fragments": null
                    }
                }
            ],
            "isBundledAsin": null
        },
        {
            "asin": "B0CRBJGVYK",
            "asinType": "STANDARD",
            "signedProductId": "amzn1.business.asin.YX63GVKBD2LB4FDVZ2HGI2LRMFZG423ZORUGOZLEG5ZGMY3BONQYHYJJWEYP3Z3HCAWVR4XIFFRTOBP4RJ6ECIIWZTAB42T7TAXPPSKBH2EDSE77UQGEMBQWFKV7M3POXLJ3A3433XM4YIPGJXO6LXF7YN3UUNXO2PK2X4TKNQM2ZIHQWKPQ",
            "includedDataTypes": {},
            "features": [
                "VIBRANT COLOR SELECTION: Enjoy a set of 10 coloring markers in a wide range of vibrant colors, enhancing your creative projects with vivid, eye-catching results",
                "EASY IDENTIFICATION: Each washable marker features a color-coded cap, allowing easy identification",
                "CONVENIENTLY WASHABLE: These washable markers for kids and adults feature ink that removes easily with soap and water from skin and clothing",
                "DURABLE FELT TIPS: The durable felt tips of these markers maintain their shape and deliver consistent, long-lasting ink. Well-suited for writing and drawing needs",
                "VERSATILE USES: These art markers are ideal for writing or drawing on paper products",
                "Conforms to ASTM D 4236"
            ],
            "editorialReviews": [],
            "taxonomies": [
                {
                    "taxonomyCode": "44121700",
                    "title": "Writing instruments",
                    "type": "UNSPSC"
                }
            ],
            "packageTypeNames": [],
            "title": "Amazon Basics Colored Markers Pack of 10, Broad Line Washable Markers, Multicolored for Drawing, School",
            "url": "https://www.amazon.com/dp/B0CRBJGVYK?ref_=ab_psdp",
            "format": null,
            "bookInformation": {
                "isbn": {
                    "isbn10": null,
                    "isbn13": null
                },
                "publicationDate": null,
                "publishedLanguage": null
            },
            "byLine": [],
            "mediaInformation": {
                "editions": [],
                "mediaFormats": []
            },
            "productOverview": {
                "Date First Available": "December 10, 2024",
                "Unit Count": "10.0 Count",
                "Number of Pieces": "10",
                "Size": "10 Count",
                "UPC": "840324415452 840324435078",
                "ASIN": "B0CRBJGVYK",
                "Material Type": "Plastic with felt tip",
                "Point Type": "Broad",
                "Department": "b2b",
                "Ink Color": "Blue, Green, Red, Black, Orange, Yellow, Purple, Brown, Pink, Turquoise",
                "Ink Base": "Water",
                "Item Height": "0.59 inches",
                "Target Audience": "Kid, Adult",
                "Manufacturer": "Amazon",
                "Style": "Broad Line",
                "Item Type Name": "Amazon Basics Broad Line 10 Colors Washable Markers, Multicolored 1 pack",
                "Number of Items": "1",
                "Marker Type": "Whiteboard Marker",
                "Warranty Description": "1 year limited warranty",
                "Pattern": "Solid",
                "Color": "Multicolored",
                "Item model number": "WM-003A",
                "Manufacturer Part Number": "WM-003B",
                "Material": "Plastic with felt tip",
                "Surface Recommendation": "Fabric",
                "Brand": "Amazon Basics",
                "Line Size": "Broad Line",
                "Brand Name": "Amazon Basics",
                "Item Weight": "0.01 Kilograms"
            },
            "productDetails": {},
            "productVariations": {
                "dimensions": [
                    {
                        "index": 0,
                        "displayString": "Size",
                        "dimensionValues": [
                            {
                                "index": 0,
                                "displayString": "10 Count"
                            },
                            {
                                "index": 1,
                                "displayString": "40 Count"
                            },
                            {
                                "index": 2,
                                "displayString": "150 Count"
                            }
                        ]
                    },
                    {
                        "index": 1,
                        "displayString": "Style",
                        "dimensionValues": [
                            {
                                "index": 0,
                                "displayString": "Broad Line"
                            },
                            {
                                "index": 1,
                                "displayString": "Super tip"
                            }
                        ]
                    }
                ],
                "variations": [
                    {
                        "asin": "B0CRBJGVYK",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 0
                            },
                            {
                                "index": 1,
                                "value": 0
                            }
                        ]
                    },
                    {
                        "asin": "B07VXTRGYJ",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 1
                            },
                            {
                                "index": 1,
                                "value": 0
                            }
                        ]
                    },
                    {
                        "asin": "B07VXTRSK6",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 1
                            },
                            {
                                "index": 1,
                                "value": 1
                            }
                        ]
                    },
                    {
                        "asin": "B07W342QJD",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 2
                            },
                            {
                                "index": 1,
                                "value": 0
                            }
                        ]
                    }
                ]
            },
            "customerReviewsSummary": {
                "numberOfRatings": null,
                "starRating": null
            },
            "productDescription": "Discover the joys of creativity with the Amazon Basics Broad Line 10 Colors Washable Markers, designed to inspire budding artists of all ages. Featuring a pack of 1 vivid colored marker for school and home projects, this box of markers is an excellent addition to any art kit. The color-coded caps make it easy to select your desired shade, while the markers contain water-based ink. These durable art markers boast felt tips that maintain their shape, providing long-lasting performance for coloring and drawing. Well-suited for writing or creating beautiful artwork on paper, these colored markers for kids and adults offer endless drawing possibilities.",
            "upcValues": [],
            "eanValues": [],
            "modelNumber": null,
            "manufacturerName": null,
            "bundleQuantity": null,
            "badges": [],
            "isBundledAsin": null
        },
        {
            "asin": "B07RY2ZPK6",
            "asinType": "STANDARD",
            "signedProductId": "amzn1.business.asin.P7I5BSFL6SRLPNQLGEUWI2LRMFZG423ZORUGOZLEG5ZGMY3BONQSH3MES2ILLBD6CRBGBXYZV5CSRPDVXCIINY46OKB4FQVQORVBHDCCKDWVYBQZGTG462QS6TVBVWE3BVKZUDAV35FUFPMUDPPJ7VM5SFPFDPODLZLU2SRHCSW6OOV6GVJQ",
            "includedDataTypes": {},
            "features": [
                "Pen cup with divider helps keep pens, markers, and more standing up, neatly arranged, and within easy reach",
                "Made of durable hard plastic for long-lasting reliable strength; available in black or white (each sold separately)",
                "Coordinates with other desk accessories in the Amazon Basics Plastic Organizer collection",
                "For use inside a drawer or cabinet or on a desk or shelf",
                "Measures 3.3 by 3.3 by 3.9 inches; backed by an Amazon Basics 1-year limited warranty"
            ],
            "editorialReviews": [],
            "taxonomies": [
                {
                    "taxonomyCode": "44111500",
                    "title": "Organizers and accessories",
                    "type": "UNSPSC"
                },
                {
                    "taxonomyCode": "24220107",
                    "title": "",
                    "type": "ECLASS"
                }
            ],
            "packageTypeNames": [],
            "title": "Amazon Basics Plastic Desk Organizer - Pen Cup Holds Pens/Pencils, White",
            "url": "https://www.amazon.com/dp/B07RY2ZPK6?ref_=ab_psdp",
            "format": null,
            "bookInformation": {
                "isbn": {
                    "isbn10": null,
                    "isbn13": null
                },
                "publicationDate": null,
                "publishedLanguage": null
            },
            "byLine": [],
            "mediaInformation": {
                "editions": [],
                "mediaFormats": []
            },
            "productOverview": {
                "Date First Available": "September 25, 2019",
                "Number of Compartments": "2",
                "Unit Count": "1.0 Count",
                "Part Number": "DH04261913W",
                "Specific Uses For Product": "Stationery",
                "UPC": "810003120182",
                "Global Trade Identification Number": "00810003120182",
                "ASIN": "B07RY2ZPK6",
                "Material Type": "Plastic",
                "Product Dimensions": "3.33\"D x 3.33\"W x 3.85\"H",
                "Special Features": "Durable",
                "Finish Types": "Polished",
                "Item Package Quantity": "1",
                "Batteries Required?": "No",
                "Item Height": "3.9 inches",
                "Manufacturer": "Amazon",
                "Style": "Pen Cup",
                "Finish Type": "Polished",
                "Number of Items": "1",
                "Finish": "Polished",
                "\tManufacturer\t": "Amazon",
                "Special Feature": "Durable",
                "Usage": "Stationery",
                "Color": "White",
                "Item model number": "DH04261913W",
                "Material": "Plastic",
                "Mounting Type": "Tabletop Mount",
                "Brand": "Amazon Basics",
                "Brand Name": "Amazon Basics",
                "Item Dimensions D x W x H": "3.33\"D x 3.33\"W x 3.85\"H",
                "Additional Features": "Durable",
                "Item Weight": "0.26 Pounds"
            },
            "productDetails": {},
            "productVariations": {
                "dimensions": [
                    {
                        "index": 0,
                        "displayString": "Number of Items",
                        "dimensionValues": [
                            {
                                "index": 0,
                                "displayString": "1"
                            }
                        ]
                    }
                ],
                "variations": [
                    {
                        "asin": "B07RY2ZPK6",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 0
                            }
                        ]
                    }
                ]
            },
            "customerReviewsSummary": {
                "numberOfRatings": null,
                "starRating": null
            },
            "productDescription": "Amazon Basics Plastic Desk Organizer - Pen Cup, White",
            "upcValues": [],
            "eanValues": [],
            "modelNumber": null,
            "manufacturerName": null,
            "bundleQuantity": 1,
            "badges": [],
            "isBundledAsin": null
        },
        {
            "asin": "B06X15WSLL",
            "asinType": "STANDARD",
            "signedProductId": "amzn1.business.asin.M6XONEFZBMFAPJG32PXWI2LRMFZG423ZORUGOZLEG5ZGMY3BONQS63RIONPUAQKIOYVM3FYFWH4L2WLJNHVDK3SJL6R4NGIHKKKQ65SPL5U343ZJQZX7VYBONO5S3N3HJKLIFQ2VMJJOGPWYCTJUKFRUZOGRXS5RSORHKYDDAT472YDGFPEA",
            "includedDataTypes": {},
            "features": [
                "300-Pack of #6 envelopes with Peel & Seal closure―no moisture needed",
                "Ideal for home or office; securely send checks, invoices, or other confidential documents",
                "Interior security tint keeps content private",
                "24-pound white woven paper for quality and strength",
                "Measures 3-5/8 by 6-1/2 inches each"
            ],
            "editorialReviews": [],
            "taxonomies": [
                {
                    "taxonomyCode": "44121500",
                    "title": "Mailing supplies",
                    "type": "UNSPSC"
                }
            ],
            "packageTypeNames": [],
            "title": "Amazon Basics Quality #6 3/4 Security-Tinted Envelopes with Peel and Seal, 300-Pack, White",
            "url": "https://www.amazon.com/dp/B06X15WSLL?ref_=ab_psdp",
            "format": null,
            "bookInformation": {
                "isbn": {
                    "isbn10": null,
                    "isbn13": null
                },
                "publicationDate": null,
                "publishedLanguage": null
            },
            "byLine": [],
            "mediaInformation": {
                "editions": [],
                "mediaFormats": []
            },
            "productOverview": {
                "Occasion Type": "Office,Home",
                "Date First Available": "July 31, 2017",
                "Shape": "Rectangular",
                "Unit Count": "300.0 Count",
                "Occasion": "Mailing",
                "Recommended Uses For Product": "Security",
                "Size": "300-Pack",
                "Color": "White",
                "Item model number": "AMZP1",
                "Manufacturer Part Number": "AMZP1",
                "Global Trade Identification Number": "00841710160642",
                "UPC": "841710160642",
                "ASIN": "B06X15WSLL",
                "Material Type": "Paper",
                "Material": "Paper",
                "Product Dimensions": "6.5\"L x 3.63\"W",
                "Brand": "Amazon Basics",
                "Brand Name": "Amazon Basics",
                "Item Dimensions L x W": "6.5\"L x 3.63\"W",
                "Item Height": "0.1 inches",
                "Manufacturer": "Amazon",
                "Style": "#6 3/4",
                "Item Shape": "Rectangular",
                "Number of Items": "300",
                "Item Weight": "0.624 ounces"
            },
            "productDetails": {},
            "productVariations": {
                "dimensions": [
                    {
                        "index": 0,
                        "displayString": "Color",
                        "dimensionValues": [
                            {
                                "index": 0,
                                "displayString": "White"
                            }
                        ]
                    },
                    {
                        "index": 1,
                        "displayString": "Size",
                        "dimensionValues": [
                            {
                                "index": 0,
                                "displayString": "100-Pack"
                            },
                            {
                                "index": 1,
                                "displayString": "300-Pack"
                            }
                        ]
                    }
                ],
                "variations": [
                    {
                        "asin": "B06X6B39G3",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 0
                            },
                            {
                                "index": 1,
                                "value": 0
                            }
                        ]
                    },
                    {
                        "asin": "B06X15WSLL",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 0
                            },
                            {
                                "index": 1,
                                "value": 1
                            }
                        ]
                    }
                ]
            },
            "customerReviewsSummary": {
                "numberOfRatings": null,
                "starRating": null
            },
            "productDescription": "Amazon Basics #6 3/4 Security-Tinted Envelopes with Peel & Seal, 300-Pack",
            "upcValues": [],
            "eanValues": [],
            "modelNumber": null,
            "manufacturerName": null,
            "bundleQuantity": null,
            "badges": [],
            "isBundledAsin": null
        },
        {
            "asin": "B09QC6F5YQ",
            "asinType": "STANDARD",
            "signedProductId": "amzn1.business.asin.3PP7VZE2NM57UO2AHO4WI2LRMFZG423ZORUGOZLEG5ZGMY3BONQY5X2RDFDYVANXZ72V73BDB3TZAZDGXMB7BFQZDMLKAWA7BFCLKHYHZRJ24QD27OZYWMIRE2CVS26GOCHQTJJBSXXIWEMNUSX3ULP6E2PMHR4ZCFPIFLNI2CGRRWWC4O3A",
            "includedDataTypes": {},
            "features": [
                "Product 1: Set of 24 felt tip marker pens in a variety of colors",
                "Product 1: High pigment, smear-resistant, water-based ink",
                "Product 1: Great for art projects, corrections or color coding notes",
                "Product 1: Featuring a no-fray felt tip in medium width for detailing and fills",
                "Product 2: Set of 12 felt tip marker pens in a variety of colors",
                "Product 2: High pigment, smear-resistant, water-based ink",
                "Product 2: Great for art projects, corrections or color coding notes",
                "Product 2: Featuring a no-fray felt tip in medium width for detailing and fills"
            ],
            "editorialReviews": [],
            "taxonomies": [
                {
                    "taxonomyCode": "44121700",
                    "title": "Writing instruments",
                    "type": "UNSPSC"
                }
            ],
            "packageTypeNames": [],
            "title": "Amazon Basics Felt Tip Marker Pens - Assorted Color, 24-Pack & Felt Tip Marker Pens - Assorted Color, 12-Pack",
            "url": "https://www.amazon.com/dp/B09QC6F5YQ?ref_=ab_psdp",
            "format": null,
            "bookInformation": {
                "isbn": {
                    "isbn10": null,
                    "isbn13": null
                },
                "publicationDate": null,
                "publishedLanguage": null
            },
            "byLine": [],
            "mediaInformation": {
                "editions": [],
                "mediaFormats": []
            },
            "productOverview": {
                "Pattern": "Solid",
                "Date First Available": "March 12, 2022",
                "Number of Pieces": "12, 24",
                "Recommended Uses For Product": "Color,Color Coding",
                "Size": "24-Pack",
                "Color": "Assorted",
                "Hand Orientation": "Ambidextrous",
                "ASIN": "B09QC6F5YQ",
                "Is Waterproof": "False",
                "Point Type": "Medium",
                "Brand": "Amazon Basics",
                "Line Size": "1",
                "Brand Name": "Amazon Basics",
                "Ink Color": "Assorted",
                "Ink Base": "Water",
                "Water Resistance Level": "Not Water Resistant",
                "Target Audience": "Adult",
                "Style": "Marker Pens + Pens, 12-Pack",
                "Number of Items": "36"
            },
            "productDetails": {},
            "productVariations": {
                "dimensions": [],
                "variations": []
            },
            "customerReviewsSummary": {
                "numberOfRatings": null,
                "starRating": null
            },
            "productDescription": "Amazon Basics Felt Tip Marker Pens - Assorted Color, 24-Pack\nAmazon Basics\nAmazon Basics Felt Tip Marker Pens - Assorted Color, 24-Pack\n\nAmazon Basics Felt Tip Marker Pens - Assorted Color, 12-Pack\nAmazon Basics\nAmazon Basics Felt Tip Marker Pens - Assorted Color, 12-Pack",
            "upcValues": [],
            "eanValues": [],
            "modelNumber": null,
            "manufacturerName": null,
            "bundleQuantity": null,
            "badges": [],
            "isBundledAsin": null
        },
        {
            "asin": "B07K921KK7",
            "asinType": "STANDARD",
            "signedProductId": "amzn1.business.asin.SKYWBA5DYIBUBAMVWZGGI2LRMFZG423ZORUGOZLEG5ZGMY3BONQXRFS4QEK6WB6XS3ZDNQXDRMADITVW3NPU2ZMRSFPCODRQRK6WPNFVNVWD4WKDSCPUZWES2JZ3GNUKG56UGWORR6353KSK6P37G5F5HYWGUK3CMKZHAMDZABFBHMVDHUYQ",
            "includedDataTypes": {},
            "features": [
                "Pencil box (4-pack) for neatly storing pens, pencils, small note pads, and more",
                "Made of durable PP plastic for long-lasting performance",
                "Assortment of stylish colors, including transparent pink, yellow, blue, and purple",
                "Secure closure helps keep stored items neatly contained",
                "Measures 8.4 by 5.5 by 2.4 inches; backed by an Amazon Basics 1-year limited warranty"
            ],
            "editorialReviews": [],
            "taxonomies": [
                {
                    "taxonomyCode": "44111509",
                    "title": "Pen or pencil holders",
                    "type": "UNSPSC"
                },
                {
                    "taxonomyCode": "24220107",
                    "title": "",
                    "type": "ECLASS"
                }
            ],
            "packageTypeNames": [],
            "title": "Amazon Basics Plastic Pencil Box, Pack of 4, Multi, Solid",
            "url": "https://www.amazon.com/dp/B07K921KK7?ref_=ab_psdp",
            "format": null,
            "bookInformation": {
                "isbn": {
                    "isbn10": null,
                    "isbn13": null
                },
                "publicationDate": null,
                "publishedLanguage": null
            },
            "byLine": [],
            "mediaInformation": {
                "editions": [],
                "mediaFormats": []
            },
            "productOverview": {
                "Date First Available": "May 29, 2019",
                "Number of Compartments": "1",
                "Shape": "Rectangular",
                "Unit Count": "4.0 Count",
                "Closure": "Snap",
                "Inside Pockets": "No Pockets",
                "Recommended Uses For Product": "For pens and pencils",
                "Size": "4-Pack",
                "Opening Mechanism": "Snap",
                "UPC": "192233052991",
                "Global Trade Identification Number": "00192233052991",
                "ASIN": "B07K921KK7",
                "Material Type": "Polypropylene",
                "Product Dimensions": "8.4\"L x 5.5\"W x 2.4\"H",
                "Item Dimensions L x W x H": "8.4\"L x 5.5\"W x 2.4\"H",
                "Item Package Quantity": "1",
                "Capacity": "81.36 Cubic Inches",
                "Item Height": "2.3 inches",
                "Manufacturer": "Amazon",
                "Style": "pencil box",
                "Number of Items": "1",
                "Special Feature": "Durable",
                "Pattern": "Solid",
                "Color": "Multi",
                "Item model number": "DHBTB019",
                "Manufacturer Part Number": "DHBTB019",
                "Material": "Polypropylene",
                "Storage Volume": "81.62 Cubic Inches",
                "Brand": "Amazon Basics",
                "Brand Name": "Amazon Basics",
                "Water Resistance Level": "Not Water Resistant",
                "Caster/Glide/Wheel Type": "No wheels",
                "Style Name": "pencil box",
                "Additional Features": "Durable",
                "Package Quantity": "1",
                "Closure Type": "Snap",
                "Item Weight": "3.2 ounces"
            },
            "productDetails": {},
            "productVariations": {
                "dimensions": [
                    {
                        "index": 0,
                        "displayString": "Color",
                        "dimensionValues": [
                            {
                                "index": 0,
                                "displayString": "Multi"
                            }
                        ]
                    },
                    {
                        "index": 1,
                        "displayString": "Size",
                        "dimensionValues": [
                            {
                                "index": 0,
                                "displayString": "4-Pack"
                            }
                        ]
                    }
                ],
                "variations": [
                    {
                        "asin": "B07K921KK7",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 0
                            },
                            {
                                "index": 1,
                                "value": 0
                            }
                        ]
                    }
                ]
            },
            "customerReviewsSummary": {
                "numberOfRatings": null,
                "starRating": null
            },
            "productDescription": "Amazon Basics Pencil Box - Pack of 4, Multi-Color",
            "upcValues": [],
            "eanValues": [],
            "modelNumber": null,
            "manufacturerName": null,
            "bundleQuantity": null,
            "badges": [],
            "isBundledAsin": null
        }
    ]
}

If you want to continue refining results, review the search refinements returned in this response to see if there are any additional refinements you’d like to include to further narrow your search. The API will continue returning dynamic refinements that are specific to each request.

Error handling

If your request is not successful, the API returns an errors object that provides information about what went wrong. For more information, see Error responses and schemas.