Skip to main content

Amazon Bestsellers Scraper

Scrape Amazon bestseller lists by category with product details, rankings, and pricing. 1 credit/row

Parameters

ParameterTypeRequiredDescription
categoryUrlsarrayYesArray of Amazon bestseller category URLs. Must contain /zgbs/ or /bestsellers/
maxItemsPerStartUrlintegerYesMaximum products per category URL. Default: 100. Amazon limits to 100

Example

curl -X POST https://api.mindcase.co/api/v1/agents/amazon/bestsellers-scraper/run \
  -H "Authorization: Bearer mk_live_abc123def456" \
  -H "Content-Type: application/json" \
  -d '{
    "params": {
      "categoryUrls": ["https://www.amazon.com/bestsellers/electronics"],
      "maxItemsPerStartUrl": 100
    }
  }'

Amazon Product Scraper

Scrape detailed Amazon product data including pricing, ratings, descriptions, and variants. 1 credit/row

Parameters

ParameterTypeRequiredDescription
categoryOrProductUrlsarrayYesArray of URL objects pointing to Amazon product or category pages. E.g., [{"url": "https://www.amazon.com/dp/B09V3KXJPB"}]
maxItemsPerStartUrlintegerYesMaximum products per URL. Default: 50

Example

curl -X POST https://api.mindcase.co/api/v1/agents/amazon/product-scraper/run \
  -H "Authorization: Bearer mk_live_abc123def456" \
  -H "Content-Type: application/json" \
  -d '{
    "params": {
      "categoryOrProductUrls": [{"url": "https://www.amazon.com/dp/B09V3KXJPB"}],
      "maxItemsPerStartUrl": 50
    }
  }'

Amazon Reviews Scraper

Extract Amazon product reviews with ratings, titles, verified purchase status, and reviewer info. 1 credit/row

Parameters

ParameterTypeRequiredDescription
productUrlsarrayYesArray of URL objects pointing to Amazon products. Normalize to domain + /dp/ASIN format. E.g., [{"url": "https://www.amazon.com/dp/B09V3KXJPB"}]
maxReviewsintegerYesMaximum number of reviews per product. Default: 100

Example

curl -X POST https://api.mindcase.co/api/v1/agents/amazon/reviews-scraper/run \
  -H "Authorization: Bearer mk_live_abc123def456" \
  -H "Content-Type: application/json" \
  -d '{
    "params": {
      "productUrls": [{"url": "https://www.amazon.com/dp/B09V3KXJPB"}],
      "maxReviews": 100
    }
  }'

Amazon Pincode Scraper

Check product availability and delivery estimates for specific pincodes on Amazon India. 1 credit/row

Parameters

ParameterTypeRequiredDescription
productsarrayYesArray of Amazon India product URLs or ASINs
pincodesarrayYesArray of 6-digit Indian pincodes. E.g., ["110001", "400001"]

Example

curl -X POST https://api.mindcase.co/api/v1/agents/amazon/pincode-scraper/run \
  -H "Authorization: Bearer mk_live_abc123def456" \
  -H "Content-Type: application/json" \
  -d '{
    "params": {
      "products": ["https://www.amazon.in/dp/B09V3KXJPB"],
      "pincodes": ["110001", "400001"]
    }
  }'