Amazon Mexico Product Scraper avatar

Amazon Mexico Product Scraper

Pricing

$2.50 / 1,000 results

Go to Apify Store
Amazon Mexico Product Scraper

Amazon Mexico Product Scraper

Scrape Amazon Mexico (amazon.com.mx) products. Extracts titles, prices, ratings, review counts, bullet points, descriptions, images & categories. Fast HTTP scraping - no browser required. Input ASINs or product URLs.

Pricing

$2.50 / 1,000 results

Rating

0.0

(0)

Developer

Agenscrape

Agenscrape

Maintained by Community

Actor stats

0

Bookmarked

3

Total users

2

Monthly active users

a month ago

Last modified

Share

Extract comprehensive product data from Amazon Mexico (amazon.com.mx) including details, pricing, reviews, and images.

Features

  • Product Details: Title, brand, price, currency, availability
  • Ratings & Reviews: Star ratings, review counts, and customer reviews
  • Product Images: Main image and all gallery images in high resolution
  • Features & Description: Bullet points and product descriptions
  • Categories: Full category breadcrumb path

Input

FieldTypeDescription
asinsArrayList of Amazon product ASINs to scrape
productUrlsArrayDirect Amazon Mexico product URLs (alternative to ASINs)
includeReviewsBooleanWhether to scrape customer reviews (default: true)
maxReviewsIntegerMaximum reviews per product (default: 10, max: 20)

Output

Each product returns:

{
"asin": "B09G9FPHY6",
"url": "https://www.amazon.com.mx/dp/B09G9FPHY6",
"title": "Apple 2021 10.2\" iPad (Wi-Fi, 64 GB) - Gris Espacial",
"brand": "Apple",
"price": 3237.55,
"currency": "MXN",
"rating": 4.8,
"reviewCount": 36698,
"availability": "En existencia",
"features": ["Feature 1", "Feature 2"],
"description": "Product description...",
"mainImage": "https://m.media-amazon.com/images/...",
"images": ["url1", "url2"],
"categories": ["Electrónicos", "Tablets"],
"reviews": [
{
"reviewId": "R2U4WPMVNWWKBE",
"rating": 5,
"title": "Review title",
"body": "Review text...",
"author": "Customer Name",
"date": "Comentado en los Estados Unidos el 18 de noviembre de 2024",
"verifiedPurchase": true,
"helpfulVotes": 0
}
],
"reviewsScraped": 5,
"scrapedAt": "2026-01-22T10:30:00.000Z"
}

Usage Examples

Scrape by ASIN

{
"asins": ["B09G9FPHY6", "B09V3KXJPB"],
"includeReviews": true,
"maxReviews": 10
}

Scrape by URL

{
"productUrls": [
"https://www.amazon.com.mx/dp/B09G9FPHY6"
]
}

Use Cases

  • Market Research: Analyze pricing and competition in the Mexican market
  • Product Monitoring: Track price changes and availability
  • Review Analysis: Gather customer feedback and sentiment
  • Listing Optimization: Research successful product listings
  • E-commerce Intelligence: Build product databases for Mexican marketplace

Rate Limits

  • Free Apify users: Limited to 20 products per run
  • Paid Apify plans: Unlimited products

API Integration

Use the Apify API to integrate this scraper into your applications:

const { ApifyClient } = require('apify-client');
const client = new ApifyClient({ token: 'YOUR_API_TOKEN' });
const run = await client.actor('YOUR_ACTOR_ID').call({
asins: ['B09G9FPHY6'],
includeReviews: true
});
const { items } = await client.dataset(run.defaultDatasetId).listItems();
console.log(items);