Amazon Product Search API
A GET request to our endpoint /api/getter/?platform="amazon_search"
will allow you to scrape search results from Amazon's search engine in real-time.
Example
To scrape Amazon's search results for the keyword "pillow", you can use the following command:
1 |
|
Query Parameters
As you can see in the example above, our endpoint needs the following query parameters:
Search Query
search
Required
Parameter defines the search query you want to search. You can use anything a user may use in a regular Amazon search.
page
Optional
The page number for which you want the results. Default value is 1.
Advanced Amazon Parameters
country_code
Optional
Specifies the country you wish to search Amazon in. Default value is us. Here is a list of supported countries.
Other Required Parameters
platform
Required
Specifies the scraping engine you wish to invoke. In this case, the value should be amazon_search.
api_key
Required
Your account's token—which can be obtained by signing up here.
Note
Be sure to replace any whitespace in the search keywords with a plus + sign. So, if you're looking to scrape search results for the keyword "ssd 1tb", please set the value of the query parameter search
to "ssd+1tb".
Results
Each request returns up to 60 results. The response will include the following attirbutes for each product in the search results:
Attributes Returned | Data Type | Information Represented |
---|---|---|
asin | string | Amazon Standard Identification Number (ASIN) |
is_sponsored | boolean | Whether product is ad or not |
brand | string | Brand of the product |
name | string | Name of product listing |
url | string | URL of product listing |
thumbnail | string | URL of product's thumbnail |
rating | float | Average rating of product |
total_ratings | int | No. of ratings received |
price | string | Price of product |
list_price | string | List price of product |
price_per_unit | float | Price per unit of product |
currency | string | Currency of product |
currency_symbol | string | Currency symbol of product |
offer_info | string | Offer information for the product |
is_prime | boolean | Whether product is eligible for Prime |
shipping_info | array | Shipping information |
retailer_badge | string | Retailer badge information |
seller_info | string | Information about the seller |
more_buying_choices | object | Additional buying options |
past_month_bought | string | Estimated sales in the past month as declared by Amazon |
Response Example
Here's the response you can expect to receive for the request showcased above:
{
"success": true,
"category_url": "https://www.amazon.com/s?k=toothpaste",
"page": 1,
"total_results": 4000,
"no_of_pages": 7,
"result_count": 48,
"results": [
{
"asin": "B09F8FZ18G",
"is_sponsored": false,
"brand": null,
"name": "Crest 3D White Advanced Luminous Mint Teeth Whitening Toothpaste, Crest Toothpaste, 3.7 oz Pack of 4 - Helps Remove Surface Stains, Whitens Teeth, Strengthens Tooth Enamel, Protects Against Cavities ",
"url": "https://www.amazon.com/Crest-White-Luminous-Whitening-Toothpaste/dp/B09F8FZ18G",
"thumbnail": "https://m.media-amazon.com/images/I/618IhmL94uL._AC_UL320_.jpg",
"rating": 4.8,
"total_ratings": 93548,
"price": 14.99,
"list_price": null,
"price_per_unit": 1.01,
"typical_price": null,
"currency": "USD",
"currency_symbol": "$",
"offer_info": "Save more with Subscribe & Save$3.00 off coupon appliedSave $3.00with coupon",
"is_prime": false,
"shipping_info": [
"FREE deliverySun, Oct 27on $35 of items shipped by Amazon",
"Or fastest deliveryFri, Oct 25",
"Luminous Mint3.7 Ounce (Pack of 4)"
],
"retailer_badge": "Overall Pick",
"seller_info": "Sold by Amazon",
"more_buying_choices": {
"heading": "More Buying Choices",
"offer_text": "$14.98(9 new offers)",
"offer_link": "https://www.amazon.com/gp/offer-listing/B09F8FZ18G/ref=sr_1_1_olp?keywords=toothpaste&crid=GXTNV125E657&sprefix=to%2Caps%2C292&dib_tag=se&dib=eyJ2IjoiMSJ9.5utI6RBikmkgyhO5cuGnQ8OMCPpHSM14PUpiapdtbYGyGF6Jm_bRmiLNDKHDj0L3A4lsP4AlFs2YiHdg3Rj8b1MN4NR0WI9UpWZVpP1h-ytvOCPLp_m1aljJTixVMeTxLFE0dJ74m9zJTEFXbxksRtQ4A_VZVzJjGntwN1e6U8iMCW7X6pyZYGoGx_GqBHW-WQpCZFx_lQ_JiwWAqQB6Nsphfjun2gr8Ti_GLR8O47EikEHGUvoR-E_oARQVMmAkTPdoMjFOYAWtNOxyR7zSPGIxmFBj52-BPjltD6MHjXg.gF74roZXIl7uWBzgps-I_lkO7Ixc6YEWKnwwmHAFCKM&qid=1729619711&sr=8-1"
},
"past_month_bought": "100K+"
},
{
"asin": "B005PLQIQ4",
"is_sponsored": false,
"brand": null,
"name": "Crest + Scope Whitening Toothpaste - Pack of 3, 5.4 Oz Tubes - Anticavity Fluoride Toothpaste, Fresh Breath, Kills Germs - Tartar Protection, Enamel Protection - Minty Fresh Flavor ",
"url": "https://www.amazon.com/Crest-Complete-Whitening-Toothpaste-Triple/dp/B005PLQIQ4",
"thumbnail": "https://m.media-amazon.com/images/I/71Md-W5PL9L._AC_UL320_.jpg",
"rating": 4.8,
"total_ratings": 44195,
"price": 8.99,
"list_price": 9.99,
"price_per_unit": 0.55,
"typical_price": null,
"currency": "USD",
"currency_symbol": "$",
"offer_info": "Save more with Subscribe & Save",
"is_prime": false,
"shipping_info": [
"FREE deliverySun, Oct 27on $35 of items shipped by Amazon",
"Or fastest deliveryFri, Oct 25",
"Mint5.4 Ounce (Pack of 3)"
],
"retailer_badge": null,
"seller_info": "Sold by Amazon",
"more_buying_choices": null,
"past_month_bought": "60K+"
},
{
"asin": "B01BNHREXE",
"is_sponsored": false,
"brand": null,
"name": "Colgate Baking Soda & Peroxide Toothpaste - Whitens Teeth, Fights Cavities & Removes Stains, Brisk Mint, 6 Ounce (Pack of 2) ",
"url": "https://www.amazon.com/Colgate-Baking-Peroxide-Whitening-Toothpaste/dp/B01BNHREXE",
"thumbnail": "https://m.media-amazon.com/images/I/71vjF6hh1AL._AC_UL320_.jpg",
"rating": 4.7,
"total_ratings": 76141,
"price": 3.78,
"list_price": 3.99,
"price_per_unit": 0.32,
"typical_price": null,
"currency": "USD",
"currency_symbol": "$",
"offer_info": "Save more with Subscribe & Save",
"is_prime": false,
"shipping_info": [
"FREE deliverySun, Oct 27on $35 of items shipped by Amazon",
"Or fastest deliveryFri, Oct 25",
"Mint6 Ounce (Pack of 2)"
],
"retailer_badge": "Popular Brand Pick",
"seller_info": "Sold by Amazon",
"more_buying_choices": null,
"past_month_bought": "50K+"
},
{
"asin": "B082F1QH7S",
"is_sponsored": false,
"brand": null,
"name": "Colgate Optic White Advanced Hydrogen Peroxide Toothpaste, Teeth Whitening Toothpaste Pack, Enamel-Safe Formula, Helps Remove Tea, Coffee, and Wine Stains, Sparkling White, 3 Pack, 3.2 oz ",
"url": "https://www.amazon.com/Colgate-Advanced-Whitening-Toothpaste-Sparkling/dp/B082F1QH7S",
"thumbnail": "https://m.media-amazon.com/images/I/71Zgnsx28nL._AC_UL320_.jpg",
"rating": 4.7,
"total_ratings": 45532,
"price": 12.96,
"list_price": 14.99,
"price_per_unit": 1.35,
"typical_price": null,
"currency": "USD",
"currency_symbol": "$",
"offer_info": "$12.31 with Subscribe & Save discount",
"is_prime": false,
"shipping_info": [
"FREE deliverySun, Oct 27on $35 of items shipped by Amazon",
"Or fastest deliveryFri, Oct 25",
"Sparkling White3.2 Ounce (Pack of 3)"
],
"retailer_badge": null,
"seller_info": "Sold by Amazon",
"more_buying_choices": null,
"past_month_bought": "70K+"
},
{
"asin": "B0BLJ68F9R",
"is_sponsored": false,
"brand": null,
"name": "Crest Pro-Health Clean Mint Toothpaste (4.3oz) Triple Pack ",
"url": "https://www.amazon.com/Crest-Pro-Health-Clean-Toothpaste-Triple/dp/B0BLJ68F9R",
"thumbnail": "https://m.media-amazon.com/images/I/71PoD7VZZ4L._AC_UL320_.jpg",
"rating": 4.7,
"total_ratings": 32227,
"price": 8.97,
"list_price": 9.99,
"price_per_unit": 0.7,
"typical_price": null,
"currency": "USD",
"currency_symbol": "$",
"offer_info": "Save more with Subscribe & Save",
"is_prime": false,
"shipping_info": [
"FREE deliverySun, Oct 27on $35 of items shipped by Amazon",
"Or fastest deliveryFri, Oct 25",
"Mint4.3 Ounce (Pack of 3)"
],
"retailer_badge": null,
"seller_info": "Sold by Amazon",
"more_buying_choices": null,
"past_month_bought": "20K+"
},
{
"asin": "B0BTTCFLZ8",
"is_sponsored": false,
"brand": null,
"name": "Sensodyne Pronamel Gentle Teeth Whitening Enamel Toothpaste for Sensitive Teeth, to Reharden and Strengthen Enamel, Amazon Exclusive, Fresh Mint - 4 Ounces (Pack of 3) ",
"url": "https://www.amazon.com/Sensodyne-Whitening-Toothpaste-Sensitive-Strengthen/dp/B0BTTCFLZ8",
"thumbnail": "https://m.media-amazon.com/images/I/817UekNkPuL._AC_UL320_.jpg",
"rating": 4.8,
"total_ratings": 7290,
"price": 17.47,
"list_price": 19.99,
"price_per_unit": 1.46,
"typical_price": null,
"currency": "USD",
"currency_symbol": "$",
"offer_info": "$16.60 with Subscribe & Save discountwhen you subscribeExtra 20% offwhen you subscribe",
"is_prime": false,
"shipping_info": [
"FREE deliverySun, Oct 27on $35 of items shipped by Amazon",
"Or fastest deliveryFri, Oct 25",
"Mint4 Ounce (Pack of 3)"
],
"retailer_badge": null,
"seller_info": "Sold by Amazon",
"more_buying_choices": null,
"past_month_bought": "100K+"
},
{
"asin": "B01BNEWDFQ",
"is_sponsored": false,
"brand": null,
"name": "Colgate Cavity Protection Toothpaste with Fluoride, Great Regular Flavor, 6 Ounce (Pack of 6) ",
"url": "https://www.amazon.com/Colgate-Cavity-Protection-Toothpaste-Fluoride/dp/B01BNEWDFQ",
"thumbnail": "https://m.media-amazon.com/images/I/81huxZKbm6L._AC_UL320_.jpg",
"rating": 4.8,
"total_ratings": 62568,
"price": 11.82,
"list_price": 13.99,
"price_per_unit": 0.33,
"typical_price": null,
"currency": "USD",
"currency_symbol": "$",
"offer_info": "$11.23 with Subscribe & Save discount",
"is_prime": false,
"shipping_info": [
"FREE deliverySun, Oct 27on $35 of items shipped by Amazon",
"Or fastest deliveryFri, Oct 25",
"Regular6 Ounce (Pack of 6)"
],
"retailer_badge": null,
"seller_info": "Sold by Amazon",
"more_buying_choices": null,
"past_month_bought": "20K+"
},
{
"asin": "B0BTTC9FLT",
"is_sponsored": false,
"brand": null,
"name": "Sensodyne Extra Whitening Sensitive Teeth and Cavity Prevention Whitening Toothpaste, Amazon Exclusive, Cool Mint -4 Ounces (Pack of 3) ",
"url": "https://www.amazon.com/Sensodyne-Whitening-Sensitive-Prevention-Toothpaste/dp/B0BTTC9FLT",
"thumbnail": "https://m.media-amazon.com/images/I/71J4McfCDmL._AC_UL320_.jpg",
"rating": 4.8,
"total_ratings": 6801,
"price": 18.72,
"list_price": 19.99,
"price_per_unit": 1.56,
"typical_price": null,
"currency": "USD",
"currency_symbol": "$",
"offer_info": "$17.78 with Subscribe & Save discountwhen you subscribeExtra 20% offwhen you subscribe",
"is_prime": false,
"shipping_info": [
"FREE deliverySun, Oct 27on $35 of items shipped by Amazon",
"Or fastest deliveryFri, Oct 25",
"Mint4 Ounce (Pack of 3)"
],
"retailer_badge": null,
"seller_info": "Sold by Amazon",
"more_buying_choices": null,
"past_month_bought": "70K+"
},
{
"asin": "B0CQKNQ2GR",
"is_sponsored": false,
"brand": null,
"name": "Crest 3D White Advanced Teeth Whitening Toothpaste, Radiant Mint, 3.3 oz, Pack of 3 ",
"url": "https://www.amazon.com/Crest-Advanced-Whitening-Toothpaste-Radiant/dp/B0CQKNQ2GR",
"thumbnail": "https://m.media-amazon.com/images/I/61ljUVqqw7L._AC_UL320_.jpg",
"rating": 4.8,
"total_ratings": 773,
"price": 12.94,
"list_price": 14.99,
"price_per_unit": 1.31,
"typical_price": null,
"currency": "USD",
"currency_symbol": "$",
"offer_info": "Save more with Subscribe & Save",
"is_prime": false,
"shipping_info": [
"FREE deliverySun, Oct 27on $35 of items shipped by Amazon",
"Or fastest deliveryFri, Oct 25",
"Mint3.3 Ounce (Pack of 3)"
],
"retailer_badge": null,
"seller_info": "Sold by Amazon",
"more_buying_choices": {
"heading": "More Buying Choices",
"offer_text": "$10.98(20 new offers)",
"offer_link": "https://www.amazon.com/gp/offer-listing/B0CQKNQ2GR/ref=sr_1_9_olp?keywords=toothpaste&crid=GXTNV125E657&sprefix=to%2Caps%2C292&dib_tag=se&dib=eyJ2IjoiMSJ9.5utI6RBikmkgyhO5cuGnQ8OMCPpHSM14PUpiapdtbYGyGF6Jm_bRmiLNDKHDj0L3A4lsP4AlFs2YiHdg3Rj8b1MN4NR0WI9UpWZVpP1h-ytvOCPLp_m1aljJTixVMeTxLFE0dJ74m9zJTEFXbxksRtQ4A_VZVzJjGntwN1e6U8iMCW7X6pyZYGoGx_GqBHW-WQpCZFx_lQ_JiwWAqQB6Nsphfjun2gr8Ti_GLR8O47EikEHGUvoR-E_oARQVMmAkTPdoMjFOYAWtNOxyR7zSPGIxmFBj52-BPjltD6MHjXg.gF74roZXIl7uWBzgps-I_lkO7Ixc6YEWKnwwmHAFCKM&qid=1729619711&sr=8-9"
},
"past_month_bought": "10K+"
},
{
"asin": "B09VK1RKM8",
"is_sponsored": false,
"brand": null,
"name": "Arm & Hammer Advance White Toothpaste, Clean Mint Flavor, Stain Defense Technology, 6 Ounce (Pack of 4) ",
"url": "https://www.amazon.com/Arm-Hammer-Advance-Toothpaste-Technology/dp/B09VK1RKM8",
"thumbnail": "https://m.media-amazon.com/images/I/81vi6tOVsYL._AC_UL320_.jpg",
"rating": 4.7,
"total_ratings": 5909,
"price": 13.96,
"list_price": null,
"price_per_unit": 0.58,
"typical_price": null,
"currency": "USD",
"currency_symbol": "$",
"offer_info": "$13.26 with Subscribe & Save discount",
"is_prime": false,
"shipping_info": [
"FREE deliverySun, Oct 27on $35 of items shipped by Amazon",
"Or fastest deliveryFri, Oct 25",
"Mint6 Ounce (Pack of 4)"
],
"retailer_badge": null,
"seller_info": "Sold by Amazon",
"more_buying_choices": null,
"past_month_bought": "20K+"
},
{
"asin": "B07C1ZQ5ZY",
"is_sponsored": false,
"brand": null,
"name": "Sensodyne Repair and Protect Whitening Toothpaste, Toothpaste for Sensitive Teeth and Cavity Prevention, 3.4 oz (Pack of 2) ",
"url": "https://www.amazon.com/Sensodyne-Whitening-Sensitivity-Toothpaste-Sensitive/dp/B07C1ZQ5ZY",
"thumbnail": "https://m.media-amazon.com/images/I/81SEUdkk2-L._AC_UL320_.jpg",
"rating": 4.7,
"total_ratings": 45271,
"price": 12.48,
"list_price": null,
"price_per_unit": 1.84,
"typical_price": null,
"currency": "USD",
"currency_symbol": "$",
"offer_info": "$11.86 with Subscribe & Save discountwhen you subscribeExtra 20% offwhen you subscribe",
"is_prime": false,
"shipping_info": [
"FREE deliverySun, Oct 27on $35 of items shipped by Amazon",
"Or fastest deliveryFri, Oct 25",
"Whitening3.4 Ounce (Pack of 2)"
],
"retailer_badge": null,
"seller_info": "Sold by Amazon",
"more_buying_choices": {
"heading": "More Buying Choices",
"offer_text": "$7.96(9 new offers)",
"offer_link": "https://www.amazon.com/gp/offer-listing/B07C1ZQ5ZY/ref=sr_1_11_olp?keywords=toothpaste&crid=GXTNV125E657&sprefix=to%2Caps%2C292&dib_tag=se&dib=eyJ2IjoiMSJ9.5utI6RBikmkgyhO5cuGnQ8OMCPpHSM14PUpiapdtbYGyGF6Jm_bRmiLNDKHDj0L3A4lsP4AlFs2YiHdg3Rj8b1MN4NR0WI9UpWZVpP1h-ytvOCPLp_m1aljJTixVMeTxLFE0dJ74m9zJTEFXbxksRtQ4A_VZVzJjGntwN1e6U8iMCW7X6pyZYGoGx_GqBHW-WQpCZFx_lQ_JiwWAqQB6Nsphfjun2gr8Ti_GLR8O47EikEHGUvoR-E_oARQVMmAkTPdoMjFOYAWtNOxyR7zSPGIxmFBj52-BPjltD6MHjXg.gF74roZXIl7uWBzgps-I_lkO7Ixc6YEWKnwwmHAFCKM&qid=1729619711&sr=8-11"
},
"past_month_bought": "30K+"
},
{
"asin": "B0CMW3X9ZK",
"is_sponsored": false,
"brand": null,
"name": "Crest 3D White Advanced Teeth Whitening Toothpaste, Radiant Mint, 3.3 oz, Pack of 2 ",
"url": "https://www.amazon.com/Crest-Advanced-Whitening-Toothpaste-Radiant/dp/B0CMW3X9ZK",
"thumbnail": "https://m.media-amazon.com/images/I/51P-lDzHgUL._AC_UL320_.jpg",
"rating": 4.6,
"total_ratings": 710,
"price": 8.97,
"list_price": 9.99,
"price_per_unit": 1.36,
"typical_price": null,
"currency": "USD",
"currency_symbol": "$",
"offer_info": "Save more with Subscribe & Save",
"is_prime": false,
"shipping_info": [
"FREE deliveryMon, Oct 28on $35 of items shipped by Amazon",
"Or fastest deliveryFri, Oct 25",
"Mint3.3 Ounce (Pack of 2)"
],
"retailer_badge": null,
"seller_info": "Sold by Amazon",
"more_buying_choices": {
"heading": "More Buying Choices",
"offer_text": "$8.94(17 new offers)",
"offer_link": "https://www.amazon.com/gp/offer-listing/B0CMW3X9ZK/ref=sr_1_12_olp?keywords=toothpaste&crid=GXTNV125E657&sprefix=to%2Caps%2C292&dib_tag=se&dib=eyJ2IjoiMSJ9.5utI6RBikmkgyhO5cuGnQ8OMCPpHSM14PUpiapdtbYGyGF6Jm_bRmiLNDKHDj0L3A4lsP4AlFs2YiHdg3Rj8b1MN4NR0WI9UpWZVpP1h-ytvOCPLp_m1aljJTixVMeTxLFE0dJ74m9zJTEFXbxksRtQ4A_VZVzJjGntwN1e6U8iMCW7X6pyZYGoGx_GqBHW-WQpCZFx_lQ_JiwWAqQB6Nsphfjun2gr8Ti_GLR8O47EikEHGUvoR-E_oARQVMmAkTPdoMjFOYAWtNOxyR7zSPGIxmFBj52-BPjltD6MHjXg.gF74roZXIl7uWBzgps-I_lkO7Ixc6YEWKnwwmHAFCKM&qid=1729619711&sr=8-12"
},
"past_month_bought": "10K+"
},
{
"asin": "B09P44Q558",
"is_sponsored": false,
"brand": null,
"name": "Hello Antiplaque Toothpaste, Fluoride Free for Teeth Whitening with Natural Peppermint Flavor and Tea Tree Oil, Peroxide Free, Gluten Free, SLS Free, 3 Pack, 4.7 OZ Tubes ",
"url": "https://www.amazon.com/Antiplaque-Whitening-Toothpaste-Fluoride-Peppermint/dp/B09P44Q558",
"thumbnail": "https://m.media-amazon.com/images/I/81axDQWSEcL._AC_UL320_.jpg",
"rating": 4.8,
"total_ratings": 6717,
"price": 14.91,
"list_price": null,
"price_per_unit": 1.06,
"typical_price": null,
"currency": "USD",
"currency_symbol": "$",
"offer_info": "$14.16 with Subscribe & Save discount",
"is_prime": false,
"shipping_info": [
"FREE deliverySun, Oct 27on $35 of items shipped by Amazon",
"Or fastest deliveryFri, Oct 25",
"Peppermint4.7 Ounce (Pack of 3)"
],
"retailer_badge": null,
"seller_info": "Sold by Amazon",
"more_buying_choices": null,
"past_month_bought": "30K+"
},
{
"asin": "B08S8QNW2K",
"is_sponsored": false,
"brand": null,
"name": "Crest Complete Active Fresh + Whitening Toothpaste, 5.5oz (Pack of 4) ",
"url": "https://www.amazon.com/Crest-Complete-Active-Whitening-Toothpaste/dp/B08S8QNW2K",
"thumbnail": "https://m.media-amazon.com/images/I/91dd7Eq-6BL._AC_UL320_.jpg",
"rating": 4.7,
"total_ratings": 4685,
"price": 10.99,
"list_price": null,
"price_per_unit": 0.5,
"typical_price": null,
"currency": "USD",
"currency_symbol": "$",
"offer_info": "Save more with Subscribe & Save",
"is_prime": false,
"shipping_info": [
"FREE deliverySun, Oct 27on $35 of items shipped by Amazon",
"Or fastest deliveryFri, Oct 25",
"Mint5.5 Ounce (Pack of 4)"
],
"retailer_badge": null,
"seller_info": "Sold by Amazon",
"more_buying_choices": {
"heading": "More Buying Choices",
"offer_text": "$10.98(12 new offers)",
"offer_link": "https://www.amazon.com/gp/offer-listing/B08S8QNW2K/ref=sr_1_14_olp?keywords=toothpaste&crid=GXTNV125E657&sprefix=to%2Caps%2C292&dib_tag=se&dib=eyJ2IjoiMSJ9.5utI6RBikmkgyhO5cuGnQ8OMCPpHSM14PUpiapdtbYGyGF6Jm_bRmiLNDKHDj0L3A4lsP4AlFs2YiHdg3Rj8b1MN4NR0WI9UpWZVpP1h-ytvOCPLp_m1aljJTixVMeTxLFE0dJ74m9zJTEFXbxksRtQ4A_VZVzJjGntwN1e6U8iMCW7X6pyZYGoGx_GqBHW-WQpCZFx_lQ_JiwWAqQB6Nsphfjun2gr8Ti_GLR8O47EikEHGUvoR-E_oARQVMmAkTPdoMjFOYAWtNOxyR7zSPGIxmFBj52-BPjltD6MHjXg.gF74roZXIl7uWBzgps-I_lkO7Ixc6YEWKnwwmHAFCKM&qid=1729619711&sr=8-14"
},
"past_month_bought": "20K+"
},
{
"asin": "B0195UTBKA",
"is_sponsored": false,
"brand": null,
"name": "Colgate Cavity Protection Regular Fluoride Toothpaste, White, 6 oz ",
"url": "https://www.amazon.com/Colgate-Protection-Regular-Fluoride-Toothpaste/dp/B0195UTBKA",
"thumbnail": "https://m.media-amazon.com/images/I/61c4bCtVfSL._AC_UL320_.jpg",
"rating": 4.7,
"total_ratings": 3832,
"price": 1.97,
"list_price": 4.19,
"price_per_unit": 0.33,
"typical_price": null,
"currency": "USD",
"currency_symbol": "$",
"offer_info": "Save more with Subscribe & Save",
"is_prime": false,
"shipping_info": [
"FREE deliverySun, Oct 27on $35 of items shipped by Amazon",
"Or fastest deliveryFri, Oct 25",
"Regular6 Ounce (Pack of 1)"
],
"retailer_badge": null,
"seller_info": "Sold by Amazon",
"more_buying_choices": null,
"past_month_bought": "20K+"
},
{
"asin": "B09JHSVM58",
"is_sponsored": false,
"brand": null,
"name": "Davids Fluoride Free Nano Hydroxyapatite Toothpaste for Remineralizing Enamel & Sensitive Relief, Whitening, Antiplaque, SLS Free, Natural Peppermint, 5.25oz, Made in USA ",
"url": "https://www.amazon.com/Davids-Hydroxyapatite-Toothpaste-Sensitive-Peppermint/dp/B09JHSVM58",
"thumbnail": "https://m.media-amazon.com/images/I/71zf8VMUbUL._AC_UL320_.jpg",
"rating": 4.4,
"total_ratings": 11604,
"price": 11.95,
"list_price": 14.95,
"price_per_unit": 2.28,
"typical_price": null,
"currency": "USD",
"currency_symbol": "$",
"offer_info": "Save more with Subscribe & Save",
"is_prime": false,
"shipping_info": [
"FREE deliverySun, Oct 27on $35 of items shipped by Amazon",
"Or fastest deliveryFri, Oct 25",
"5.25 Ounce (Pack of 1)"
],
"retailer_badge": null,
"seller_info": "Seller rating: 5.0/5(1,310)",
"more_buying_choices": null,
"past_month_bought": "30K+"
},
{
"asin": "B08PWZCP1F",
"is_sponsored": false,
"brand": null,
"name": "Crest Pro-Health Advanced Antibacterial Protection Toothpaste, Crest Toothpaste, Crest Pro Health Toothpaste - Pack of 4, 5 Oz Tubes ",
"url": "https://www.amazon.com/Crest-Pro-Health-Antibacterial-Protection-Toothpaste/dp/B08PWZCP1F",
"thumbnail": "https://m.media-amazon.com/images/I/610J-bW5L+L._AC_UL320_.jpg",
"rating": 4.7,
"total_ratings": 9037,
"price": 14.92,
"list_price": null,
"price_per_unit": 0.75,
"typical_price": null,
"currency": "USD",
"currency_symbol": "$",
"offer_info": "Save more with Subscribe & Save$3.00 off coupon appliedSave $3.00with coupon",
"is_prime": false,
"shipping_info": [
"FREE deliverySun, Oct 27on $35 of items shipped by Amazon",
"Or fastest deliveryFri, Oct 25",
"Mint5 Ounce (Pack of 4)"
],
"retailer_badge": null,
"seller_info": "Sold by Amazon",
"more_buying_choices": {
"heading": "More Buying Choices",
"offer_text": "$14.77(5 new offers)",
"offer_link": "https://www.amazon.com/gp/offer-listing/B08PWZCP1F/ref=sr_1_17_olp?keywords=toothpaste&crid=GXTNV125E657&sprefix=to%2Caps%2C292&dib_tag=se&dib=eyJ2IjoiMSJ9.5utI6RBikmkgyhO5cuGnQ8OMCPpHSM14PUpiapdtbYGyGF6Jm_bRmiLNDKHDj0L3A4lsP4AlFs2YiHdg3Rj8b1MN4NR0WI9UpWZVpP1h-ytvOCPLp_m1aljJTixVMeTxLFE0dJ74m9zJTEFXbxksRtQ4A_VZVzJjGntwN1e6U8iMCW7X6pyZYGoGx_GqBHW-WQpCZFx_lQ_JiwWAqQB6Nsphfjun2gr8Ti_GLR8O47EikEHGUvoR-E_oARQVMmAkTPdoMjFOYAWtNOxyR7zSPGIxmFBj52-BPjltD6MHjXg.gF74roZXIl7uWBzgps-I_lkO7Ixc6YEWKnwwmHAFCKM&qid=1729619711&sr=8-17"
},
"past_month_bought": "10K+"
},
{
"asin": "B0CMVVB3SD",
"is_sponsored": false,
"brand": null,
"name": "Crest Pro-Health Gum Detoxify Deep Clean Toothpaste, 4.8 oz Pack of 3 - Anticavity, Antibacterial Flouride Toothpaste, Clinically Proven, Gum and Enamel Protection, Plaque Control ",
"url": "https://www.amazon.com/Crest-Pro-Health-Detoxify-Clean-Toothpaste/dp/B0CMVVB3SD",
"thumbnail": "https://m.media-amazon.com/images/I/61H-smw3rNL._AC_UL320_.jpg",
"rating": 4.8,
"total_ratings": 2119,
"price": 18.97,
"list_price": 19.99,
"price_per_unit": 1.32,
"typical_price": null,
"currency": "USD",
"currency_symbol": "$",
"offer_info": "Save more with Subscribe & Save",
"is_prime": false,
"shipping_info": [
"FREE deliverySun, Oct 27on $35 of items shipped by Amazon",
"Or fastest deliveryFri, Oct 25",
"Mint4.8 Ounce (Pack of 3)"
],
"retailer_badge": null,
"seller_info": "Sold by Amazon",
"more_buying_choices": {
"heading": "More Buying Choices",
"offer_text": "$18.79(15 new offers)",
"offer_link": "https://www.amazon.com/gp/offer-listing/B0CMVVB3SD/ref=sr_1_18_olp?keywords=toothpaste&crid=GXTNV125E657&sprefix=to%2Caps%2C292&dib_tag=se&dib=eyJ2IjoiMSJ9.5utI6RBikmkgyhO5cuGnQ8OMCPpHSM14PUpiapdtbYGyGF6Jm_bRmiLNDKHDj0L3A4lsP4AlFs2YiHdg3Rj8b1MN4NR0WI9UpWZVpP1h-ytvOCPLp_m1aljJTixVMeTxLFE0dJ74m9zJTEFXbxksRtQ4A_VZVzJjGntwN1e6U8iMCW7X6pyZYGoGx_GqBHW-WQpCZFx_lQ_JiwWAqQB6Nsphfjun2gr8Ti_GLR8O47EikEHGUvoR-E_oARQVMmAkTPdoMjFOYAWtNOxyR7zSPGIxmFBj52-BPjltD6MHjXg.gF74roZXIl7uWBzgps-I_lkO7Ixc6YEWKnwwmHAFCKM&qid=1729619711&sr=8-18"
},
"past_month_bought": "20K+"
},
{
"asin": "B0BQ1MXZW4",
"is_sponsored": false,
"brand": null,
"name": "Crest Base Pro-Health Whitening Toothpaste (4.3oz) Triple Pack, Crest Toothpaste Whitening, Teeth Whitening Toothpaste ",
"url": "https://www.amazon.com/Crest-Pro-Health-Whitening-Toothpaste-Triple/dp/B0BQ1MXZW4",
"thumbnail": "https://m.media-amazon.com/images/I/61z+sAKKJQL._AC_UL320_.jpg",
"rating": 4.8,
"total_ratings": 3151,
"price": 8.97,
"list_price": null,
"price_per_unit": 0.7,
"typical_price": null,
"currency": "USD",
"currency_symbol": "$",
"offer_info": "Save more with Subscribe & Save",
"is_prime": false,
"shipping_info": [
"FREE deliverySun, Oct 27on $35 of items shipped by Amazon",
"Or fastest deliveryFri, Oct 25",
"Mint4.3 Ounce (Pack of 3)"
],
"retailer_badge": null,
"seller_info": "Sold by Amazon",
"more_buying_choices": null,
"past_month_bought": "10K+"
},
{
"asin": "B09VK154VZ",
"is_sponsored": false,
"brand": null,
"name": "Arm & Hammer Peroxicare Toothpaste, Clean Mint Flavor, Improves Gum Health, 6.0oz (4-Pack) ",
"url": "https://www.amazon.com/Arm-Hammer-Peroxicare-Toothpaste-Improves/dp/B09VK154VZ",
"thumbnail": "https://m.media-amazon.com/images/I/81m7JOaVO8L._AC_UL320_.jpg",
"rating": 4.7,
"total_ratings": 18334,
"price": 13.4,
"list_price": 14.12,
"price_per_unit": 0.56,
"typical_price": null,
"currency": "USD",
"currency_symbol": "$",
"offer_info": "$12.73 with Subscribe & Save discount",
"is_prime": false,
"shipping_info": [
"FREE deliverySun, Oct 27on $35 of items shipped by Amazon",
"Or fastest deliveryFri, Oct 25",
"Mint6 Ounce (Pack of 4)"
],
"retailer_badge": null,
"seller_info": "Sold by Amazon",
"more_buying_choices": null,
"past_month_bought": "10K+"
},
{
"asin": "B095Z57SV9",
"is_sponsored": false,
"brand": null,
"name": "Sensodyne Repair and Protect Whitening Toothpaste, Toothpaste for Sensitive Teeth and Cavity Prevention, 3.4 oz (Pack of 4) ",
"url": "https://www.amazon.com/Sensodyne-Whitening-Toothpaste-Sensitive-Prevention/dp/B095Z57SV9",
"thumbnail": "https://m.media-amazon.com/images/I/81K-WHMltyL._AC_UL320_.jpg",
"rating": 4.7,
"total_ratings": 5407,
"price": 20.99,
"list_price": 24.99,
"price_per_unit": 1.54,
"typical_price": null,
"currency": "USD",
"currency_symbol": "$",
"offer_info": "$19.94 with Subscribe & Save discountwhen you subscribeExtra 20% offwhen you subscribe",
"is_prime": false,
"shipping_info": [
"FREE deliverySun, Oct 27on $35 of items shipped by Amazon",
"Or fastest deliveryFri, Oct 25",
"Whitening3.4 Ounce (Pack of 4)"
],
"retailer_badge": null,
"seller_info": "Sold by Amazon",
"more_buying_choices": null,
"past_month_bought": "20K+"
},
{
"asin": "B0CMWFWH7N",
"is_sponsored": false,
"brand": null,
"name": "Crest Pro-Health Gum Detoxify Deep Clean Toothpaste 2.6 oz - Anticavity, Antibacterial Flouride Toothpaste, Clinically Proven, Gum and Enamel Protection, Plaque Control ",
"url": "https://www.amazon.com/Crest-Pro-Health-Detoxify-Clean-Toothpaste/dp/B0CMWFWH7N",
"thumbnail": "https://m.media-amazon.com/images/I/51uiJs2+6WL._AC_UL320_.jpg",
"rating": 4.7,
"total_ratings": 480,
"price": 4.97,
"list_price": 5.99,
"price_per_unit": 1.91,
"typical_price": null,
"currency": "USD",
"currency_symbol": "$",
"offer_info": "Save more with Subscribe & Save",
"is_prime": false,
"shipping_info": [
"FREE deliverySun, Oct 27on $35 of items shipped by Amazon",
"Or fastest deliveryFri, Oct 25",
"Mint2.6 Ounce (Pack of 1)"
],
"retailer_badge": null,
"seller_info": "Sold by Amazon",
"more_buying_choices": null,
"past_month_bought": "6K+"
},
{
"asin": "B000MEKG30",
"is_sponsored": false,
"brand": null,
"name": "Marvis Whitening Mint Toothpaste ",
"url": "https://www.amazon.com/Marvis-Whitening-Mint-Toothpaste-3-8/dp/B000MEKG30",
"thumbnail": "https://m.media-amazon.com/images/I/91kdNh3uGaL._AC_UL320_.jpg",
"rating": 4.5,
"total_ratings": 8906,
"price": 13.5,
"list_price": null,
"price_per_unit": 3.55,
"typical_price": null,
"currency": "USD",
"currency_symbol": "$",
"offer_info": "Save more with Subscribe & Save",
"is_prime": false,
"shipping_info": [
"FREE delivery on $35 shipped by Amazon.",
"Whitening Mint3.8 Ounce (Pack of 1)"
],
"retailer_badge": null,
"seller_info": "Sold by Amazon",
"more_buying_choices": null,
"past_month_bought": "30K+"
},
{
"asin": "B082VHXPQJ",
"is_sponsored": false,
"brand": null,
"name": "Crest Fluoride Anticavity Toothpaste, Prevents Cavities Before They Start, Regular Paste, 8.2 Ounce (Pack of 5) ",
"url": "https://www.amazon.com/Crest-Fluoride-Anticavity-Toothpaste-Prevents/dp/B082VHXPQJ",
"thumbnail": "https://m.media-amazon.com/images/I/81dERTt7owL._AC_UL320_.jpg",
"rating": 4.8,
"total_ratings": 1692,
"price": 15.98,
"list_price": 17.07,
"price_per_unit": 0.39,
"typical_price": null,
"currency": "USD",
"currency_symbol": "$",
"offer_info": null,
"is_prime": false,
"shipping_info": [
"FREE deliveryOct 29 - 31",
"Mint8.2 Ounce (Pack of 5)"
],
"retailer_badge": null,
"seller_info": "Seller rating: 4.4/5(459)",
"more_buying_choices": null,
"past_month_bought": "1K+"
},
{
"asin": "B01LTHYWB0",
"is_sponsored": false,
"brand": null,
"name": "Colgate Whitening Toothpaste for Sensitive Teeth, Enamel Repair and Cavity Protection, Fresh Mint Gel, 6 Oz (Pack of 3) ",
"url": "https://www.amazon.com/Colgate-Sensitive-Strength-Whitening-Toothpaste/dp/B01LTHYWB0",
"thumbnail": "https://m.media-amazon.com/images/I/81GazINtLWL._AC_UL320_.jpg",
"rating": 4.7,
"total_ratings": 30529,
"price": 12.42,
"list_price": 14.99,
"price_per_unit": 0.69,
"typical_price": null,
"currency": "USD",
"currency_symbol": "$",
"offer_info": "$11.80 with Subscribe & Save discount",
"is_prime": false,
"shipping_info": [
"FREE deliverySun, Oct 27on $35 of items shipped by Amazon",
"Or fastest deliveryFri, Oct 25",
"Whitening6 Ounce (Pack of 3)"
],
"retailer_badge": null,
"seller_info": "Sold by Amazon",
"more_buying_choices": {
"heading": "More Buying Choices",
"offer_text": "$10.78(9 new offers)",
"offer_link": "https://www.amazon.com/gp/offer-listing/B01LTHYWB0/ref=sr_1_25_olp?keywords=toothpaste&crid=GXTNV125E657&sprefix=to%2Caps%2C292&dib_tag=se&dib=eyJ2IjoiMSJ9.5utI6RBikmkgyhO5cuGnQ8OMCPpHSM14PUpiapdtbYGyGF6Jm_bRmiLNDKHDj0L3A4lsP4AlFs2YiHdg3Rj8b1MN4NR0WI9UpWZVpP1h-ytvOCPLp_m1aljJTixVMeTxLFE0dJ74m9zJTEFXbxksRtQ4A_VZVzJjGntwN1e6U8iMCW7X6pyZYGoGx_GqBHW-WQpCZFx_lQ_JiwWAqQB6Nsphfjun2gr8Ti_GLR8O47EikEHGUvoR-E_oARQVMmAkTPdoMjFOYAWtNOxyR7zSPGIxmFBj52-BPjltD6MHjXg.gF74roZXIl7uWBzgps-I_lkO7Ixc6YEWKnwwmHAFCKM&qid=1729619711&sr=8-25"
},
"past_month_bought": "20K+"
},
{
"asin": "B0BP61T1M5",
"is_sponsored": false,
"brand": null,
"name": "Crest Pro-Health Gum Detoxify and Restore Toothpaste, Deep Clean, 3.5 oz, Pack of 3 ",
"url": "https://www.amazon.com/Crest-Pro-Health-Detoxify-Restore-Toothpaste/dp/B0BP61T1M5",
"thumbnail": "https://m.media-amazon.com/images/I/81w94RCry1L._AC_UL320_.jpg",
"rating": 4.8,
"total_ratings": 6074,
"price": 20.52,
"list_price": null,
"price_per_unit": 1.95,
"typical_price": null,
"currency": "USD",
"currency_symbol": "$",
"offer_info": null,
"is_prime": false,
"shipping_info": [
"FREE deliverySun, Oct 27on $35 of items shipped by Amazon",
"Or fastest deliveryFri, Oct 25",
"Deep Clean3.5 Ounce (Pack of 3)"
],
"retailer_badge": null,
"seller_info": "Seller rating: 4.9/5(133)",
"more_buying_choices": {
"heading": "More Buying Choices",
"offer_text": "$20.50(43 new offers)",
"offer_link": "https://www.amazon.com/gp/offer-listing/B0BP61T1M5/ref=sr_1_26_olp?keywords=toothpaste&crid=GXTNV125E657&sprefix=to%2Caps%2C292&dib_tag=se&dib=eyJ2IjoiMSJ9.5utI6RBikmkgyhO5cuGnQ8OMCPpHSM14PUpiapdtbYGyGF6Jm_bRmiLNDKHDj0L3A4lsP4AlFs2YiHdg3Rj8b1MN4NR0WI9UpWZVpP1h-ytvOCPLp_m1aljJTixVMeTxLFE0dJ74m9zJTEFXbxksRtQ4A_VZVzJjGntwN1e6U8iMCW7X6pyZYGoGx_GqBHW-WQpCZFx_lQ_JiwWAqQB6Nsphfjun2gr8Ti_GLR8O47EikEHGUvoR-E_oARQVMmAkTPdoMjFOYAWtNOxyR7zSPGIxmFBj52-BPjltD6MHjXg.gF74roZXIl7uWBzgps-I_lkO7Ixc6YEWKnwwmHAFCKM&qid=1729619711&sr=8-26"
},
"past_month_bought": "1K+"
},
{
"asin": "B00E4MPC26",
"is_sponsored": false,
"brand": null,
"name": "Crest Toothpaste Cavity Protection Regular (Pack of 3) ",
"url": "https://www.amazon.com/Crest-Regular-Protection-Fluoride-Toothpaste/dp/B00E4MPC26",
"thumbnail": "https://m.media-amazon.com/images/I/71Vf2FGqc5L._AC_UL320_.jpg",
"rating": 4.8,
"total_ratings": 3809,
"price": 12.09,
"list_price": 20.0,
"price_per_unit": 1.47,
"typical_price": null,
"currency": "USD",
"currency_symbol": "$",
"offer_info": null,
"is_prime": false,
"shipping_info": [
"FREE deliveryMon, Oct 28on $35 of items shipped by Amazon",
"Unflavored"
],
"retailer_badge": null,
"seller_info": "Seller rating: 4.9/5(837)",
"more_buying_choices": {
"heading": "More Buying Choices",
"offer_text": "$10.99(41 new offers)",
"offer_link": "https://www.amazon.com/gp/offer-listing/B00E4MPC26/ref=sr_1_27_olp?keywords=toothpaste&crid=GXTNV125E657&sprefix=to%2Caps%2C292&dib_tag=se&dib=eyJ2IjoiMSJ9.5utI6RBikmkgyhO5cuGnQ8OMCPpHSM14PUpiapdtbYGyGF6Jm_bRmiLNDKHDj0L3A4lsP4AlFs2YiHdg3Rj8b1MN4NR0WI9UpWZVpP1h-ytvOCPLp_m1aljJTixVMeTxLFE0dJ74m9zJTEFXbxksRtQ4A_VZVzJjGntwN1e6U8iMCW7X6pyZYGoGx_GqBHW-WQpCZFx_lQ_JiwWAqQB6Nsphfjun2gr8Ti_GLR8O47EikEHGUvoR-E_oARQVMmAkTPdoMjFOYAWtNOxyR7zSPGIxmFBj52-BPjltD6MHjXg.gF74roZXIl7uWBzgps-I_lkO7Ixc6YEWKnwwmHAFCKM&qid=1729619711&sr=8-27"
},
"past_month_bought": "3K+"
},
{
"asin": "B095Z5WQWM",
"is_sponsored": false,
"brand": null,
"name": "Sensodyne Pronamel Intensive Enamel Repair Toothpaste for Sensitive Teeth and Cavity Protection, Whitening Toothpaste to Strengthen Enamel, Arctic Breeze - 3.4 Ounces (Pack of 4) ",
"url": "https://www.amazon.com/SENSODYNE-PRONAMEL-Intensive-Toothpaste-Strengthening/dp/B095Z5WQWM",
"thumbnail": "https://m.media-amazon.com/images/I/812eOBSI3pL._AC_UL320_.jpg",
"rating": 4.8,
"total_ratings": 6836,
"price": 20.99,
"list_price": 24.98,
"price_per_unit": 1.54,
"typical_price": null,
"currency": "USD",
"currency_symbol": "$",
"offer_info": "$19.94 with Subscribe & Save discountwhen you subscribeExtra 20% offwhen you subscribe",
"is_prime": false,
"shipping_info": [
"FREE deliverySun, Oct 27on $35 of items shipped by Amazon",
"Or fastest deliveryFri, Oct 25",
"Arctic Breeze3.4 Ounce (Pack of 4)"
],
"retailer_badge": null,
"seller_info": "Sold by Amazon",
"more_buying_choices": null,
"past_month_bought": "20K+"
},
{
"asin": "B07JWVR1PK",
"is_sponsored": false,
"brand": null,
"name": "Colgate Total Teeth Whitening Toothpaste, 10 Benefits Including Sensitivity Relief ,Whitening Mint, 4.8 oz ( Pack of 4 ) ",
"url": "https://www.amazon.com/Colgate-Total-Whitening-Toothpaste-ounce/dp/B07JWVR1PK",
"thumbnail": "https://m.media-amazon.com/images/I/91DV12sG+RL._AC_UL320_.jpg",
"rating": 4.7,
"total_ratings": 25657,
"price": 22.99,
"list_price": null,
"price_per_unit": 1.2,
"typical_price": null,
"currency": "USD",
"currency_symbol": "$",
"offer_info": "Save more with Subscribe & Save",
"is_prime": false,
"shipping_info": [
"FREE deliveryMon, Oct 28on $35 of items shipped by Amazon",
"Whitening Paste4.8 Ounce (Pack of 4)"
],
"retailer_badge": null,
"seller_info": "Seller rating: 4.9/5(970)",
"more_buying_choices": {
"heading": "More Buying Choices",
"offer_text": "$13.09(35 new offers)",
"offer_link": "https://www.amazon.com/gp/offer-listing/B07JWVR1PK/ref=sr_1_29_olp?keywords=toothpaste&crid=GXTNV125E657&sprefix=to%2Caps%2C292&dib_tag=se&dib=eyJ2IjoiMSJ9.5utI6RBikmkgyhO5cuGnQ8OMCPpHSM14PUpiapdtbYGyGF6Jm_bRmiLNDKHDj0L3A4lsP4AlFs2YiHdg3Rj8b1MN4NR0WI9UpWZVpP1h-ytvOCPLp_m1aljJTixVMeTxLFE0dJ74m9zJTEFXbxksRtQ4A_VZVzJjGntwN1e6U8iMCW7X6pyZYGoGx_GqBHW-WQpCZFx_lQ_JiwWAqQB6Nsphfjun2gr8Ti_GLR8O47EikEHGUvoR-E_oARQVMmAkTPdoMjFOYAWtNOxyR7zSPGIxmFBj52-BPjltD6MHjXg.gF74roZXIl7uWBzgps-I_lkO7Ixc6YEWKnwwmHAFCKM&qid=1729619711&sr=8-29"
},
"past_month_bought": "2K+"
},
{
"asin": "B00KS6X5OO",
"is_sponsored": false,
"brand": null,
"name": "Aquafresh Cavity Protection Fluoride Toothpaste, Cool Mint, 5.6 ounce ",
"url": "https://www.amazon.com/Aquafresh-Cavity-Protection-Fluoride-Toothpaste/dp/B00KS6X5OO",
"thumbnail": "https://m.media-amazon.com/images/I/71xWQq35CXL._AC_UL320_.jpg",
"rating": 4.7,
"total_ratings": 10317,
"price": 2.99,
"list_price": null,
"price_per_unit": 0.53,
"typical_price": null,
"currency": "USD",
"currency_symbol": "$",
"offer_info": "$2.84 with Subscribe & Save discountwhen you subscribeExtra 20% offwhen you subscribe",
"is_prime": false,
"shipping_info": [
"FREE deliveryMon, Oct 28on $35 of items shipped by Amazon",
"Or fastest deliveryFri, Oct 25",
"Cool Mint5.6 Ounce (Pack of 1)"
],
"retailer_badge": null,
"seller_info": "Sold by Amazon",
"more_buying_choices": null,
"past_month_bought": "10K+"
},
{
"asin": "B003F8A2BQ",
"is_sponsored": false,
"brand": null,
"name": "Crest Tartar Protection Whitening Cool Mint Flavor Toothpaste 8.2 Oz (Pack of 4) ",
"url": "https://www.amazon.com/Crest-Tartar-Protection-Whitening-Toothpaste/dp/B003F8A2BQ",
"thumbnail": "https://m.media-amazon.com/images/I/71vCG4EPq0L._AC_UL320_.jpg",
"rating": 4.6,
"total_ratings": 1288,
"price": 17.0,
"list_price": null,
"price_per_unit": null,
"typical_price": null,
"currency": "USD",
"currency_symbol": "$",
"offer_info": "Save more with Subscribe & Save",
"is_prime": false,
"shipping_info": [
"FREE deliveryMon, Oct 28on $35 of items shipped by Amazon",
"Or fastest deliveryFri, Oct 25",
"Mint8.2 Ounce (Pack of 4)"
],
"retailer_badge": null,
"seller_info": "Sold by Amazon",
"more_buying_choices": null,
"past_month_bought": "1K+"
},
{
"asin": "B0BLJ798GT",
"is_sponsored": false,
"brand": null,
"name": "Crest Pro-Health Clean Mint Toothpaste (4.3oz) Twin Pack ",
"url": "https://www.amazon.com/Crest-Pro-Health-Clean-Toothpaste-4-3oz/dp/B0BLJ798GT",
"thumbnail": "https://m.media-amazon.com/images/I/81y2gjXrmKL._AC_UL320_.jpg",
"rating": 4.8,
"total_ratings": 893,
"price": 6.99,
"list_price": 7.99,
"price_per_unit": 0.81,
"typical_price": null,
"currency": "USD",
"currency_symbol": "$",
"offer_info": "Save more with Subscribe & Save",
"is_prime": false,
"shipping_info": [
"FREE deliverySun, Oct 27on $35 of items shipped by Amazon",
"Or fastest deliveryFri, Oct 25",
"Mint4.3 Ounce (Pack of 2)"
],
"retailer_badge": null,
"seller_info": "Sold by Amazon",
"more_buying_choices": null,
"past_month_bought": "4K+"
},
{
"asin": "B095Z6SVNB",
"is_sponsored": false,
"brand": null,
"name": "Sensodyne Pronamel Fresh Breath Enamel Toothpaste for Sensitive Teeth and Cavity Protection, Fresh Wave - 4 oz (4 Pack) ",
"url": "https://www.amazon.com/SENSODYNE-PRONAMEL-Toothpaste-Sensitive-Strengthen/dp/B095Z6SVNB",
"thumbnail": "https://m.media-amazon.com/images/I/818RgjAuVsL._AC_UL320_.jpg",
"rating": 4.8,
"total_ratings": 6635,
"price": 24.33,
"list_price": null,
"price_per_unit": 1.52,
"typical_price": null,
"currency": "USD",
"currency_symbol": "$",
"offer_info": "$23.11 with Subscribe & Save discountwhen you subscribeExtra 20% offwhen you subscribe",
"is_prime": false,
"shipping_info": [
"FREE deliveryMon, Oct 28on $35 of items shipped by Amazon",
"Or fastest deliveryFri, Oct 25",
"Mint4 Ounce (Pack of 4)"
],
"retailer_badge": null,
"seller_info": "Sold by Amazon",
"more_buying_choices": null,
"past_month_bought": "10K+"
},
{
"asin": "B09VJYR5B2",
"is_sponsored": false,
"brand": null,
"name": "Arm & Hammer Complete Care Toothpaste, Fresh Mint Flavor, Whole Mouth Protection, 6.0oz (4-Pack) ",
"url": "https://www.amazon.com/Arm-Hammer-Complete-Toothpaste-Protection/dp/B09VJYR5B2",
"thumbnail": "https://m.media-amazon.com/images/I/81mGqU8EsnL._AC_UL320_.jpg",
"rating": 4.7,
"total_ratings": 1976,
"price": 16.99,
"list_price": null,
"price_per_unit": 0.71,
"typical_price": null,
"currency": "USD",
"currency_symbol": "$",
"offer_info": null,
"is_prime": false,
"shipping_info": [
"FREE deliveryMon, Oct 28on $35 of items shipped by Amazon",
"Mint6 Ounce (Pack of 4)"
],
"retailer_badge": null,
"seller_info": "Seller rating: 4.9/5(234)",
"more_buying_choices": null,
"past_month_bought": "7K+"
},
{
"asin": "B01MAYLL0E",
"is_sponsored": false,
"brand": null,
"name": "NEEM ESSENTIAL TOOTHPASTE New 5 in 1 Formula 6 Pack ",
"url": "https://www.amazon.com/NEEM-ESSENTIAL-TOOTHPASTE-FORMULA-PACK/dp/B01MAYLL0E",
"thumbnail": "https://m.media-amazon.com/images/I/914EuM7KcRL._AC_UL320_.jpg",
"rating": 4.7,
"total_ratings": 1441,
"price": 19.84,
"list_price": null,
"price_per_unit": 0.51,
"typical_price": null,
"currency": "USD",
"currency_symbol": "$",
"offer_info": "$18.85 with Subscribe & Save discount",
"is_prime": false,
"shipping_info": [
"FREE deliverySun, Oct 27on $35 of items shipped by Amazon",
"Or fastest deliveryFri, Oct 25",
"Mint6.5 Ounce (Pack of 6)"
],
"retailer_badge": null,
"seller_info": "Seller rating: 4.9/5(1,287)",
"more_buying_choices": {
"heading": "More Buying Choices",
"offer_text": "$19.83(13 new offers)",
"offer_link": "https://www.amazon.com/gp/offer-listing/B01MAYLL0E/ref=sr_1_35_olp?keywords=toothpaste&crid=GXTNV125E657&sprefix=to%2Caps%2C292&dib_tag=se&dib=eyJ2IjoiMSJ9.5utI6RBikmkgyhO5cuGnQ8OMCPpHSM14PUpiapdtbYGyGF6Jm_bRmiLNDKHDj0L3A4lsP4AlFs2YiHdg3Rj8b1MN4NR0WI9UpWZVpP1h-ytvOCPLp_m1aljJTixVMeTxLFE0dJ74m9zJTEFXbxksRtQ4A_VZVzJjGntwN1e6U8iMCW7X6pyZYGoGx_GqBHW-WQpCZFx_lQ_JiwWAqQB6Nsphfjun2gr8Ti_GLR8O47EikEHGUvoR-E_oARQVMmAkTPdoMjFOYAWtNOxyR7zSPGIxmFBj52-BPjltD6MHjXg.gF74roZXIl7uWBzgps-I_lkO7Ixc6YEWKnwwmHAFCKM&qid=1729619711&sr=8-35"
},
"past_month_bought": "1K+"
},
{
"asin": "B00MUEGDOG",
"is_sponsored": false,
"brand": null,
"name": "Colgate 2 in 1 Whitening Icy Blast Toothpaste & Mouthwash, 4.6oz, 2pk ",
"url": "https://www.amazon.com/Colgate-Whitening-Blast-Toothpaste-Mouthwash/dp/B00MUEGDOG",
"thumbnail": "https://m.media-amazon.com/images/I/81FWNb6+qVL._AC_UL320_.jpg",
"rating": 4.6,
"total_ratings": 1653,
"price": 7.44,
"list_price": null,
"price_per_unit": 0.81,
"typical_price": null,
"currency": "USD",
"currency_symbol": "$",
"offer_info": "Save more with Subscribe & Save",
"is_prime": false,
"shipping_info": [
"FREE deliveryMon, Oct 28on $35 of items shipped by Amazon",
"Or fastest deliveryFri, Oct 25",
"Icy blast4.6 Ounce (Pack of 2)"
],
"retailer_badge": null,
"seller_info": "Seller rating: 4.9/5(870)",
"more_buying_choices": null,
"past_month_bought": "2K+"
},
{
"asin": "B08SF6Z4P4",
"is_sponsored": false,
"brand": null,
"name": "Crest Complete Whitening + Scope Toothpaste, 6.5 Ounce (5 Pack) ",
"url": "https://www.amazon.com/Crest-Complete-Whitening-Scope-Toothpaste/dp/B08SF6Z4P4",
"thumbnail": "https://m.media-amazon.com/images/I/71lGi5NnhxL._AC_UL320_.jpg",
"rating": 4.8,
"total_ratings": 1588,
"price": 19.74,
"list_price": null,
"price_per_unit": 0.61,
"typical_price": null,
"currency": "USD",
"currency_symbol": "$",
"offer_info": null,
"is_prime": false,
"shipping_info": [
"FREE deliveryWed, Oct 30",
"Mint6.5 Ounce (Pack of 5)"
],
"retailer_badge": null,
"seller_info": "Seller rating: 4.3/5(144)",
"more_buying_choices": {
"heading": "More Buying Choices",
"offer_text": "$19.40(25 new offers)",
"offer_link": "https://www.amazon.com/gp/offer-listing/B08SF6Z4P4/ref=sr_1_37_olp?keywords=toothpaste&crid=GXTNV125E657&sprefix=to%2Caps%2C292&dib_tag=se&dib=eyJ2IjoiMSJ9.5utI6RBikmkgyhO5cuGnQ8OMCPpHSM14PUpiapdtbYGyGF6Jm_bRmiLNDKHDj0L3A4lsP4AlFs2YiHdg3Rj8b1MN4NR0WI9UpWZVpP1h-ytvOCPLp_m1aljJTixVMeTxLFE0dJ74m9zJTEFXbxksRtQ4A_VZVzJjGntwN1e6U8iMCW7X6pyZYGoGx_GqBHW-WQpCZFx_lQ_JiwWAqQB6Nsphfjun2gr8Ti_GLR8O47EikEHGUvoR-E_oARQVMmAkTPdoMjFOYAWtNOxyR7zSPGIxmFBj52-BPjltD6MHjXg.gF74roZXIl7uWBzgps-I_lkO7Ixc6YEWKnwwmHAFCKM&qid=1729619711&sr=8-37"
},
"past_month_bought": "600+"
},
{
"asin": "B086LKDB31",
"is_sponsored": false,
"brand": null,
"name": "Colgate Optic White Charcoal Whitening Toothpaste, Cool Mint, Enamel-Safe with Fluoride, 2 Pack 4.2oz Tubes ",
"url": "https://www.amazon.com/Colgate-Optic-Whitening-Charcoal-Toothpaste/dp/B086LKDB31",
"thumbnail": "https://m.media-amazon.com/images/I/71xxXn7yGML._AC_UL320_.jpg",
"rating": 4.6,
"total_ratings": 3320,
"price": 8.68,
"list_price": 10.99,
"price_per_unit": 1.03,
"typical_price": null,
"currency": "USD",
"currency_symbol": "$",
"offer_info": "$8.25 with Subscribe & Save discount",
"is_prime": false,
"shipping_info": [
"FREE deliverySun, Oct 27on $35 of items shipped by Amazon",
"Or fastest deliveryFri, Oct 25",
"Mint4.2 Ounce (Pack of 2)"
],
"retailer_badge": "Limited time deal",
"seller_info": "Sold by Amazon",
"more_buying_choices": null,
"past_month_bought": "4K+"
},
{
"asin": "B099NR7W6D",
"is_sponsored": false,
"brand": null,
"name": "Crest Ultra Pro Health Gum Detoxify Tooth Paste (2-Pack) ",
"url": "https://www.amazon.com/Crest-Ultra-Health-Detoxify-2-Pack/dp/B099NR7W6D",
"thumbnail": "https://m.media-amazon.com/images/I/71Obs9a6tsL._AC_UL320_.jpg",
"rating": 4.8,
"total_ratings": 1552,
"price": 18.91,
"list_price": null,
"price_per_unit": 1.82,
"typical_price": null,
"currency": "USD",
"currency_symbol": "$",
"offer_info": null,
"is_prime": false,
"shipping_info": [
"FREE deliveryMon, Oct 28on $35 of items shipped by Amazon",
"Unflavored5.2 Ounce (Pack of 2)"
],
"retailer_badge": null,
"seller_info": "Seller rating: 4.9/5(2,396)",
"more_buying_choices": {
"heading": "More Buying Choices",
"offer_text": "$16.99(21 new offers)",
"offer_link": "https://www.amazon.com/gp/offer-listing/B099NR7W6D/ref=sr_1_39_olp?keywords=toothpaste&crid=GXTNV125E657&sprefix=to%2Caps%2C292&dib_tag=se&dib=eyJ2IjoiMSJ9.5utI6RBikmkgyhO5cuGnQ8OMCPpHSM14PUpiapdtbYGyGF6Jm_bRmiLNDKHDj0L3A4lsP4AlFs2YiHdg3Rj8b1MN4NR0WI9UpWZVpP1h-ytvOCPLp_m1aljJTixVMeTxLFE0dJ74m9zJTEFXbxksRtQ4A_VZVzJjGntwN1e6U8iMCW7X6pyZYGoGx_GqBHW-WQpCZFx_lQ_JiwWAqQB6Nsphfjun2gr8Ti_GLR8O47EikEHGUvoR-E_oARQVMmAkTPdoMjFOYAWtNOxyR7zSPGIxmFBj52-BPjltD6MHjXg.gF74roZXIl7uWBzgps-I_lkO7Ixc6YEWKnwwmHAFCKM&qid=1729619711&sr=8-39"
},
"past_month_bought": "900+"
},
{
"asin": "B0CPKNH9PS",
"is_sponsored": false,
"brand": null,
"name": "Crest 3D White Brilliance Vibrant Peppermint Teeth Whitening Toothpaste, 4.6 oz Pack of 3, Anticavity Fluoride Toothpaste, 100% More Surface Stain Removal, 24 Hour Active Stain Prevention ",
"url": "https://www.amazon.com/Crest-Brilliance-Peppermint-Toothpaste-Anticavity/dp/B0CPKNH9PS",
"thumbnail": "https://m.media-amazon.com/images/I/71C06ZR26BL._AC_UL320_.jpg",
"rating": 4.8,
"total_ratings": 1519,
"price": 18.97,
"list_price": 19.99,
"price_per_unit": 1.37,
"typical_price": null,
"currency": "USD",
"currency_symbol": "$",
"offer_info": "Save more with Subscribe & Save",
"is_prime": false,
"shipping_info": [
"FREE deliverySun, Oct 27on $35 of items shipped by Amazon",
"Or fastest deliveryFri, Oct 25",
"Peppermint4.6 Ounce (Pack of 3)"
],
"retailer_badge": null,
"seller_info": "Sold by Amazon",
"more_buying_choices": {
"heading": "More Buying Choices",
"offer_text": "$18.95(11 new offers)",
"offer_link": "https://www.amazon.com/gp/offer-listing/B0CPKNH9PS/ref=sr_1_40_olp?keywords=toothpaste&crid=GXTNV125E657&sprefix=to%2Caps%2C292&dib_tag=se&dib=eyJ2IjoiMSJ9.5utI6RBikmkgyhO5cuGnQ8OMCPpHSM14PUpiapdtbYGyGF6Jm_bRmiLNDKHDj0L3A4lsP4AlFs2YiHdg3Rj8b1MN4NR0WI9UpWZVpP1h-ytvOCPLp_m1aljJTixVMeTxLFE0dJ74m9zJTEFXbxksRtQ4A_VZVzJjGntwN1e6U8iMCW7X6pyZYGoGx_GqBHW-WQpCZFx_lQ_JiwWAqQB6Nsphfjun2gr8Ti_GLR8O47EikEHGUvoR-E_oARQVMmAkTPdoMjFOYAWtNOxyR7zSPGIxmFBj52-BPjltD6MHjXg.gF74roZXIl7uWBzgps-I_lkO7Ixc6YEWKnwwmHAFCKM&qid=1729619711&sr=8-40"
},
"past_month_bought": "20K+"
},
{
"asin": "B0CGKYKZPG",
"is_sponsored": false,
"brand": null,
"name": "Crest 3D White Advanced Teeth Whitening Toothpaste, Arctic Fresh, 3.3 oz, Pack of 3 ",
"url": "https://www.amazon.com/Crest-Advanced-Whitening-Toothpaste-Arctic/dp/B0CGKYKZPG",
"thumbnail": "https://m.media-amazon.com/images/I/714sIsOnEQL._AC_UL320_.jpg",
"rating": 4.8,
"total_ratings": 696,
"price": 12.97,
"list_price": 13.99,
"price_per_unit": 1.31,
"typical_price": null,
"currency": "USD",
"currency_symbol": "$",
"offer_info": "Save more with Subscribe & Save",
"is_prime": false,
"shipping_info": [
"FREE deliverySun, Oct 27on $35 of items shipped by Amazon",
"Or fastest deliveryFri, Oct 25",
"Arctic Fresh3.3 Ounce (Pack of 3)"
],
"retailer_badge": null,
"seller_info": "Sold by Amazon",
"more_buying_choices": null,
"past_month_bought": "8K+"
},
{
"asin": "B09KP3JMH6",
"is_sponsored": false,
"brand": null,
"name": "Burt's Bees Toothpaste, Natural Flavor, Fluoride-Free, Purely White, Zen Peppermint, 4.7 oz, Pack of 3 ",
"url": "https://www.amazon.com/Burts-Bees-Toothpaste-Fluoride-Free-Peppermint/dp/B09KP3JMH6",
"thumbnail": "https://m.media-amazon.com/images/I/610fNs9t+DL._AC_UL320_.jpg",
"rating": 4.6,
"total_ratings": 4797,
"price": 14.97,
"list_price": 19.99,
"price_per_unit": 1.06,
"typical_price": null,
"currency": "USD",
"currency_symbol": "$",
"offer_info": "Save more with Subscribe & Save",
"is_prime": false,
"shipping_info": [
"FREE deliverySun, Oct 27on $35 of items shipped by Amazon",
"Or fastest deliveryFri, Oct 25",
"Peppermint4.7 Ounce (Pack of 3)"
],
"retailer_badge": null,
"seller_info": "Sold by Amazon",
"more_buying_choices": null,
"past_month_bought": "10K+"
},
{
"asin": "B095Z5PKDJ",
"is_sponsored": false,
"brand": null,
"name": "Sensodyne Sensitivity & Gum Sensitive Toothpaste for Gingivitis, Sensitive Teeth Treatment, Clean & Fresh - 3.4 Ounce (Pack of 4) ",
"url": "https://www.amazon.com/Sensodyne-Sensitivity-Sensitive-Toothpaste-Gingivitis/dp/B095Z5PKDJ",
"thumbnail": "https://m.media-amazon.com/images/I/81Rnu2joVhL._AC_UL320_.jpg",
"rating": 4.7,
"total_ratings": 5580,
"price": 21.28,
"list_price": 24.99,
"price_per_unit": 1.56,
"typical_price": null,
"currency": "USD",
"currency_symbol": "$",
"offer_info": "$20.22 with Subscribe & Save discountwhen you subscribeExtra 20% offwhen you subscribe",
"is_prime": false,
"shipping_info": [
"FREE deliverySun, Oct 27on $35 of items shipped by Amazon",
"Or fastest deliveryFri, Oct 25",
"Mint3.4 Ounce (Pack of 4)"
],
"retailer_badge": null,
"seller_info": "Sold by Amazon",
"more_buying_choices": null,
"past_month_bought": "10K+"
},
{
"asin": "B0CDY1C8RN",
"is_sponsored": false,
"brand": null,
"name": "Sensodyne Repair and Protect Mint Toothpaste, Toothpaste for Sensitive Teeth and Cavity Prevention, 3.4 oz (Pack of 3) ",
"url": "https://www.amazon.com/Sensodyne-Protect-Toothpaste-Sensitive-Prevention/dp/B0CDY1C8RN",
"thumbnail": "https://m.media-amazon.com/images/I/61t6NDH2qbL._AC_UL320_.jpg",
"rating": 4.7,
"total_ratings": 113,
"price": 26.28,
"list_price": null,
"price_per_unit": null,
"typical_price": null,
"currency": "USD",
"currency_symbol": "$",
"offer_info": null,
"is_prime": false,
"shipping_info": [
"FREE deliveryOct 25 - 29",
"Or fastest deliveryOct 24 - 28",
"Mint3.4 Ounce (Pack of 3)"
],
"retailer_badge": null,
"seller_info": "Seller rating: 4.6/5(55)",
"more_buying_choices": null,
"past_month_bought": "1K+"
},
{
"asin": "B0B9G51RWN",
"is_sponsored": false,
"brand": null,
"name": "Colgate Total Plaque Pro Release Whitening Toothpaste, Whitening Anticavity Toothpaste, Helps Reduce Plaque and Whitens Teeth, 1 Pack, 3.0 Oz Tube ",
"url": "https://www.amazon.com/Colgate-Plaque-Release-Whitening-Toothpaste/dp/B0B9G51RWN",
"thumbnail": "https://m.media-amazon.com/images/I/61wl-tex5ZL._AC_UL320_.jpg",
"rating": 4.6,
"total_ratings": 7217,
"price": 5.96,
"list_price": null,
"price_per_unit": 1.99,
"typical_price": null,
"currency": "USD",
"currency_symbol": "$",
"offer_info": "$5.66 with Subscribe & Save discount",
"is_prime": false,
"shipping_info": [
"FREE deliverySun, Oct 27on $35 of items shipped by Amazon",
"Or fastest deliveryFri, Oct 25",
"Whitening3 Ounce (Pack of 1)"
],
"retailer_badge": null,
"seller_info": "Sold by Amazon",
"more_buying_choices": {
"heading": "More Buying Choices",
"offer_text": "$5.50(19 new offers)",
"offer_link": "https://www.amazon.com/gp/offer-listing/B0B9G51RWN/ref=sr_1_45_olp?keywords=toothpaste&crid=GXTNV125E657&sprefix=to%2Caps%2C292&dib_tag=se&dib=eyJ2IjoiMSJ9.5utI6RBikmkgyhO5cuGnQ8OMCPpHSM14PUpiapdtbYGyGF6Jm_bRmiLNDKHDj0L3A4lsP4AlFs2YiHdg3Rj8b1MN4NR0WI9UpWZVpP1h-ytvOCPLp_m1aljJTixVMeTxLFE0dJ74m9zJTEFXbxksRtQ4A_VZVzJjGntwN1e6U8iMCW7X6pyZYGoGx_GqBHW-WQpCZFx_lQ_JiwWAqQB6Nsphfjun2gr8Ti_GLR8O47EikEHGUvoR-E_oARQVMmAkTPdoMjFOYAWtNOxyR7zSPGIxmFBj52-BPjltD6MHjXg.gF74roZXIl7uWBzgps-I_lkO7Ixc6YEWKnwwmHAFCKM&qid=1729619711&sr=8-45"
},
"past_month_bought": "6K+"
},
{
"asin": "B0CGL1QT25",
"is_sponsored": false,
"brand": null,
"name": "Crest 3D White Advanced Charcoal Teeth Whitening Toothpaste with Fluoride, 3.3 oz, Pack of 3 ",
"url": "https://www.amazon.com/Crest-Advanced-Charcoal-Whitening-Toothpaste/dp/B0CGL1QT25",
"thumbnail": "https://m.media-amazon.com/images/I/61U7iGZuL6L._AC_UL320_.jpg",
"rating": 4.7,
"total_ratings": 578,
"price": 13.46,
"list_price": null,
"price_per_unit": 1.36,
"typical_price": null,
"currency": "USD",
"currency_symbol": "$",
"offer_info": "Save more with Subscribe & Save",
"is_prime": false,
"shipping_info": [
"FREE deliverySun, Oct 27on $35 of items shipped by Amazon",
"Or fastest deliveryFri, Oct 25",
"Charcoal3.3 Ounce (Pack of 3)"
],
"retailer_badge": null,
"seller_info": "Sold by Amazon",
"more_buying_choices": null,
"past_month_bought": "9K+"
},
{
"asin": "B017ME4C5U",
"is_sponsored": false,
"brand": null,
"name": "Crest Cavity Protection Regular Toothpaste, 2.9 oz - Pack of 4 ",
"url": "https://www.amazon.com/Crest-Cavity-Protection-Regular-Toothpaste/dp/B017ME4C5U",
"thumbnail": "https://m.media-amazon.com/images/I/41wKR+Mh8lL._AC_UL320_.jpg",
"rating": 4.5,
"total_ratings": 953,
"price": 13.21,
"list_price": null,
"price_per_unit": 1.14,
"typical_price": 13.98,
"currency": "USD",
"currency_symbol": "$",
"offer_info": "Save more with Subscribe & Save",
"is_prime": false,
"shipping_info": [
"FREE deliverySun, Oct 27on $35 of items shipped by Amazon",
"Or fastest deliveryFri, Oct 25",
"Regular2.9 Ounce (Pack of 4)"
],
"retailer_badge": null,
"seller_info": "Seller rating: 4.7/5(147)",
"more_buying_choices": null,
"past_month_bought": "600+"
},
{
"asin": "B0BP5S4CBB",
"is_sponsored": false,
"brand": null,
"name": "Burt's Bees Toothpaste Complete Multi Care, 4.7 oz, Pack of 3 ",
"url": "https://www.amazon.com/Burts-Bees-Toothpaste-Complete-Multi/dp/B0BP5S4CBB",
"thumbnail": "https://m.media-amazon.com/images/I/61IIMtPuJbL._AC_UL320_.jpg",
"rating": 4.5,
"total_ratings": 135,
"price": 18.09,
"list_price": null,
"price_per_unit": 0.43,
"typical_price": 26.0,
"currency": "USD",
"currency_symbol": "$",
"offer_info": null,
"is_prime": false,
"shipping_info": [
"FREE delivery on $35 shipped by Amazon.",
"Peppermint14.1 Fl Oz (Pack of 3)"
],
"retailer_badge": null,
"seller_info": "Seller rating: 4.8/5(142)",
"more_buying_choices": {
"heading": "More Buying Choices",
"offer_text": "$17.99(33 new offers)",
"offer_link": "https://www.amazon.com/gp/offer-listing/B0BP5S4CBB/ref=sr_1_48_olp?keywords=toothpaste&crid=GXTNV125E657&sprefix=to%2Caps%2C292&dib_tag=se&dib=eyJ2IjoiMSJ9.5utI6RBikmkgyhO5cuGnQ8OMCPpHSM14PUpiapdtbYGyGF6Jm_bRmiLNDKHDj0L3A4lsP4AlFs2YiHdg3Rj8b1MN4NR0WI9UpWZVpP1h-ytvOCPLp_m1aljJTixVMeTxLFE0dJ74m9zJTEFXbxksRtQ4A_VZVzJjGntwN1e6U8iMCW7X6pyZYGoGx_GqBHW-WQpCZFx_lQ_JiwWAqQB6Nsphfjun2gr8Ti_GLR8O47EikEHGUvoR-E_oARQVMmAkTPdoMjFOYAWtNOxyR7zSPGIxmFBj52-BPjltD6MHjXg.gF74roZXIl7uWBzgps-I_lkO7Ixc6YEWKnwwmHAFCKM&qid=1729619711&sr=8-48"
},
"past_month_bought": "400+"
}
],
"meta_data": {
"brands_links": [
{
"name": "Colgate",
"url": "https://www.amazon.com/s?k=toothpaste&rh=n%3A3760901%2Cp_123%3A308688&dc&crid=GXTNV125E657&qid=1729619711&rnid=85457740011&sprefix=to%2Caps%2C292&ref=sr_nr_p_123_1&ds=v1%3AEM7AhpSbgNvWSkP6IcYHJN3%2F%2B4oZ9P4BLxyErK%2FE6ko"
},
{
"name": "Crest",
"url": "https://www.amazon.com/s?k=toothpaste&rh=n%3A3760901%2Cp_123%3A232426&dc&crid=GXTNV125E657&qid=1729619711&rnid=85457740011&sprefix=to%2Caps%2C292&ref=sr_nr_p_123_2&ds=v1%3Ab42XqK63B6AiyPAuT69PyQ7G%2FblY%2BtNkd8mMiesYMpU"
},
{
"name": "Sensodyne Pronamel",
"url": "https://www.amazon.com/s?k=toothpaste&rh=n%3A3760901%2Cp_123%3A242095&dc&crid=GXTNV125E657&qid=1729619711&rnid=85457740011&sprefix=to%2Caps%2C292&ref=sr_nr_p_123_3&ds=v1%3AZax9ehzGx0FspuBQJhCs2T5H%2BFRoRgcW0%2F33J%2B6EK84"
},
{
"name": "Sensodyne",
"url": "https://www.amazon.com/s?k=toothpaste&rh=n%3A3760901%2Cp_123%3A242098&dc&crid=GXTNV125E657&qid=1729619711&rnid=85457740011&sprefix=to%2Caps%2C292&ref=sr_nr_p_123_4&ds=v1%3A1I5htWpbmR6FLH3o0zVctyxAoqaAgyzLYyB012IgH84"
},
{
"name": "Arm & Hammer",
"url": "https://www.amazon.com/s?k=toothpaste&rh=n%3A3760901%2Cp_123%3A137698&dc&crid=GXTNV125E657&qid=1729619711&rnid=85457740011&sprefix=to%2Caps%2C292&ref=sr_nr_p_123_5&ds=v1%3AQdvLjZAKdd495pL1xKMQcjR%2FCiGa%2BgxrH7tS5k%2BaPpY"
},
{
"name": "Tom's of Maine",
"url": "https://www.amazon.com/s?k=toothpaste&rh=n%3A3760901%2Cp_123%3A317447&dc&crid=GXTNV125E657&qid=1729619711&rnid=85457740011&sprefix=to%2Caps%2C292&ref=sr_nr_p_123_6&ds=v1%3AHN%2BwYa%2F0FOBk0YQ8t6PhJTABV7R54azweuDeF8q0FkA"
},
{
"name": "hello",
"url": "https://www.amazon.com/s?k=toothpaste&rh=n%3A3760901%2Cp_123%3A478665&dc&crid=GXTNV125E657&qid=1729619711&rnid=85457740011&sprefix=to%2Caps%2C292&ref=sr_nr_p_123_7&ds=v1%3A0OINoUZ4XmSOtrJ%2B1MxNt9EX9I8jwW3zpFpDiBNNZrA"
},
{
"name": "Parodontax",
"url": "https://www.amazon.com/s?k=toothpaste&rh=n%3A3760901%2Cp_123%3A320727&dc&crid=GXTNV125E657&qid=1729619711&rnid=85457740011&sprefix=to%2Caps%2C292&ref=sr_nr_p_123_8&ds=v1%3ARW4JWrYwgf3bngbvixRQudWMASxwS1vW9DCnmaB%2BHCE"
},
{
"name": "Aquafresh",
"url": "https://www.amazon.com/s?k=toothpaste&rh=n%3A3760901%2Cp_123%3A242096&dc&crid=GXTNV125E657&qid=1729619711&rnid=85457740011&sprefix=to%2Caps%2C292&ref=sr_nr_p_123_9&ds=v1%3AJSGqRu5FnzOUdWjTB%2BgiCRC3xweCdKw%2Bu0DGO3Urll4"
},
{
"name": "365 by Whole Foods Market",
"url": "https://www.amazon.com/s?k=toothpaste&rh=n%3A3760901%2Cp_123%3A613378&dc&crid=GXTNV125E657&qid=1729619711&rnid=85457740011&sprefix=to%2Caps%2C292&ref=sr_nr_p_123_10&ds=v1%3A3V4FIHlpiP6PQ8SNwUT%2BB9GL76TsXRarVStPGS%2B1%2FAE"
},
{
"name": "NOW Foods",
"url": "https://www.amazon.com/s?k=toothpaste&rh=n%3A3760901%2Cp_123%3A231615&dc&crid=GXTNV125E657&qid=1729619711&rnid=85457740011&sprefix=to%2Caps%2C292&ref=sr_nr_p_123_11&ds=v1%3A3dEH0Nj1HlEiHQ26BxPMb1MmWf2%2FeCkWoVB6JPYttOQ"
},
{
"name": "Desert Essence",
"url": "https://www.amazon.com/s?k=toothpaste&rh=n%3A3760901%2Cp_123%3A245392&dc&crid=GXTNV125E657&qid=1729619711&rnid=85457740011&sprefix=to%2Caps%2C292&ref=sr_nr_p_123_12&ds=v1%3AWNP%2BE%2Fa3VwnH9qOSpnZCreNS0Q0LUNMKJ6ZxMuglsjM"
},
{
"name": "CloSYS",
"url": "https://www.amazon.com/s?k=toothpaste&rh=n%3A3760901%2Cp_123%3A389193&dc&crid=GXTNV125E657&qid=1729619711&rnid=85457740011&sprefix=to%2Caps%2C292&ref=sr_nr_p_123_13&ds=v1%3Atg%2Fnvy1HrvYJYvAMFeZfOXjg%2FjNjUOT5dL099FVAZbA"
},
{
"name": "ACT",
"url": "https://www.amazon.com/s?k=toothpaste&rh=n%3A3760901%2Cp_123%3A398149&dc&crid=GXTNV125E657&qid=1729619711&rnid=85457740011&sprefix=to%2Caps%2C292&ref=sr_nr_p_123_14&ds=v1%3A%2F05P2mOCquMs4aG4yZRz%2FrsrPe91SWVV409XzmeN6Bs"
},
{
"name": "Orajel",
"url": "https://www.amazon.com/s?k=toothpaste&rh=n%3A3760901%2Cp_123%3A234162&dc&crid=GXTNV125E657&qid=1729619711&rnid=85457740011&sprefix=to%2Caps%2C292&ref=sr_nr_p_123_15&ds=v1%3ATttRbySj50uv3IioIa%2F68RP5gwEFVeg4JL00qZmZc6M"
},
{
"name": "biotène",
"url": "https://www.amazon.com/s?k=toothpaste&rh=n%3A3760901%2Cp_123%3A242099&dc&crid=GXTNV125E657&qid=1729619711&rnid=85457740011&sprefix=to%2Caps%2C292&ref=sr_nr_p_123_16&ds=v1%3ArmkLjGlaLppt3A36fjoW8YFiVCBC0F60j01jme59rrg"
},
{
"name": "JASON",
"url": "https://www.amazon.com/s?k=toothpaste&rh=n%3A3760901%2Cp_123%3A233824&dc&crid=GXTNV125E657&qid=1729619711&rnid=85457740011&sprefix=to%2Caps%2C292&ref=sr_nr_p_123_17&ds=v1%3ADfdPpOZUq5JWiHrBmPOriyDOJQOlQQBI8vztN4gagFM"
},
{
"name": "TheraBreath",
"url": "https://www.amazon.com/s?k=toothpaste&rh=n%3A3760901%2Cp_123%3A307155&dc&crid=GXTNV125E657&qid=1729619711&rnid=85457740011&sprefix=to%2Caps%2C292&ref=sr_nr_p_123_18&ds=v1%3Ah4N7bd%2BEBBS8I9371YLag5%2BdIRk1VIpA28Lrti1SWLI"
},
{
"name": "REMBRANDT",
"url": "https://www.amazon.com/s?k=toothpaste&rh=n%3A3760901%2Cp_123%3A310057&dc&crid=GXTNV125E657&qid=1729619711&rnid=85457740011&sprefix=to%2Caps%2C292&ref=sr_nr_p_123_19&ds=v1%3AfYDGkuK0tW3OO1f6%2BhWtksnraj8fRylpPC4EKvSjtKM"
},
{
"name": "3M",
"url": "https://www.amazon.com/s?k=toothpaste&rh=n%3A3760901%2Cp_123%3A237712&dc&crid=GXTNV125E657&qid=1729619711&rnid=85457740011&sprefix=to%2Caps%2C292&ref=sr_nr_p_123_20&ds=v1%3A6MKV0mAacWwJdyHtqhwjaUGME4%2BkDUEHCLuRYGesbx4"
},
{
"name": "Opalescence",
"url": "https://www.amazon.com/s?k=toothpaste&rh=n%3A3760901%2Cp_123%3A362740&dc&crid=GXTNV125E657&qid=1729619711&rnid=85457740011&sprefix=to%2Caps%2C292&ref=sr_nr_p_123_21&ds=v1%3AN6IMjnsmMXTBr7WTYqnBAy2WF71GMm0rBjdd8MCsSYM"
},
{
"name": "Auromere",
"url": "https://www.amazon.com/s?k=toothpaste&rh=n%3A3760901%2Cp_123%3A265226&dc&crid=GXTNV125E657&qid=1729619711&rnid=85457740011&sprefix=to%2Caps%2C292&ref=sr_nr_p_123_22&ds=v1%3AFSOuFRpsgu%2F0ArmVM%2BhGgJAVLmaZXN%2FaqxJe9wrFqqM"
},
{
"name": "Lumineux",
"url": "https://www.amazon.com/s?k=toothpaste&rh=n%3A3760901%2Cp_123%3A341813&dc&crid=GXTNV125E657&qid=1729619711&rnid=85457740011&sprefix=to%2Caps%2C292&ref=sr_nr_p_123_23&ds=v1%3Ad8vdPBR20C8UpX5nipy5paTjGNRZO63Cj61YTd1Iqi0"
},
{
"name": "Essential Oxygen",
"url": "https://www.amazon.com/s?k=toothpaste&rh=n%3A3760901%2Cp_123%3A487916&dc&crid=GXTNV125E657&qid=1729619711&rnid=85457740011&sprefix=to%2Caps%2C292&ref=sr_nr_p_123_24&ds=v1%3A1Ka%2BbzgDj%2FfqKuzAXjKa5QTXjwdXGQDw%2B6zeeNzQl1w"
},
{
"name": "Euthymol",
"url": "https://www.amazon.com/s?k=toothpaste&rh=n%3A3760901%2Cp_123%3A449640&dc&crid=GXTNV125E657&qid=1729619711&rnid=85457740011&sprefix=to%2Caps%2C292&ref=sr_nr_p_123_25&ds=v1%3Aqc%2FZlY7V%2BLAQfi%2Far1xu8QE8qxMF4erid6KfbCX6iio"
},
{
"name": "Uncle Harry's",
"url": "https://www.amazon.com/s?k=toothpaste&rh=n%3A3760901%2Cp_123%3A411566&dc&crid=GXTNV125E657&qid=1729619711&rnid=85457740011&sprefix=to%2Caps%2C292&ref=sr_nr_p_123_26&ds=v1%3Ah3DfSGvZbOsUYIsi8r%2BajsUoDwg6CmIdmrrpMdMiak0"
},
{
"name": "Dental Herb Company",
"url": "https://www.amazon.com/s?k=toothpaste&rh=n%3A3760901%2Cp_123%3A401231&dc&crid=GXTNV125E657&qid=1729619711&rnid=85457740011&sprefix=to%2Caps%2C292&ref=sr_nr_p_123_27&ds=v1%3A4xRw1xpFOOwS%2Fpr%2Bd3kyvygaw%2Flj7%2BiRvlqwXNiG%2Fbw"
},
{
"name": "CariFree",
"url": "https://www.amazon.com/s?k=toothpaste&rh=n%3A3760901%2Cp_123%3A51280&dc&crid=GXTNV125E657&qid=1729619711&rnid=85457740011&sprefix=to%2Caps%2C292&ref=sr_nr_p_123_28&ds=v1%3ABS3JqXfmm5pt3mb%2B2DkzoTA9WYaDzeM5sw%2FFz%2B60m9c"
},
{
"name": "SmartMouth",
"url": "https://www.amazon.com/s?k=toothpaste&rh=n%3A3760901%2Cp_123%3A393610&dc&crid=GXTNV125E657&qid=1729619711&rnid=85457740011&sprefix=to%2Caps%2C292&ref=sr_nr_p_123_29&ds=v1%3AZ0Vpp4nUffK40KEKiEEIQ6SxN7BsOJhH6aWry7jc%2Fa8"
},
{
"name": "RADIUS",
"url": "https://www.amazon.com/s?k=toothpaste&rh=n%3A3760901%2Cp_123%3A264856&dc&crid=GXTNV125E657&qid=1729619711&rnid=85457740011&sprefix=to%2Caps%2C292&ref=sr_nr_p_123_30&ds=v1%3A5Pncu9ka26SYTwr1vq2QXIS4Qzo52CfJ8RpsO76av2U"
},
{
"name": "Pepsodent",
"url": "https://www.amazon.com/s?k=toothpaste&rh=n%3A3760901%2Cp_123%3A371319&dc&crid=GXTNV125E657&qid=1729619711&rnid=85457740011&sprefix=to%2Caps%2C292&ref=sr_nr_p_123_31&ds=v1%3AEB7jfS60SawXNGAd270us4PitxP6Ajg7WYY8XPQtiYg"
},
{
"name": "Biorepair",
"url": "https://www.amazon.com/s?k=toothpaste&rh=n%3A3760901%2Cp_123%3A189598&dc&crid=GXTNV125E657&qid=1729619711&rnid=85457740011&sprefix=to%2Caps%2C292&ref=sr_nr_p_123_32&ds=v1%3AQWUgpLVU%2FwXvc9BWCovKRXMKaC%2BuR95GQVE2xpqeRiM"
},
{
"name": "Dynarex",
"url": "https://www.amazon.com/s?k=toothpaste&rh=n%3A3760901%2Cp_123%3A144019&dc&crid=GXTNV125E657&qid=1729619711&rnid=85457740011&sprefix=to%2Caps%2C292&ref=sr_nr_p_123_33&ds=v1%3A5PuWy8qEYAFNF8%2FDscwuiVqwrQZiJHXwUVt8o2eSFyQ"
},
{
"name": "ECO-DENT",
"url": "https://www.amazon.com/s?k=toothpaste&rh=n%3A3760901%2Cp_123%3A232495&dc&crid=GXTNV125E657&qid=1729619711&rnid=85457740011&sprefix=to%2Caps%2C292&ref=sr_nr_p_123_34&ds=v1%3A7P76i9S%2FlL9VSSdf197vroOl7AVNSg7ijA7%2FWXrPhPg"
},
{
"name": "Supersmile",
"url": "https://www.amazon.com/s?k=toothpaste&rh=n%3A3760901%2Cp_123%3A312238&dc&crid=GXTNV125E657&qid=1729619711&rnid=85457740011&sprefix=to%2Caps%2C292&ref=sr_nr_p_123_35&ds=v1%3AnQk%2FnCFSgl5zOygWg62FqFBiOFjZHp5EtDQH14oeNPs"
},
{
"name": "AIM",
"url": "https://www.amazon.com/s?k=toothpaste&rh=n%3A3760901%2Cp_123%3A87257&dc&crid=GXTNV125E657&qid=1729619711&rnid=85457740011&sprefix=to%2Caps%2C292&ref=sr_nr_p_123_36&ds=v1%3ANsbvWMtI3E523EOSTxxkr46qTIRtW%2B10MIzTkvHI8VA"
},
{
"name": "FRESHMINT",
"url": "https://www.amazon.com/s?k=toothpaste&rh=n%3A3760901%2Cp_123%3A587845&dc&crid=GXTNV125E657&qid=1729619711&rnid=85457740011&sprefix=to%2Caps%2C292&ref=sr_nr_p_123_37&ds=v1%3AugS4i%2FtFs%2BcxPT2BgG%2FNTBwHus%2BhwQfdzu4eVXCyWHo"
},
{
"name": "MOUTHWATCHERS",
"url": "https://www.amazon.com/s?k=toothpaste&rh=n%3A3760901%2Cp_123%3A191749&dc&crid=GXTNV125E657&qid=1729619711&rnid=85457740011&sprefix=to%2Caps%2C292&ref=sr_nr_p_123_38&ds=v1%3AHEq11JDx0qTFI2l0UD4kVXRn%2BeCO6yC8p71f69Hr8MY"
},
{
"name": "Wellnesse",
"url": "https://www.amazon.com/s?k=toothpaste&rh=n%3A3760901%2Cp_123%3A931795&dc&crid=GXTNV125E657&qid=1729619711&rnid=85457740011&sprefix=to%2Caps%2C292&ref=sr_nr_p_123_39&ds=v1%3AxCM%2FWlJzuQx%2F4fIFFkHg1AdUSMJ3rnqADf4MrIufUPs"
},
{
"name": "ARK NATURALS",
"url": "https://www.amazon.com/s?k=toothpaste&rh=n%3A3760901%2Cp_123%3A392560&dc&crid=GXTNV125E657&qid=1729619711&rnid=85457740011&sprefix=to%2Caps%2C292&ref=sr_nr_p_123_40&ds=v1%3AVDotGWevvG3lIn1W9f1MUq8IpIAccwZH2UNnBbTHrw0"
},
{
"name": "Top Brands",
"url": "https://www.amazon.com/s?k=toothpaste&rh=n%3A3760901%2Cp_n_feature_forty-one_browse-bin%3A119653281011&dc&crid=GXTNV125E657&qid=1729619711&rnid=119653280011&sprefix=to%2Caps%2C292&ref=sr_nr_p_n_feature_forty-one_browse-bin_1&ds=v1%3AUVVnldcFK014LkAUgyizNLUKDCk3WCADkmnnWEZ4nh0"
}
],
"zipcode": "68501"
},
"remaining_credits": 964
}
Request Cost
1 credit per request.
Supported Countries
The countries we support to scrape Amazon's search results from are listed below:
Country | Domain | Code |
---|---|---|
USA | Amazon.com | us |
Canada | Amazon.ca | ca |
UK | Amazon.co.uk | gb |
France | Amazon.fr | fr |
Germany | Amazon.de | de |
Spain | Amazon.es | es |
Japan | Amazon.co.jp | jp |
Australia | Amazon.au | au |
India | Amazon.in | in |
Brazil | Amazon.br | br |
If you don't see the country you need data from, please contact us at support@unwrangle.com.
Support
If you want to add a parameter to our response, or have any question or feedback, please write to us at support@unwrangle.com