Discover/Amazon API
live

Amazon APIamazon.eg

Search Amazon Egypt (amazon.eg) products by keyword. Returns ASINs, prices, ratings, review counts, images, and autocomplete suggestions via 2 endpoints.

Endpoint health
verified 4d ago
search_products
get_search_autocomplete
2/2 passing latest checkself-healing
Endpoints
2
Updated
26d ago

What is the Amazon 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.

Try it
Page number for pagination
Sort order for results
Search keyword
api.parse.bot/scraper/6b1d4645-746f-42aa-a5ac-bf5f861d41f6/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Call it over HTTPgrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/6b1d4645-746f-42aa-a5ac-bf5f861d41f6/search_products?page=1&sort=price-asc-rank&query=laptop' \
  -H 'X-API-Key: $PARSE_API_KEY'
Python SDK · recommended

Typed, relational, agent-ready

A generated client with real types, enums, and the links between objects — the structure a flat JSON response can't carry. Autocompletes in your editor and reads cleanly to coding agents.

  • Fully typed · autocompletes
  • Objects link to objects
  • Typed errors & pagination

Typed Python client. Set up the SDK in your uv project, then pull this API’s typed client:

uv add parse-sdk
uv run parse init
uv run parse add --marketplace amazon-eg-api

uv run parse add --marketplace pulls a pinned snapshot of this canonical API — it won’t change underneath you. To customize it, subscribe and swap to your own copy.

"""Walkthrough: Amazon Egypt API — search products and get autocomplete suggestions."""
from parse_apis.amazon_egypt_api import AmazonEg, Sort, ProductSearchFailed

client = AmazonEg()

# Get autocomplete suggestions for a partial keyword
suggestions = client.autocompletes.get(prefix="laptop")
print(f"Suggestions for '{suggestions.prefix}': {suggestions.suggestions[:5]}")

# Search products sorted by price ascending, capped at 5 results
for product in client.products.search(query="laptop", sort=Sort.PRICE_ASC, limit=5):
    print(product.title, product.price, product.currency)

# Drill into one result with .first()
top = client.products.search(query="headphones", sort=Sort.REVIEW_RANK, limit=1).first()
if top:
    print(top.asin, top.title, top.is_sponsored)

# Typed error handling around a search call
try:
    for p in client.products.search(query="gaming mouse", limit=3):
        print(p.asin, p.title, p.price)
except ProductSearchFailed as exc:
    print(f"Search blocked: {exc}")

print("exercised: products.search / autocompletes.get / Sort enum / ProductSearchFailed error")
All endpoints · 2 totalmissing one? ·

Full-text search over Amazon Egypt product listings by keyword. Returns products with ASIN, title, price, rating, review count, image, and URL. Supports pagination via page number and server-side sorting. Each page returns up to ~48 results depending on availability.

Input
ParamTypeDescription
pageintegerPage number for pagination
sortstringSort order for results
queryrequiredstringSearch keyword
Response
{
  "type": "object",
  "fields": {
    "page": "current page number",
    "query": "search keyword used",
    "products": "array of product objects",
    "total_on_page": "number of products returned on this page"
  },
  "sample": {
    "data": {
      "page": 1,
      "query": "laptop",
      "products": [
        {
          "asin": "B0G42QP7MC",
          "price": 41899,
          "title": "ASUS TUF F16 [FX607VJB-RL165W] Intel Core 5-210H /16GB DDR5 /512GB SSD/RTX 3050 6GB DDR6 /FHD+ 144Hz 16-inch/Win 11/1 Year Perfect Warranty Pro",
          "rating": "5.0",
          "currency": "EGP",
          "image_url": "https://m.media-amazon.com/images/I/71IlIIev6LL._AC_UL320_.jpg",
          "product_url": "https://www.amazon.eg/-/en/ASUS-FX607VJB-RL165W-16-inch-Perfect-Warranty/dp/B0G42QP7MC/ref=sr_1_1",
          "is_sponsored": false,
          "review_count": 0
        }
      ],
      "total_on_page": 48
    },
    "status": "success"
  }
}

About the Amazon API

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.

Reliability & maintenanceVerified

The Amazon API is a managed, monitored endpoint for amazon.eg — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when amazon.eg changes and a check fails, the API is automatically queued for repair and re-verified. It is built to keep working as the site underneath it changes.

