amazon.eg APIamazon.eg ↗
Search Amazon Egypt (amazon.eg) products by keyword. Returns ASINs, prices, ratings, review counts, images, and autocomplete suggestions via 2 endpoints.
curl -X GET 'https://api.parse.bot/scraper/6b1d4645-746f-42aa-a5ac-bf5f861d41f6/search_products?page=1&query=laptop' \ -H 'X-API-Key: $PARSE_API_KEY'
Search for products on Amazon Egypt by keyword. Returns a list of products with ASIN, title, price, rating, review count, image, and URL. Supports pagination and sorting.
| 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 |
{
"type": "object",
"fields": {
"page": "current page number",
"query": "search keyword used",
"products": "array of product objects with asin, title, price, currency, rating, review_count, image_url, product_url, is_sponsored",
"total_on_page": "number of products returned on this page"
},
"sample": {
"data": {
"page": 1,
"query": "laptop",
"products": [
{
"asin": "B0FVWF8M8N",
"price": 19999,
"title": "HP Laptop 14-em0025ne: Ryzen 5-7520U, 8GB Ram, 512GB-SSD",
"rating": "4.0",
"currency": "EGP",
"image_url": "https://m.media-amazon.com/images/I/51kHkSKx3qL._AC_UL320_.jpg",
"product_url": "https://www.amazon.eg/-/en/HP-Laptop-14-em0025ne/dp/B0FVWF8M8N/...",
"is_sponsored": false,
"review_count": 0
}
],
"total_on_page": 48
},
"status": "success"
}
}About the amazon.eg API
The Amazon Egypt API provides 2 endpoints to search product listings on amazon.eg and retrieve search autocomplete suggestions. The search_products endpoint returns up to a full page of results per request, with fields including ASIN, title, price, currency, rating, review count, image URL, product URL, and a sponsored flag. Pagination and four sort orders are supported out of the box.
Endpoints
The API exposes two endpoints. search_products accepts a required query string and returns an array of product objects under the products field. Each object carries asin, title, price, currency, rating, review_count, image_url, product_url, and is_sponsored. The response also includes page, query, and total_on_page so you can track pagination state. get_search_autocomplete accepts a prefix string and returns up to 10 suggested search terms in a suggestions array alongside the original prefix.
Sorting and Pagination
search_products supports an optional sort parameter with four accepted values: price-asc-rank (lowest price first), price-desc-rank (highest price first), review-rank (top reviewed), and date-desc-rank (newest arrivals). Pagination is controlled via the page integer parameter. If omitted, the first page is returned by default.
Coverage and Scope
This API is scoped specifically to amazon.eg, the Egyptian Amazon storefront. Prices are returned with a currency field reflecting the local Egyptian Pound denomination. Sponsored product status is surfaced per listing via the is_sponsored boolean, which is useful for filtering organic results from paid placements in any analysis pipeline.
- Track price changes on amazon.eg product listings by polling
search_productswith a fixedqueryand comparing returnedpricevalues over time. - Build a product comparison tool that surfaces
ratingandreview_countfor competing items in the Egyptian market. - Power a search-as-you-type input in a shopping app using
get_search_autocompletewith a user's partialprefix. - Identify sponsored vs. organic product placement by filtering results on the
is_sponsoredfield fromsearch_products. - Aggregate bestseller data by sorting with
review-rankand extractingasin,title, andimage_urlfor category listings. - Seed a product catalog with Egyptian market ASINs, titles, and image URLs returned by
search_products. - Analyze pricing distribution across a keyword category by sorting with
price-asc-rankandprice-desc-rankon successive requests.
| 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 Egypt have an official developer API?+
What does `search_products` return for each product, and can I filter by category?+
asin, title, price, currency, rating, review_count, image_url, product_url, and is_sponsored. Category filtering is not a supported parameter — the endpoint accepts query, page, and sort. You can narrow results by including a category term directly in your query string as a workaround.Does the API return seller information, product descriptions, or variant details?+
How many autocomplete suggestions does `get_search_autocomplete` return, and are they ranked?+
suggestions array. The suggestions reflect the same ordering Amazon Egypt surfaces for the given prefix, but no explicit rank score field is included in the response.Is it possible to retrieve customer reviews or Q&A content through this API?+
rating (aggregate star score) and review_count from search listings, but individual review text, reviewer profiles, and Q&A threads are not exposed. You can fork this API on Parse and revise it to add a reviews endpoint targeting a specific ASIN.