Skip to main content
The bestsellers endpoint returns the current Amazon best-seller list for a given category, along with each product’s rank, price, rating, and Prime eligibility. The response also includes full category hierarchy — parent category, current category breadcrumb, and child categories — so you can build navigable category trees in your application.
Use the bestseller-categories endpoint to discover valid categoryId values for the marketplace you’re querying.

Request

string
default:"US"
The Amazon marketplace to query. Supported values: US, UK, CA, DE, FR, IT, ES, AU, IN, MX, BR, JP, PL. Defaults to US.
string
The Amazon best-seller category ID to retrieve rankings for. You can obtain valid IDs from the bestseller-categories endpoint. Either categoryId or url must be provided.
string
A direct Amazon best-sellers page URL (e.g., https://www.amazon.com/Best-Sellers-Electronics/zgbs/electronics/). Use this as an alternative to categoryId when you have a URL on hand.
integer
Page number to retrieve. Minimum value: 1.
integer
Number of products to return per page. Minimum value: 1.

Example request


Response

A successful response returns data.amazonBestSellers with ranked product results and full category context.
object

Example response


Error handling

You must supply either a categoryId or a url parameter. Providing neither, or supplying a categoryId that does not exist in the selected marketplace, returns a 400 error.