amazon.com.be APIwww.amazon.com.be ↗
Search Amazon.com.be products, retrieve ASIN details (price, features, availability), and fetch autocomplete suggestions via a clean REST API.
curl -X GET 'https://api.parse.bot/scraper/12439636-4f16-4d13-9bdf-4c877a56e8ed/search_products' \ -H 'X-API-Key: $PARSE_API_KEY'
Search for products on Amazon Belgium. Returns paginated results with product details including price, rating, and review count. Supports sorting by relevance, price, customer reviews, newest arrivals, and best sellers. Supports price range filtering in EUR.
| Param | Type | Description |
|---|---|---|
| page | integer | Page number for pagination (1-based). |
| sort | string | Sort order. Accepts exactly one of: relevance, price_low_to_high, price_high_to_low, avg_customer_review, newest_arrivals, best_sellers. |
| queryrequired | string | Search query string (e.g. 'wireless headphones', 'laptop'). |
| max_price | string | Maximum price filter in EUR (e.g. '50' for €50). Numeric value as string. |
| min_price | string | Minimum price filter in EUR (e.g. '20' for €20). Numeric value as string. |
{
"type": "object",
"fields": {
"page": "integer",
"sort": "string",
"query": "string",
"products": "array of product objects with asin, title, price, rating, review_count, image_url, product_url, is_prime",
"total_results": "integer or null"
},
"sample": {
"data": {
"page": 1,
"sort": "avg_customer_review",
"query": "laptop",
"products": [
{
"asin": "B0FLX873X1",
"price": "€87.99",
"title": "YUNZII C75 Wireless Mechanical Keyboard, 75% Format",
"rating": 4.9,
"is_prime": false,
"image_url": "https://m.media-amazon.com/images/I/71ctwpZTMkL._AC_UL320_.jpg",
"product_url": "https://www.amazon.com.be/-/en/YUNZII-C75-Wireless-Mechanical-Hot-Swappable/dp/B0FLX873X1/ref=sr_1_2",
"review_count": 751
}
],
"total_results": 100000
},
"status": "success"
}
}About the amazon.com.be API
The Amazon Belgium API provides 3 endpoints to query the Amazon.com.be catalog: search products with sorting and EUR price filters, fetch full product details by ASIN including brand, feature bullets, images, and availability, and retrieve up to 10 autocomplete suggestions for a given search prefix. The search_products endpoint returns paginated results with 9 fields per product, making it straightforward to build price-comparison or catalog-mirroring tools targeting the Belgian market.
Search and Filter Products
The search_products endpoint accepts a required query string and optional parameters for pagination (page), sort order (sort), and EUR price bounds (min_price, max_price). Sort accepts five values: relevance, price_low_to_high, price_high_to_low, avg_customer_review, and newest_arrivals. Each item in the returned products array includes asin, title, price, rating, review_count, image_url, product_url, and is_prime. The total_results field gives the full result count reported by the catalog, though it may be null for some queries.
Product Detail by ASIN
The get_product_details endpoint takes a single asin string — typically sourced from search_products results — and returns a richer set of fields: brand, features (an array of bullet-point strings), description, images (all image URLs for the listing), availability, rating, and review_count. Price is returned as a string or null when the listing has no buyable offer. This endpoint is suited for populating detailed product pages or feeding structured data into a catalogue database.
Autocomplete Suggestions
The get_search_suggestions endpoint accepts a partial query string via the prefix parameter and returns up to 10 suggestion objects. Each suggestion contains a value (the full suggested search term) and a type field. This is useful for building type-ahead search interfaces or generating keyword lists for product research tools.
Coverage Notes
All prices are denominated in EUR and reflect the Amazon.com.be locale. ASINs are consistent with the wider Amazon catalog, so an ASIN obtained from this API can generally be cross-referenced against other Amazon locale APIs. Review text and individual reviewer data are not included in any endpoint; only aggregate rating and review_count are exposed.
- Build a EUR price tracker that monitors
pricechanges for a set of ASINs on Amazon Belgium over time. - Populate a product comparison widget using
features,brand, andimagesfromget_product_details. - Implement a type-ahead search bar backed by
get_search_suggestionsfor an affiliate or shopping site. - Aggregate
ratingandreview_countacross multiple ASINs to rank products in a niche category. - Filter search results by
min_priceandmax_priceto surface budget or premium product segments in the Belgian market. - Check
availabilityandis_primefields to filter for Prime-eligible, in-stock items before surfacing them to users. - Generate keyword research datasets by feeding product category terms into
get_search_suggestionsand expanding the prefix tree.
| 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 have an official developer API for product data?+
What does `get_product_details` return that `search_products` does not?+
get_product_details endpoint adds brand, features (the full list of bullet-point descriptions), description (long-form product text), and an images array containing all product image URLs. The search endpoint returns only a single image_url and omits brand, feature bullets, and long descriptions.Does `search_products` return seller or offer-level data, such as third-party seller names or multiple price offers for the same ASIN?+
price field per product and does not expose individual seller names, fulfilled-by details, or competing offer prices for the same ASIN. You can fork this API on Parse and revise it to add an offers endpoint that captures seller-level pricing data.Are customer reviews and review text available through this API?+
rating (numeric) and review_count (integer) for both search results and product detail responses, but individual review text, reviewer names, and review dates are not returned by any endpoint. You can fork this API on Parse and revise it to add a reviews endpoint for a given ASIN.How does pagination work in `search_products`, and are there limits on how deep you can paginate?+
page parameter is 1-based integer pagination. The total_results field in the response indicates the total number of matching products, though it can be null for some queries. Amazon Belgium generally limits result depth to around 400 results (roughly 20–25 pages depending on the number of results per page), regardless of the total count shown.