Discover/Amazon API
live

Amazon APIamazon.com

Access Amazon products, reviews, best sellers, deals, and seller profiles via a single API. 9 endpoints covering search, ASIN details, offers, and cart management.

Endpoint health
verified 11h ago
search_products
get_deals
get_product_reviews
get_best_sellers
get_product_details
5/5 passing latest checkself-healing
Endpoints
9
Updated
21d ago

What is the Amazon API?

The Amazon API covers 9 endpoints that let you search products by keyword, retrieve full ASIN-level details, pull customer reviews, and monitor current deals and best sellers. The search_products endpoint returns paginated results with title, price, rating, review count, and image URL across any Amazon department. The get_product_details endpoint goes deeper with brand, bullet-point descriptions, technical specifications, and a high-resolution image array.

Try it
Page number for pagination (1-based).
Sort order for results.
Search keyword (e.g. 'usb cable', 'laptop').
Amazon department/category code passed as the 'i' parameter (e.g. 'electronics', 'books').
api.parse.bot/scraper/e1dc349c-16b6-498a-a7e6-2462aef5b5b4/<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/e1dc349c-16b6-498a-a7e6-2462aef5b5b4/search_products?page=1&sort=price-asc-rank&query=usb+cable&category=electronics' \
  -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-com-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 SDK — search products, drill into details and reviews, browse deals."""
from parse_apis.amazon_scraper_api import Amazon, Sort, ProductNotFound

client = Amazon()

# Search for products sorted by review ranking, cap total items
for product in client.products.search(query="wireless headphones", sort=Sort.REVIEW_RANK, limit=5):
    print(product.title, product.price, product.rating)

# Drill into the first result for full details
product = client.products.search(query="usb cable", limit=1).first()
if product:
    detail = product.details()
    print(detail.title, detail.brand, detail.price)
    for spec_name, spec_value in detail.specifications.items():
        print(f"  {spec_name}: {spec_value}")

# Walk the product's reviews sub-resource
if product:
    for review in product.reviews.list(limit=3):
        print(review.author, review.rating, review.date)

# Browse best sellers
for item in client.bestsellers.list(limit=5):
    print(item.rank, item.title, item.price)

# Typed error handling on a point lookup
try:
    found = client.products.get(asin="B09V3KXJPB")
    print(found.title, found.rating)
except ProductNotFound as exc:
    print(f"Product not found: {exc.asin}")

# Current deals
for deal in client.deals.list(limit=3):
    print(deal.title, deal.price)

print("exercised: products.search / products.get / product.details / product.reviews.list / bestsellers.list / deals.list")
All endpoints · 9 totalmissing one? ·

Search for products on Amazon by keyword. Returns paginated results with product title, price, rating, and image. Supports optional category filtering and sort order.

Input
ParamTypeDescription
pageintegerPage number for pagination (1-based).
sortstringSort order for results.
queryrequiredstringSearch keyword (e.g. 'usb cable', 'laptop').
categorystringAmazon department/category code passed as the 'i' parameter (e.g. 'electronics', 'books').
Response
{
  "type": "object",
  "fields": {
    "page": "string indicating the current page number",
    "products": "array of product objects with asin, title, price, rating, review_count, and image"
  },
  "sample": {
    "data": {
      "page": "1",
      "products": [
        {
          "asin": "B07DD5YHMH",
          "image": "https://m.media-amazon.com/images/I/715afhb+qJL._AC_UY218_.jpg",
          "price": "$8.99",
          "title": "Anker Cable [2 Pack 3ft], USB A to USB C Cable",
          "rating": "4.7",
          "review_count": null
        }
      ]
    },
    "status": "success"
  }
}

About the Amazon API

Product Search and Detail

The search_products endpoint accepts a required query string plus optional category, sort, and page parameters, returning arrays of product objects each containing asin, title, price, rating, review_count, and image. The get_product_details endpoint takes a single asin and returns the full product record: brand, price, title, images (array), rating, description (bullet-point array), review_count, and a specifications object that maps attribute names to values — useful for structured comparison across similar products.

Reviews, Offers, and Sellers

The get_product_reviews endpoint returns per-review objects with author, rating, title, body, and date, alongside a summary object containing the overall star rating and total review count. The get_product_offers endpoint retrieves all available seller offers for a given ASIN. Seller-side data is accessible via get_seller_profile, which returns name, seller_id, and rating_summary for any valid Amazon seller ID.

Best Sellers, Deals, and Cart

The get_best_sellers endpoint accepts an optional category path segment and returns ranked items with rank, asin, title, price, rating, and image. Without a category, it defaults to the overall best sellers list. The get_deals endpoint requires no input and returns current deal products with asin, title, price, and image. For cart operations, add_to_cart accepts an asin and optional quantity, and get_cart returns the current items array and subtotal string.

Reliability & maintenanceVerified

The Amazon API is a managed, monitored endpoint for amazon.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when amazon.com 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.com 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
11h ago
Latest check
5/5 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
  • Build a price-comparison tool using search_products and get_product_details to track price changes across ASINs.
  • Aggregate customer sentiment by extracting review body, rating, and date fields from get_product_reviews.
  • Monitor Amazon best seller rankings by category using get_best_sellers with the category parameter.
  • Scrape daily deal inventory from get_deals to power a deal-alert or coupon site.
  • Enrich product catalog data with specifications and description bullet points from get_product_details.
  • Evaluate third-party sellers before purchase by fetching rating_summary via get_seller_profile.
  • Automate cart population for procurement workflows using add_to_cart with specific ASINs and quantities.
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 have an official developer API?+
Yes. Amazon offers the Product Advertising API 5.0 (PA-API), documented at https://webservices.amazon.com/paapi5/documentation/. It requires an Associates account and approval, and its data access is tied to affiliate program terms.
What does `get_product_offers` return beyond the basic product price?+
The endpoint returns all seller offers associated with a given ASIN as an array. Each offer can include third-party seller pricing alongside Amazon's own listing, allowing you to surface the full range of buy options rather than just the featured price shown in get_product_details.
Does the API cover Amazon product Q&A or community answers?+
Not currently. The API covers reviews, seller offers, product descriptions, specifications, deals, and best sellers. You can fork it on Parse and revise to add an endpoint targeting product Q&A data.
How does pagination work in `search_products`?+
The page parameter is an integer (1-based) and the response includes a page field echoing the current page. Results per page match Amazon's standard search result pages. There is no explicit total_pages field in the response, so you iterate until the returned products array is empty or shorter than a full page.
Does the API return Amazon Prime eligibility or shipping speed data?+
Not currently. The get_product_details and get_product_offers endpoints return price, brand, specifications, and offer arrays but do not include Prime badge status or delivery estimates. You can fork the API on Parse and revise to add those fields if your use case requires them.
Page content last updated . Spec covers 9 endpoints from amazon.com.
Related APIs in EcommerceSee all →