amazon.com.br APIamazon.com.br ↗
Search products, fetch details, retrieve bestsellers, deals, and price analytics from Amazon Brazil (amazon.com.br) via a structured REST API.
curl -X GET 'https://api.parse.bot/scraper/1e3016b1-c517-4412-a8fb-e27f98358908/search_products?page=1&sort=relevanceblender&query=notebook' \ -H 'X-API-Key: $PARSE_API_KEY'
Search for products on Amazon Brazil by keyword. Returns a paginated list of products with name, price, original price, rating, review count, and Prime eligibility.
| Param | Type | Description |
|---|---|---|
| page | integer | Page number for pagination. |
| sort | string | Sort order. Accepted values: relevanceblender, price-asc-rank, price-desc-rank, review-rank. |
| queryrequired | string | Search keyword (e.g. 'notebook', 'fone bluetooth'). |
| node_id | string | Category node ID to filter results (e.g. '16209062011' for electronics). |
{
"type": "object",
"fields": {
"items": "array of product objects with asin, name, url, price, original_price, rating, review_count, prime"
},
"sample": {
"data": {
"items": [
{
"url": "https://www.amazon.com.br/Notebook-Intel-Celeron-Laptop-1920x1080/dp/B0FPL3ZXTV/ref=sr_1_1",
"asin": "B0FPL3ZXTV",
"name": "Notebook Intel Celeron 8gb Ram 256 Gb Ssd Laptop 1920x1080 FHD 14in",
"price": 1747.05,
"prime": false,
"rating": 4,
"review_count": 164,
"original_price": 1839
}
]
},
"status": "success"
}
}About the amazon.com.br API
This API exposes 6 endpoints for querying Amazon Brazil (amazon.com.br), returning product data including prices in BRL, Prime eligibility, ratings, and review counts. The search_products endpoint accepts keyword queries with optional category node filtering and four sort modes. Complementary endpoints cover product details by ASIN, bestseller rankings by category, live deals with discount percentages, and aggregate price statistics across a search result page.
Product Search and Details
The search_products endpoint accepts a required query string (e.g. 'notebook' or 'fone bluetooth') and optional parameters including page for pagination, sort for ordering (relevanceblender, price-asc-rank, price-desc-rank, review-rank), and node_id to filter by a specific Amazon Brazil category tree. Each item in the response carries asin, name, url, price, original_price, rating, review_count, and a prime boolean. The get_product_details endpoint targets a single asin and returns the same field set with prices denominated in BRL.
Bestsellers, Deals, and Price Analytics
The get_bestsellers endpoint accepts a category string (e.g. electronics, books, games, or their Portuguese equivalents) and returns a ranked list where each item includes a rank field alongside the standard product fields. The get_deals endpoint requires no inputs and returns current promotions from Amazon Brazil; where both price and original_price are present, the response also includes a discount_percent field. The calculate_category_average_price endpoint takes a query string and analyzes the first page of matching results, returning average_price, min_price, max_price, and total_products — all prices in BRL.
Review Data
The get_product_reviews endpoint accepts an asin and returns rating, review_count, and product_name. Individual review text, reviewer names, and per-review metadata are not available — the reviews array in the response is always empty. This endpoint is useful for tracking aggregate sentiment signals (star rating and volume) without needing individual review content.
- Monitor BRL price fluctuations on specific ASINs for currency-adjusted international pricing research
- Build a bestseller tracker across Amazon Brazil categories using
get_bestsellersrank fields - Aggregate daily deal data with
discount_percentfor a deals newsletter or price alert service - Compare average category prices across multiple queries using
calculate_category_average_pricefor market positioning - Filter Prime-eligible products within a keyword search to surface fast-shipping inventory for Brazilian customers
- Track rating and review count trends over time for a product ASIN using
get_product_reviews - Scope a product catalog for a specific Amazon Brazil category node using the
node_idparameter insearch_products
| Tier | Price | Credits/month | Rate limit |
|---|---|---|---|
| Free | $0/mo | 100 | 5 req/min |
| Hobby | $30/mo | 1,000 | 20 req/min |
| Developer | $100/mo | 5,000 | 250 req/min |
One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.
Does Amazon Brazil have an official developer API?+
What does `get_product_reviews` actually return?+
rating (average stars out of 5), review_count (total number of reviews), and product_name. The reviews array is always empty — individual review text, reviewer identities, and per-review ratings are not included in the response.Are seller information or third-party listings available?+
How fresh is the deals data returned by `get_deals`?+
get_deals endpoint reflects current promotions at the time of the API call. Amazon Brazil's deals inventory changes throughout the day (Lightning Deals have fixed windows), so repeated calls at different times may return different items and discount percentages. There is no historical deals archive in this API.