Amazon Product Data API
Scrape detailed Amazon product information instantly with a simple API call
Get instant access to Amazon product data at budget-friendly rates:
A GET request to our /api/getter/?platform="amazon_detail"
endpoint allows you to scrape product data for any product listing on Amazon's marketplaces in real-time.
Example
Here's how you can scrape product data for this product with our API:
1 |
|
1 2 3 4 5 |
|
1 2 3 |
|
1 2 3 4 5 6 |
|
1 2 3 4 5 6 |
|
In this example, we've provided the product's URL. Alternatively, you can provide the product's ASIN instead.
Query Parameters
As you can see in the example above, our endpoint needs the following query parameters:
Product URL
url
Required if asin
not provided
Product listing's URL on Amazon. Remove unnecessary query parameters and encode the URL. If not provided, asin
and country_code
must be specified.
ASIN
asin
Required if url
not provided
The Amazon Standard Identification Number (ASIN) for the product. Required if url
is not provided.
Country Code
country_code
Required if asin
provided, otherwise optional
The 2-letter country code for the Amazon marketplace. Defaults to us
if not provided. See the Supported Countries section below for valid values.
Other Required Parameters
platform
Required
Specifies the scraping engine you wish to invoke. In this case, the value should be amazon_detail.
api_key
Required
Your account's token—which can be obtained by signing up here.
Note
The value of the query parameter url
must be URL or percent encoded. If you're using Python, this can be done with the function urlencode
.
Results
The response will include the following attributes for the product:
Attributes Returned | Data Type | Information Represented |
---|---|---|
name | string | Name of product listing |
brand | string | Brand of product listing |
url | string | URL of the product listing |
asin | string | Product's unique identifier (ASIN) on Amazon |
deal_badge | string | Deal badge text if product is on sale |
listing_id | string | Same as ASIN, the product's unique identifier |
price | float | Current price of product |
price_reduced | float | Original price if product is on sale |
price_per_unit | float | Price per unit if available |
currency | string | Currency code of the price |
currency_symbol | string | Currency symbol of the price |
buying_offers | array | List of buying offers with offer type, description, price and seller |
buying_offers.offer_type | string | Type of buying offer |
buying_offers.offer_description | string | Description of buying offer |
buying_offers.price | float | Price of buying offer |
buying_offers.seller | string | Seller name for buying offer |
other_sellers | object | Information about other sellers |
other_sellers.text | string | Text about other sellers |
other_sellers.link | string | Link to other sellers page |
rating | float | Average rating of product |
total_ratings | int | Total number of ratings received |
past_month_sales | string | Estimated sales in the past month |
is_prime | boolean | Whether the product is Prime eligible |
shipping_info | array | Array of shipping information strings |
delivery_zipcode | string | Delivery zipcode used |
addon_offers | array | List of addon offers |
pay_later_offers | array | List of pay later offers |
max_quantity | int | Max quantity purchasable for any user |
variant | object | Variant information for the specific product listing |
variant.{type} | object | Details for variant type (service, color, size, etc.) |
variant.{type}.name | string | Name of variant |
variant.{type}.asin | string | ASIN of variant |
variant.{type}.in_stock | boolean | Whether variant is in stock |
variant.{type}.url | string | URL of variant |
categories | array | List of categories the product belongs to |
categories.name | string | Category name |
categories.url | string | Category URL |
main_image | string | URL of main image |
images | array | List of product listing's image URLs |
labelled_images | array | List of labelled images |
labelled_images.url | string | URL of labelled image |
labelled_images.variant | string | Variant of labelled image |
overview | array | List of product's key features from the overview section |
overview.name | string | Name of overview feature |
overview.value | string | Value of overview feature |
features | array | List of product's features |
details_table | array | List of product's specifications |
details_table.name | string | Name of specification |
details_table.value | string | Value of specification |
technical_details | array | List of product's technical details |
bestseller_ranks | array | List of product's bestseller ranks |
bestseller_ranks.name | string | Category name for rank |
bestseller_ranks.url | string | Category URL |
bestseller_ranks.rank | int | Rank in category |
seller_name | string | Name of the seller on Amazon |
seller_url | string | URL of the seller's profile on Amazon |
variants | object | Variants available for the product |
variants.{type} | array | List of variants for type (service, color, size, etc.) |
variants.{type}.name | string | Name of variation |
variants.{type}.in_stock | boolean | Whether variation is in stock |
variants.{type}.asin | string | ASIN of variation |
variants.{type}.url | string | URL of variation |
variants.{type}.price | float | Price of variation |
variants.{type}.price_per_unit | float | Price per unit of variation |
variants.{type}.labelled_images | array | List of labelled images for variation |
reviews_summary | string | Summary of the product reviews |
review_aspects | array | List of key review aspects |
review_aspects.name | string | Name of review aspect |
review_aspects.sentiment | string | Sentiment of review aspect |
top_reviews | array | List of most helpful reviews |
top_reviews.reviewer_name | string | Name of reviewer |
top_reviews.review_title | string | Title of review |
top_reviews.rating | int | Rating given in review |
top_reviews.review_text | string | Text content of review |
top_reviews.date | string | Date of review |
top_reviews.verified_purchase | boolean | Whether review is from verified purchase |
top_reviews.review_imgs | array | Images included in review |
policy_badges | array | List of policy badges |
product_videos | array | List of product video URLs |
product_guides | array | List of product guides |
warranty_and_support | object | Warranty and support information |
warranty_and_support.return_policy | string | Return policy text |
warranty_and_support.return_policy_link | string | Return policy link |
warranty_and_support.product_warranty | string | Product warranty text |
warranty_and_support.product_warranty_link | string | Product warranty link |
whats_in_box | array | List of items included in box |
from_the_manufacturer | object | Information from manufacturer |
small_business | boolean | Whether seller is small business |
Variant Types
The variant
object usually contains the following types: service
, color
, size
but sometimes it may contain other types like configuration
, capacity
, etc.
Response Example
Here's the response you can expect to receive for the request showcased above:
{
"success": true,
"url": "https://www.amazon.com/Apple-iPhone-13-128GB-Blue/dp/B09LNX6KQS",
"result_count": 1,
"detail": {
"name": "Apple iPhone 13, 128GB, Blue - Unlocked (Renewed)",
"brand": "Amazon Renewed",
"url": "https://www.amazon.com/Apple-iPhone-13-128GB-Blue/dp/B09LNX6KQS",
"asin": "B09LNX6KQS",
"deal_badge": null,
"listing_id": "B09LNX6KQS",
"price": 391.95,
"price_reduced": 377.0,
"price_per_unit": null,
"currency": "USD",
"currency_symbol": "$",
"buying_offers": [
{
"offer_type": "Refurbished - Excellent",
"offer_description": "377.00 377.00FREE deliveryWednesday, December 11Ships from:Joygoods CRSold by:Joygoods CR",
"price": 377.0,
"seller": "Joygoods CR"
},
{
"offer_type": "Refurbished - Good",
"offer_description": "323.36 323.36FREE deliveryFriday, December 13Ships from:DirectCertifiedSold by:DirectCertified",
"price": 323.36,
"seller": "DirectCertified"
}
],
"other_sellers": {
"text": "Renewed (63) from",
"link": "https://www.amazon.com/gp/offer-listing/B09LNX6KQS/ref=dp_olp_ALL_mbc?ie=UTF8&condition=ALL"
},
"rating": 4.1,
"total_ratings": 13214,
"past_month_sales": "1K+ bought in past month",
"is_prime": false,
"shipping_info": [
"FREE delivery Wednesday, December 11. Details"
],
"delivery_zipcode": "90001",
"addon_offers": [],
"pay_later_offers": [],
"max_quantity": 5,
"variant": {
"service": {
"name": "Unlocked",
"asin": "B09LNX6KQS",
"in_stock": true,
"url": "https://www.amazon.com/dp/B09LNX6KQS"
},
"color": {
"name": "Blue",
"asin": "B09LNX6KQS",
"in_stock": true,
"url": "https://www.amazon.com/dp/B09LNX6KQS"
},
"size": {
"name": "128GB",
"asin": "B09LNX6KQS",
"in_stock": true,
"url": "https://www.amazon.com/dp/B09LNX6KQS"
}
},
"categories": [
{
"name": "Cell Phones & Accessories",
"url": "https://www.amazon.com/cell-phones-service-plans-accessories/b/ref=dp_bc_aui_C_1/136-1872262-4667102"
},
{
"name": "Cell Phones",
"url": "https://www.amazon.com/cell-phone-devices/b/ref=dp_bc_aui_C_2/136-1872262-4667102"
}
],
"main_image": "https://m.media-amazon.com/images/I/71MKNCEgE6L._AC_SL1500.jpg",
"images": [
"https://m.media-amazon.com/images/I/71MKNCEgE6L.__AC_SL1500.jpg",
"https://m.media-amazon.com/images/I/31MZZnEcI1L._AC_SL1500.jpg",
"https://m.media-amazon.com/images/I/41xLERySjeL._AC_SL1500.jpg",
"https://m.media-amazon.com/images/I/311BkPU1ufL._AC_SL1500.jpg",
"https://m.media-amazon.com/images/I/31qVx07oiTL._AC_SL1500.jpg",
"https://m.media-amazon.com/images/I/31vrStSl7LL._AC_SL1500.jpg",
"https://m.media-amazon.com/images/I/31SOBNmWcYL._AC_SL1500.jpg"
],
"labelled_images": [],
"overview": [
{
"name": "Brand",
"value": "Apple"
},
{
"name": "OperatingSystem",
"value": "iOS16"
},
{
"name": "RamMemoryInstalledSize",
"value": "6GB"
},
{
"name": "CPUSpeed",
"value": "5Nanometer"
},
{
"name": "MemoryStorageCapacity",
"value": "128GB"
},
{
"name": "ScreenSize",
"value": "6.1Inches"
},
{
"name": "Resolution",
"value": "1920x1080"
},
{
"name": "RefreshRate",
"value": "60Hz"
},
{
"name": "ModelName",
"value": "iPhone13"
},
{
"name": "WirelessCarrier",
"value": "UnlockedforAllCarriers"
}
],
"features": [
"6.1\" Super Retina XDR display. 5G Superfast downloads, high?quality streaming",
"Cinematic mode in 1080p at 30 fps. Dolby Vision HDR video recording up to 4K at 60 fps. 2X Optical zoom range",
"A15 Bionic chip. New 6-core CPU with 2 performance and 4 efficiency cores. New 4-core GPU. New 16-core Neural Engine",
"Up to 19 hours video playback. Face ID. Ceramic Shield front. Aerospace-grade aluminum"
],
"details_table": [
{
"name": "Product Dimensions",
"value": "7 x 4 x 5 inches"
},
{
"name": "Item Weight",
"value": "6.1 ounces"
},
{
"name": "ASIN",
"value": "B09LNX6KQS"
},
{
"name": "Item model number",
"value": "iPhone 13"
},
{
"name": "Batteries",
"value": "1 Lithium Ion batteries required. (included)"
},
{
"name": "Customer Reviews",
"value": "4.1 4.1 out of 5 stars \n 13,214 ratings \n\n\n 4.1 out of 5 stars"
},
{
"name": "Best Sellers Rank",
"value": "#7 in Amazon Renewed (See Top 100 in Amazon Renewed) #3 in Renewed Smartphones"
},
{
"name": "OS",
"value": "iOS 16"
},
{
"name": "RAM",
"value": "4 GB"
},
{
"name": "Connectivity technologies",
"value": "Wi-Fi"
},
{
"name": "GPS",
"value": "True"
},
{
"name": "Special features",
"value": "Built-In GPS"
},
{
"name": "Other display features",
"value": "Wireless"
},
{
"name": "Human Interface Input",
"value": "Touchscreen"
},
{
"name": "Scanner Resolution",
"value": "1920 x 1080"
},
{
"name": "Other camera features",
"value": "Front, Rear"
},
{
"name": "Form Factor",
"value": "Slate"
},
{
"name": "Color",
"value": "Blue"
},
{
"name": "Battery Power Rating",
"value": "3600 Amp Hours"
},
{
"name": "Phone Talk Time",
"value": "18 Hours"
},
{
"name": "Whats in the box",
"value": "iPhone, Lightning to USB Cable"
},
{
"name": "Manufacturer",
"value": "Apple Computer"
},
{
"name": "Date First Available",
"value": "November 11, 2021"
},
{
"name": "Memory Storage Capacity",
"value": "128 GB"
},
{
"name": "Standing screen display size",
"value": "6.1 Inches"
},
{
"name": "Ram Memory Installed Size",
"value": "6 GB"
},
{
"name": "Weight",
"value": "0.38 Pounds"
}
],
"technical_details": [],
"bestseller_ranks": [
{
"name": "See Top 100 in Amazon Renewed",
"url": "https://www.amazon.com/gp/bestsellers/amazon-renewed/ref=pd_zg_ts_amazon-renewed",
"rank": 7
},
{
"name": "Renewed Smartphones",
"url": "https://www.amazon.com/gp/bestsellers/amazon-renewed/17871142011/ref=pd_zg_hrsr_amazon-renewed",
"rank": 3
}
],
"seller_name": "Joygoods CR",
"seller_url": "https://www.amazon.com/gp/help/seller/at-a-glance.html/ref=dp_merchant_link?ie=UTF8&seller=AZL8GRY85QC1Y&asin=B09LNX6KQS&ref_=dp_merchant_link",
"variants": {
"service": [
{
"name": "AT&T",
"in_stock": true,
"asin": "B09LNV4K66",
"url": "https://www.amazon.com/dp/B09LNV4K66",
"price": null,
"price_per_unit": null
},
{
"name": "Boost",
"in_stock": true,
"asin": "B0DK81SXFL",
"url": "https://www.amazon.com/dp/B0DK81SXFL",
"price": null,
"price_per_unit": null
},
{
"name": "Cricket",
"in_stock": true,
"asin": "B0DKB1L86Y",
"url": "https://www.amazon.com/dp/B0DKB1L86Y",
"price": null,
"price_per_unit": null
},
{
"name": "GSM Carriers",
"in_stock": true,
"asin": "B09LNT7B9D",
"url": "https://www.amazon.com/dp/B09LNT7B9D",
"price": null,
"price_per_unit": null
},
{
"name": "T-Mobile",
"in_stock": true,
"asin": "B09LNT35SH",
"url": "https://www.amazon.com/dp/B09LNT35SH",
"price": null,
"price_per_unit": null
},
{
"name": "TracFone",
"in_stock": true,
"asin": "B0DK83H32D",
"url": "https://www.amazon.com/dp/B0DK83H32D",
"price": null,
"price_per_unit": null
},
{
"name": "Unlocked",
"in_stock": false,
"asin": "B09LNX6KQS",
"url": "https://www.amazon.com/dp/B09LNX6KQS",
"price": null,
"price_per_unit": null
},
{
"name": "Verizon",
"in_stock": true,
"asin": "B09LNCFWVV",
"url": "https://www.amazon.com/dp/B09LNCFWVV",
"price": null,
"price_per_unit": null
}
],
"color": [
{
"name": "(PRODUCT)RED",
"in_stock": true,
"asin": "B09LNT1F3H",
"url": "https://www.amazon.com/dp/B09LNT1F3H",
"price": null,
"price_per_unit": null
},
{
"name": "Blue",
"in_stock": false,
"asin": "B09LNX6KQS",
"url": "https://www.amazon.com/dp/B09LNX6KQS",
"price": null,
"price_per_unit": null
},
{
"name": "Green",
"in_stock": true,
"asin": "B0B5FDB92L",
"url": "https://www.amazon.com/dp/B0B5FDB92L",
"price": null,
"price_per_unit": null
},
{
"name": "Midnight",
"in_stock": true,
"asin": "B09LNW3CY2",
"url": "https://www.amazon.com/dp/B09LNW3CY2",
"price": null,
"price_per_unit": null
},
{
"name": "Pink",
"in_stock": true,
"asin": "B09LNP1ZHT",
"url": "https://www.amazon.com/dp/B09LNP1ZHT",
"price": null,
"price_per_unit": null
},
{
"name": "Starlight",
"in_stock": true,
"asin": "B09LNKXBRJ",
"url": "https://www.amazon.com/dp/B09LNKXBRJ",
"price": null,
"price_per_unit": null
}
],
"size": [
{
"name": "128GB",
"in_stock": false,
"asin": "B09LNX6KQS",
"url": "https://www.amazon.com/dp/B09LNX6KQS",
"price": null,
"price_per_unit": null
},
{
"name": "256GB",
"in_stock": true,
"asin": "B09LNFRHGN",
"url": "https://www.amazon.com/dp/B09LNFRHGN",
"price": null,
"price_per_unit": null
},
{
"name": "512GB",
"in_stock": true,
"asin": "B09LNLLGZ8",
"url": "https://www.amazon.com/dp/B09LNLLGZ8",
"price": null,
"price_per_unit": null
}
]
},
"reviews_summary": "Customers like the quality, functionality, and value of the cell phone. They mention it looks like new, serves its purpose, and is good value for the money. Some appreciate the speed of shipping and ease of setup. However, some customers dislike the sound quality and have different opinions on scratch resistance and battery life.",
"review_aspects": [
{
"name": "Phone quality",
"sentiment": "positive"
},
{
"name": "Functionality",
"sentiment": "positive"
},
{
"name": "Value for money",
"sentiment": "positive"
},
{
"name": "Speed of shipping",
"sentiment": "positive"
},
{
"name": "Ease of setup",
"sentiment": "positive"
},
{
"name": "Scratch resistance",
"sentiment": "mixed"
},
{
"name": "Battery life",
"sentiment": "mixed"
},
{
"name": "Sound quality",
"sentiment": "negative"
}
],
"top_reviews": [
{
"reviewer_name": "Hockey_Dad",
"review_title": "\nNice phone and great customer service",
"rating": 5,
"review_text": "I’m really impressed with this phone. It looks sleek, performs smoothly, and came with a perfect 100% battery life—which is a huge plus. There was a minor issue with a scratch on the front screen, but the seller went above and beyond to resolve it quickly and professionally. Their excellent customer service made the process completely stress-free.My son absolutely loves his new phone! It’s been a hit with him, both for its performance and its style. I couldn’t be happier with this purchase and the experience overall. If you’re considering buying, I highly recommend it—you won’t be disappointed!\nRead more",
"date": "2024-11-23",
"verified_purchase": true,
"review_imgs": []
},
{
"reviewer_name": "Nancy J. Martin",
"review_title": "\nLooks great to me!!",
"rating": 5,
"review_text": "So I downgraded from reconditioned Excellent to Reconditioned Good to save some $$. It's been a painful and expensive journey since I took my IPhone 11 tubing in a river. I don't recommend doing that. So my new to me 13 arrived ahead of time. I can't see any scratches on it. The battery had 85% left. Good value for the money IMO. I wish I had gone this route before, but regret served no purpose. I must recommend these phones.\nRead more",
"date": "2024-11-22",
"verified_purchase": true,
"review_imgs": []
},
{
"reviewer_name": "Tim B.",
"review_title": "\nGood phone, cut cord",
"rating": 4,
"review_text": "The phone's in good shape. Everything seems to work. 85% battery life, same as everyone else has reported.The charging cord arrived cut almost in half. Its little sealed bag was undamaged, as was the packaging of the phone, suggesting the cord was cut sometime prior to bagging. Every wire had been severed.\nRead more",
"date": "2024-11-10",
"verified_purchase": true,
"review_imgs": []
},
{
"reviewer_name": "CR",
"review_title": "\n1st order = low quality replacement screen; but returned/swapped for good phone",
"rating": 3,
"review_text": "Initially, we got a phone from this vendor that was a dud (for us). We returned it and tried them a 2nd time. The 2nd phone seems a decent deal.For the first phone (iPhone 13) we received:The battery life on the renewed phone was fairly good - at 94% of original capacity. This had been an issue with phones from this vendor per other reviews but was not an issue with ours. However, this renewed phone had a non-Apple replacement screen that was noticeably low in quality - grainy, with colors dulled, and it cut off part of the display area. Touch responsiveness was bad. Given Amazon pledge that the product was \"professionally inspected and tested by Amazon-qualified supplier,\" I feel the substandard screen should have been spotted and the lower quality disclosed. My family member and my time were wasted by this attempt to pass off a lower quality solution. Return process was easy, although it did require a trip to the UPS store.For the second, replacement (iPhone 13) phone:The replacement for the returned 1st phone arrived quickly. The battery life seems great (100% of original capacity). The screen this time is MUCH better than the low quality screen on the original phone. The case has some scratches and a dent on the ring surrounding one of the camera lenses, but the lens seems unaffected. All in all, a fair price for used phone. Working well after a month of use.\nRead more",
"date": "2024-04-18",
"verified_purchase": true,
"review_imgs": []
},
{
"reviewer_name": "Antonio Reyes",
"review_title": "\nBetter than expected",
"rating": 5,
"review_text": "This review is based on the product quality and condition. So this phone came nice and neat. No scratches or visible ware and tear. Easy to program and unlock. The only detail i saw was that the battery life was below 83%, meaning that it wasn’t replaced for a fresher one. So I’m expecting it to be changed sooner. All its functions seem to work fine. Haven’t had issues with Apple (since Apple’s notorious fame of disabling features when phone don’t have genuine parts). I think this is a good vender to buy your phone when budget is tight.\nRead more",
"date": "2024-09-28",
"verified_purchase": true,
"review_imgs": []
},
{
"reviewer_name": "Tommy Nguyen",
"review_title": "\n9.5/10 overall",
"rating": 5,
"review_text": "iPhone 13, midnight, 256gb, unlocked version, seller = DirectCertified. I ordered 2 for my kids. Both phones were practically same condition.Cosmetic - One phone had a very tiny stress fracture on the screen that measured approx 1\" across. It was only noticeable at direct light and 6\" away. After laying a screen protector, it is not noticeable. Both iphones had 1-2 tiny knicks on the screen. Again, both are only noticeable up front and after laying a screen protector, it is barely noticeable. The casings on both were near flawless. I can tell the previous owners used screen protectors and cases with longevity in mind. I grade both phones a 95% on appearance and like new cosmetically.Battery - One phone had 85% and other had 86%. A bit on the lower end but its all a gamble going the refurbished route. Not bad enough for me to deal with doing an exchange and take a chance I may get a worse condition phone. I suspect its the original batteries in these 2 units.Function - speaker is loud, face ID works, touchscreen is good, sidebar buttons all work, rear and front cameras are clear, everything works as it should. Doesn't seem to have aftermarket parts used on these phones as there is no pop up notification indicating so. I suspect everything on these 2 phones were original.I will update this review after few weeks of use. I am more curious on battery life so we'll see...8/18/2024 update: kiddos reported the phone battery holds its charge fine. 1 full charge lasts them the whole day. They're using a fast charger purchased off Amazon and so far so good!\nRead more",
"date": "2024-06-22",
"verified_purchase": true,
"review_imgs": []
},
{
"reviewer_name": "Lorenzo.C",
"review_title": "\nPretty good",
"rating": 5,
"review_text": "It did have some scratches and a ding or two but it’s expected for a refurbished device. The functionality is pretty consistent overall and as I stated it has a couple of scratches but from there it looks and performs good.\nRead more",
"date": "2024-10-28",
"verified_purchase": true,
"review_imgs": []
}
],
"policy_badges": [],
"product_videos": [
"https://www.amazon.com/vdp/0782e3aec07d42a7bac8b5383b3e3dcd?ref=dp_vse_rvc_0",
"https://www.amazon.com/vdp/0d873975785f436c9199db4c61bb474e?ref=dp_vse_rvc_1",
"https://www.amazon.com/vdp/04c95c0148094750977a89359647f996?ref=dp_vse_rvc_2",
"https://www.amazon.com/vdp/0b16f5713c234cb28bd069128d0ee0e4?ref=dp_vse_rvc_3",
"https://www.amazon.com/vdp/0047af2be2184a5ca745d366654bebdb?ref=dp_vse_rvc_4",
"https://www.amazon.com/vdp/0565f0dea6f0469fbc1427177f42a176?ref=dp_vse_rvc_5",
"https://www.amazon.com/vdp/0ff05d7f1cd94256a14d84a1159b8faa?ref=dp_vse_rvc_6",
"https://www.amazon.com/vdp/06a761dcbf9a4d0a9ba3afb357f45bdc?ref=dp_vse_rvc_7",
"https://www.amazon.com/vdp/0052388886bf470f97a317f5d4798b5e?ref=dp_vse_rvc_8",
"https://www.amazon.com/vdp/0bce60cdcee04226be845ade667aa3dc?ref=dp_vse_rvc_9"
],
"product_guides": [],
"warranty_and_support": {
"return_policy": null,
"return_policy_link": null,
"product_warranty": null,
"product_warranty_link": null
},
"whats_in_box": [
"iPhone",
"Lightning to USB Cable"
],
"from_the_manufacturer": {},
"small_business": false
},
"remaining_credits": 1976207
}
Request Cost
• 1 credit per request for major marketplaces: * Amazon.com (US) * Amazon.ca (Canada) * Amazon.co.uk (UK) * Amazon.de (Germany) * Amazon.in (India)
• 2 credits per request for all other supported Amazon marketplaces
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 |
Italy | Amazon.it | it |
Belgium | Amazon.com.be | be |
Support
If you want to add a parameter to our response, need data from a country not listed above, or have any other questions or feedback, please write to us at support@unwrangle.com