amazon.nl APIamazon.nl ↗
Access Amazon.nl product search, full product details, customer reviews, and bestseller lists via a single structured API. Returns prices in EUR, ASINs, and specs.
curl -X GET 'https://api.parse.bot/scraper/555cec91-d32e-48ff-aa50-e20f36a0da85/search_products?query=LEGO' \ -H 'X-API-Key: $PARSE_API_KEY'
Search for products on Amazon.nl by keyword. Returns paginated results with product names, prices, ratings, and thumbnails.
| Param | Type | Description |
|---|---|---|
| page | integer | Page number for pagination. |
| sort | string | Sort order for results (e.g. price-asc-rank, review-rank). |
| queryrequired | string | Search keyword. |
| category | string | Category node ID or slug to filter results. |
{
"type": "object",
"fields": {
"page": "integer - current page number",
"query": "string - the search query used",
"products": "array of product objects with asin, name, price, rrp, rating, review_count, thumbnail_url, url"
},
"sample": {
"data": {
"page": 1,
"query": "LEGO",
"products": [
{
"rrp": 19.99,
"url": "https://www.amazon.nl/dp/B0FPXFLNR7/",
"asin": "B0FPXFLNR7",
"name": "LEGO Botanicals Rocking Plants - Artificial Plants Building Kit for Children and Adults - Incl. 2 Fake Plants and 2 Pastel...",
"price": 16.95,
"rating": null,
"review_count": null,
"thumbnail_url": "https://m.media-amazon.com/images/I/81HS74Z90TL._AC_UL320_.jpg"
}
]
},
"status": "success"
}
}About the amazon.nl API
The Amazon.nl API gives developers structured access to Amazon's Dutch marketplace across 4 endpoints: search products by keyword, retrieve full product details by ASIN, fetch customer reviews, and pull category bestseller lists. The get_product_details endpoint alone returns over 10 fields including price in EUR, technical specifications, availability status, brand, images, and breadcrumb categories.
Search and Discovery
The search_products endpoint accepts a required query string and returns paginated product listings with asin, name, price, rrp, rating, review_count, thumbnail_url, and url. Results can be filtered by category (node ID or slug) and sorted using sort values like price-asc-rank or review-rank. Use the page parameter to walk through result sets.
Product Details and Specifications
The get_product_details endpoint takes a 10-character asin and returns the full product record: name, brand, price (EUR), availability, seller, images (array of URLs), description (array of bullet strings), breadcrumbs, and technical_specifications as a flat key-value object. This makes it straightforward to compare specs across products or build enriched product listings.
Reviews and Bestsellers
The get_product_reviews endpoint returns up to 13 top reviews per ASIN, each with author, rating, title, body, and date. Note this reflects the reviews surfaced on the product page, not the full review corpus. The get_bestsellers endpoint retrieves up to 30 ranked items for a given category slug (e.g. electronics, toys), returning rank, name, price, rating, review_count, and asin for each entry — useful for competitive analysis or trend monitoring.
- Track price changes on specific ASINs across Amazon.nl using
get_product_details. - Build a price comparison tool using
search_productswithsort=price-asc-rank. - Monitor category bestseller rankings weekly with
get_bestsellersfor trend analysis. - Aggregate technical specifications from
technical_specificationsto compare electronics or appliances. - Feed customer review sentiment pipelines using
bodyandratingfields fromget_product_reviews. - Populate a product catalog with localized EUR pricing, brand, and availability data from Amazon.nl.
- Identify top-reviewed products in a category by cross-referencing
review_countfromget_bestsellers.
| 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?+
What does `get_product_reviews` actually return, and are all reviews included?+
author, rating (numeric), title, body, and date. It does not paginate through the full review history. If you need deeper review coverage, you can fork this API on Parse and revise it to add review pagination.Can I retrieve seller inventory data or third-party seller listings for a product?+
get_product_details returns a single seller string and availability status, but does not enumerate multiple sellers, offer listings, or fulfillment-by-Amazon details. You can fork this API on Parse and revise it to add a seller listings endpoint.How does bestseller category filtering work?+
get_bestsellers endpoint accepts an optional category slug corresponding to Amazon.nl's bestseller URL path segments, such as electronics or toys. Omitting the parameter returns results from the overall bestsellers list. The response always includes up to 30 ranked items with rank, asin, name, price, rating, and review_count.