amazon.fr APIamazon.fr ↗
Access Amazon.fr product data via API: search results, full product details, specifications, seller offers, customer reviews, and live deals.
curl -X GET 'https://api.parse.bot/scraper/d8cf7ebc-a067-48a7-88ee-044a72a6a3f6/search_products?page=1&sort=featured&query=iphone' \ -H 'X-API-Key: $PARSE_API_KEY'
Search for products on Amazon.fr. Returns paginated results with product title, price, rating, review count, and image. The endpoint requires a session warmup and may occasionally be blocked by Amazon's bot protection, in which case proxy rotation resolves the issue.
| Param | Type | Description |
|---|---|---|
| page | integer | Page number for pagination |
| sort | string | Sort order. Accepted values: 'price-asc-rank', 'price-desc-rank', 'review-rank', 'date-desc-rank' |
| queryrequired | string | Search keyword (e.g. 'casque bluetooth', 'iphone') |
{
"type": "object",
"fields": {
"page": "string, the page number",
"items": "array of product objects with asin, title, price, rating, review_count, image, is_prime, url",
"query": "string, the search query used"
},
"sample": {
"data": {
"page": "1",
"items": [
{
"url": "https://www.amazon.fr/dp/B086KBXB3G",
"asin": "B086KBXB3G",
"image": "https://m.media-amazon.com/images/I/61EmutePDGL._AC_UL320_.jpg",
"price": "135,35 €",
"title": "Jabra Evolve2 65 Casque PC Sans Fil",
"rating": "4,2 sur 5 étoiles",
"is_prime": false,
"review_count": "2 325 évaluations"
}
],
"query": "casque bluetooth"
},
"status": "success"
}
}About the amazon.fr API
The Amazon.fr API covers 7 endpoints for retrieving product and seller data from the French Amazon storefront. Use search_products to query the catalog by keyword with sorting and pagination, get_product_details to pull full listings including bullets, variants, and availability, or get_product_reviews to extract up to ~8 customer reviews per ASIN — all returning structured JSON.
Search and Product Lookup
The search_products endpoint accepts a query string (e.g. 'casque bluetooth') and an optional sort parameter supporting four orderings: price-asc-rank, price-desc-rank, review-rank, and date-desc-rank. Results are paginated via the page parameter and each item in the items array includes asin, title, price, rating, review_count, image, is_prime, and url. For a single ASIN, get_product_details returns the full listing: brand, formatted price, images array, bullets array, variants, availability status, and aggregate review_count.
Specifications, Offers, and Reviews
get_product_specifications returns a flat specifications object — key-value pairs of technical attributes found on the product page — useful for structured comparison across ASINs. get_product_offers extracts the buy-box offer and any additional seller options, each with price, seller, condition, and availability. get_product_reviews returns up to approximately 8 top reviews per ASIN, each containing author, rating, title, body, date, and a verified_purchase flag.
Deals and Seller Data
get_deals retrieves current promotions from the Amazon.fr Goldbox page, returning an array of deal objects with title and asin. get_seller_profile looks up a seller by seller_id and returns name, seller_id, and vat_number (TVA) — relevant for VAT compliance or marketplace due diligence. This endpoint is noted to be heavily protected by AWS WAF and may have a lower success rate than the product endpoints.
- Track competitor pricing on Amazon.fr by polling
get_product_detailsfor target ASINs and storing thepricefield over time. - Build a product comparison tool using
get_product_specificationsto surface technical attribute differences across multiple ASINs. - Monitor deal activity with
get_dealsto alert users when watched categories appear in Goldbox promotions. - Aggregate French-language customer sentiment by collecting
body,rating, andverified_purchasefields fromget_product_reviews. - Verify marketplace seller legitimacy by checking the
vat_numberfield returned byget_seller_profile. - Power a price-comparison widget using
get_product_offersto surface all available seller conditions and prices for a given ASIN. - Populate a product catalog with French locale data — titles, images, and bullet points — sourced from
search_productsquery results.
| 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.fr have an official developer API?+
How many reviews does `get_product_reviews` return per request?+
author, rating, title, body, date, and verified_purchase. Pagination across all review pages is not currently supported. The API covers the top-reviewed set visible on the product page. You can fork it on Parse and revise it to add offset or page-based review pagination.Does the API return seller inventory counts or fulfillment type (FBA vs. FBM)?+
get_product_offers returns price, seller, condition, and availability text, but does not expose inventory quantities or fulfillment method flags. You can fork it on Parse and revise to add those fields if the source page exposes them for a given ASIN.Can `search_products` be filtered by category or brand in addition to keyword?+
query, sort, and page as inputs. Category-level or brand-level filtering beyond what can be encoded in the query string is not exposed as a dedicated parameter. You can fork it on Parse and revise to add browse-node or brand filter parameters.Is the `get_seller_profile` endpoint reliable for all seller IDs?+
name, seller_id, and vat_number when accessible, but requests may fail more frequently than other endpoints in this API.