This isn't an official amazon.eg API — it's an independent, maintained REST wrapper over public data. Where the source has no official API (or only a limited one), Parse gives you a stable contract over a source that never promised one, and keeps it current. Need a new endpoint or field? You can revise it yourself in plain English and the agent rebuilds it against the live site in minutes — contributing the change back to the shared API is free.

Last verified
4d ago
Latest check
2/2 endpoints passing
Maintenance
Monitored & self-healing
Will this API break when the source site changes?+
It's built not to. Every endpoint is health-checked on a schedule with automated test probes. When the source site changes and a check fails, the API is automatically queued for repair and re-verified — that's the self-healing layer. Each API page shows when its endpoints were last verified. And because marketplace APIs are shared, any fix reaches everyone using it.
Is this an official API from the source site?+
No — Parse APIs are independent, managed REST wrappers over publicly available data. That is the point: where a site has no official API (or only a limited one), Parse gives you a maintained, monitored endpoint for that data and keeps it working as the site changes — so you get a stable contract over a source that never promised one.
Can I fix or extend this API myself if I need a new endpoint or field?+
Yes — and you don't have to wait on us. This API was generated by the Parse agent, which stays attached. Describe the change in plain English ("add an endpoint that returns reviews", "fix the price field") in the revise box on the API page or via the revise_api MCP tool, and the agent rebuilds it against the live site in minutes. Contributing the change back to the public API is free.
What happens if I call an endpoint that has an issue?+
Errors are machine-readable: a bad call returns a clean status with the list of available endpoints and a repair hint, so an agent (or you) can recover or trigger a fix instead of failing silently. Confirmed failures feed the automatic repair queue.
Common use cases
  • Track price changes on amazon.eg product listings by polling search_products with a fixed query and comparing returned price values over time.
  • Build a product comparison tool that surfaces rating and review_count for competing items in the Egyptian market.
  • Power a search-as-you-type input in a shopping app using get_search_autocomplete with a user's partial prefix.
  • Identify sponsored vs. organic product placement by filtering results on the is_sponsored field from search_products.
  • Aggregate bestseller data by sorting with review-rank and extracting asin, title, and image_url for 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-rank and price-desc-rank on successive requests.
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 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 Egypt have an official developer API?+
Amazon offers the Amazon Product Advertising API (amazon.com/affiliate-program/tools/) for affiliates globally, but access is restricted by region, requires an affiliate account, and does not have a dedicated amazon.eg endpoint. This Parse API provides structured product data for the Egyptian storefront without those access barriers.
What does `search_products` return for each product, and can I filter by category?+
Each product object includes 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?+
Not currently. The API covers search-level listing data: title, price, rating, review count, image, ASIN, and sponsored status. Seller names, bullet-point descriptions, product variants, and detailed specifications are not included. You can fork this API on Parse and revise it to add a product detail endpoint that returns those fields.
How many autocomplete suggestions does `get_search_autocomplete` return, and are they ranked?+
The endpoint returns up to 10 suggestions in the 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?+
Not currently. The API returns 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.
Page content last updated . Spec covers 2 endpoints from amazon.eg.
Related APIs in EcommerceSee all →
amazon.ae API
Find products and compare prices on Amazon.ae by searching across categories, viewing detailed product information, and discovering today's best deals and top-selling items. Browse electronics, books, fashion, or any product category to stay updated on the latest offers available on the platform.
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.
amazon.se API
Search Amazon Sweden for products by keyword with pagination support and retrieve detailed product information including prices, ratings, reviews, availability, and images by ASIN. Get autocomplete suggestions to refine your searches and discover products more efficiently.
amazon.in API
Search for products on Amazon India and retrieve detailed information including search suggestions, product details, and bestseller listings. Get instant autocomplete recommendations and access comprehensive product data to compare prices and features across the Indian marketplace.
amazon.co.uk API
Access data from amazon.co.uk.
amazon.de API
Search Amazon.de for products, retrieve detailed product information, customer reviews, seller and offer data, bestseller lists, and autocomplete suggestions.
amazon.com API
Search and browse Amazon products, reviews, offers, and deals, then manage your shopping cart all through a single integration. Get detailed product information, seller profiles, and best sellers to compare prices and make informed purchasing decisions.
amzn.to API
Search Amazon products and retrieve detailed information including pricing, reviews, and specifications, plus discover current best sellers across categories. Get real-time product data to compare options and find trending items on Amazon.