Scrape Amazon Product Details

Extract comprehensive product data like buy box info, reviews, images, and variations from Amazon with SellerMagnet’s API for market research and inventory management.

No credit card required. Get started with 5,000 free API credits.

Why Scrape Amazon Product Details?

Product Analysis

Access detailed product data to optimize listings and pricing strategies.

Competitor Monitoring

Track competitor buy box prices, reviews, and product variations.

Inventory Planning

Use product details and listing history to inform stock decisions.

Comprehensive Product Data Extraction

Retrieve detailed Amazon product information to drive ecommerce success. Our API provides:

Buy Box Information

Extract buy box price, seller ID, and currency details for competitive pricing.

Product Media

Access main images, additional images, and videos for product visualization.

Customer Reviews

Retrieve review data, including average ratings and summaries, for sentiment analysis.

Product Variations

Collect variation details to understand product options and configurations.

Extract Product Data

Scrape detailed Amazon product information with a single API request.

cURL
Python
curl -X GET 'https://sellermagnet-api.com/api/amazon-product-lookup?asin=B0CL61F39H&marketplaceId=ATVPDKIKX0DER&api_key=YOUR_API_KEY'
                    
import requests

url = "https://sellermagnet-api.com/api/amazon-product-lookup"
params = {
    "asin": "B0CL61F39H",
    "marketplaceId": "ATVPDKIKX0DER",
    "api_key": "YOUR_API_KEY"
}
response = requests.get(url, params=params)
if response.ok:
    print(response.json())
else:
    print(f"Error: {response.status_code} - {response.json().get('message', 'Unknown error')}")
                    

Output includes buy box info, reviews, images, variations, specifications, and more in JSON/CSV format.

API Details

Fetch comprehensive product details with the Amazon Product Lookup endpoint.

Parameters

  • asin (required): Product ASIN (e.g., "B0CL61F39H")
  • marketplaceId (required): Marketplace ID (e.g., "ATVPDKIKX0DER")
  • api_key (required): Your API key

Response Data

Includes product details, customer reviews, pricing, images, specifications, and variations in JSON/CSV format.

{
  "data": {
    "productInfo": {
      "asin": "B0CL61F39H",
      "title": "PlayStation®5 console (slim)",
      "reviews": {
        "averageRating": 4.7,
        "reviewSummary": "4.7 out of 5 stars",
        "totalReviews": 7092
      },
      "buyBoxInfo": {
        "currencyCode": "USD",
        "price": 444.99,
        "sellerId": "A3853PJW50SJG8"
      },
      "images": [
        "https://m.media-amazon.com/images/I/41ECK5cY-2L._SL1000_.jpg",
        ...
      ],
      "details": {
        "ASIN": "B0CL61F39H",
        "Manufacturer": "Sony",
        "Product Dimensions": "14 x 17 x 7 inches; 10.6 Pounds"
      },
      "variations": [
        {
          "asin": "B0F6968Y5G",
          "attributes": {
            "Pattern Name": "PS5 w/ Black Ops Bundle",
            "Style": "PlayStation®5 Digital Edition (slim)"
          }
        },
        ...
      ]
    }
  },
  "success": true
}
                    

Amazon Product Lookup FAQs

What product data can I scrape?
Buy box info, reviews, images, videos, variations, specifications, and more in JSON/CSV format.
Can I scrape data for multiple products?
Yes, our API supports bulk requests for large-scale product data collection across multiple ASINs.
What details are included in buy box info?
Buy box price, seller ID, currency symbol, code, and name for each product.
Is the API reliable for product lookup?
Our API achieves a 99.9% success rate with smart proxy rotation and CAPTCHA handling.