---
title: Turn Amazon Product Pages Into Structured JSON Data
description: Get all product details for any Amazon product ASIN with a real browser
  scraper.
source_url:
  html: https://testingbot.com/support/functions/scrape/amazon-products
  md: https://testingbot.com/support/functions/scrape/amazon-products/index.md
---
# Scraping Amazon Products

Stay on top of your competitors products and pricing strategies by monitoring millions of Amazon product listings, with a real remote browser.

Fetch detailed information about any Amazon product, including title, price, description, images, reviews and more.

TestingBot provides a scrape function which you can call with an Amazon product ASIN, and it will return a structured JSON response with all the details of the product.

## Example

    curl -X POST https://cloud.testingbot.com/scrape/amazon-product?key=YOUR_KEY&secret=YOUR_SECRET \
    -H 'Content-Type: application/json' \
    -d '{"asin":"{AMAZON_ASIN}"}'

Replace `{AMAZON_ASIN}` with the actual ASIN of the product you want to scrape.

The response will contain all the details of the product, including title, price, description, images, reviews and more.

    {
      "name": "Amazon Product Name",
      "product_information": {
        "product_dimensions": "8.1 x 8.1 x 0.04 inches",
        "item_weight": "3.52 ounces",
        "asin": "ACD3L74ZSQ",
        "item_model_number": "AV192",
        "customer_reviews": {
          "ratings_count": 14,
          "stars": 4.2
        },
        "best_sellers_rank": [
          "#308,205 in Home & Kitchen (See Top 100 in Home & Kitchen)"
        ],
        "is_discontinued_by_manufacturer": null,
        "date_first_available": null,
        "manufacturer": "TB,LTD",
        "country_of_origin": null
      },
      "brand": "Brand: TB",
      "brand_url": "/TB",
      "full_description": "The description",
      "pricing": "$12.98",
      "shipping_price": "Delivery Friday, August 22",
      "availability_quantity": null,
      "availability_status": "In Stock",
      "is_coupon_exists": true,
      "images": [
        "https://m.media-amazon.com/images/I/82Dz8V7C3CL._AC_SX425_.jpg"
      ],
      "product_category": "Home & Kitchen",
      "average_rating": 4.2,
      "feature_bullets": [
        "A cool scraper from TestingBot."
      ],
      "total_reviews": 14,
      "model": "AD195",
      "aplus_present": true
    }

## Geolocations

Some Amazon products are only available in specific countries, or the shipping price may vary based on the country. You can specify a `geoCountryCode` to scrape the product from a specific country.

    curl -X POST https://cloud.testingbot.com/scrape/amazon-product?key=YOUR_KEY&secret=YOUR_SECRET \
    -H 'Content-Type: application/json' \
    -d '{"asin":"{AMAZON_ASIN}", "geoCountryCode":"US"}'

### Looking for more help?

Have questions or need more information? Reach out via email or Slack.

[Email us](https://testingbot.com/contact/new)[Slack Join our Slack](https://join.slack.com/t/testingb0t/shared_invite/zt-3bcw9xch-jk19~6XPs_xBrsAgAedkCw)
