Discover/amazon.com.be API
live

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.

Endpoints
3
Updated
8h ago
Try it
Page number for pagination (1-based).
Sort order. Accepts exactly one of: relevance, price_low_to_high, price_high_to_low, avg_c
Search query string (e.g. 'wireless headphones', 'laptop').
Maximum price filter in EUR (e.g. '50' for €50). Numeric value as string.
Minimum price filter in EUR (e.g. '20' for €20). Numeric value as string.
api.parse.bot/scraper/12439636-4f16-4d13-9bdf-4c877a56e8ed/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Use it in your codegrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/12439636-4f16-4d13-9bdf-4c877a56e8ed/search_products' \
  -H 'X-API-Key: $PARSE_API_KEY'
All endpoints · 3 totalclick to expand

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.

Input
ParamTypeDescription
pageintegerPage number for pagination (1-based).
sortstringSort order. Accepts exactly one of: relevance, price_low_to_high, price_high_to_low, avg_customer_review, newest_arrivals, best_sellers.
queryrequiredstringSearch query string (e.g. 'wireless headphones', 'laptop').
max_pricestringMaximum price filter in EUR (e.g. '50' for €50). Numeric value as string.
min_pricestringMinimum price filter in EUR (e.g. '20' for €20). Numeric value as string.
Response
{
  "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.

Common use cases
  • Build a EUR price tracker that monitors price changes for a set of ASINs on Amazon Belgium over time.
  • Populate a product comparison widget using features, brand, and images from get_product_details.
  • Implement a type-ahead search bar backed by get_search_suggestions for an affiliate or shopping site.
  • Aggregate rating and review_count across multiple ASINs to rank products in a niche category.
  • Filter search results by min_price and max_price to surface budget or premium product segments in the Belgian market.
  • Check availability and is_prime fields 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_suggestions and expanding the prefix tree.
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000250 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.

Frequently asked questions
Does Amazon have an official developer API for product data?+
Yes. Amazon offers the Product Advertising API 5.0 (PA-API), documented at https://webservices.amazon.com/paapi5/documentation/. It requires an Amazon Associates account and approval, and enforces strict usage terms tied to affiliate link generation. This Parse API provides access to Amazon Belgium product data without those prerequisites.
What does `get_product_details` return that `search_products` does not?+
The 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?+
Not currently. The API returns a single 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?+
Not currently. The API exposes aggregate 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?+
The 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.
Page content last updated . Spec covers 3 endpoints from www.amazon.com.be.
Related APIs in EcommerceSee all →
walmart.com API
Retrieve product data from Walmart.com including pricing, descriptions, availability, reviews, and category listings. Access real-time product information to search by keyword, look up items by ID or URL, and browse department categories.
homedepot.com API
Search and browse Home Depot's product catalog to compare pricing, check real-time availability, and review detailed product specifications. Find products across all categories, look up store locations and hours, and check fulfillment options including in-store pickup and delivery.
amazon.co.uk API
amazon.co.uk API
ikea.com API
Search and browse IKEA's full product catalog to find items by category, compare measurements, read customer reviews, and check real-time store availability and current deals. Discover new arrivals and best-selling products to help you shop smarter and find exactly what you need.
amazon.es API
Search and retrieve product data from Amazon.es. Supports keyword search with filters (price, brand, rating, delivery), product detail lookup by ASIN, autocomplete suggestions, and best-seller browsing.
element14.com API
Search and browse Newark (element14)'s electronic components catalog to find product details, pricing, stock levels, and technical documentation. Retrieve specifications, explore categories and manufacturers, and access real-time inventory information to compare components.
amazon.fr API
Scrape product data from Amazon.fr, including search results, product details, specifications, seller offers, customer reviews, and current deals.
newegg.com API
Search Newegg's product catalog and retrieve listings, specifications, customer reviews, Q&A, category trees, and daily deals.