API reference
Amazon Product API
Title, byline, variants, price, Best Sellers Rank, rating and product details of any ASIN — as queued tasks, live, or as history.
Product data for any ASIN on 12 Amazon marketplaces: title, byline (usually the brand), the selected variant and its siblings, price, Best Sellers Rank with category ranks, average rating and ratings count, the main image and every product detail the page lists.
Choose the method that fits the workload: the standard method (task_post → tasks_ready → task_get) for volume, priorities and webhooks; live for one interactive lookup; history for stored observations over time.
Endpoints
- POSTtask_postPost product tasksQueue up to 100 product lookups in one request and collect the results later.$0.0015–$0.0030 / task
- GETtasks_readyList completed tasksCompleted product tasks that have not been collected yet — up to 1,000 per call.Free
- GETtask_get/{id}Get a task resultThe result of a product task posted with task_post.Free
- POSTliveGet product data liveProduct data in the same request — for interactive features and one-off lookups.$0.0040 / request
- POSThistoryGet product historyStored observations of a product, newest first — BSR, price and rating over time.$0.0005 / product
Standard workflow
- 01Post tasks
Send up to 100 task objects per request, each with an ASIN and marketplace. Set a tag to match results to your records, and optionally a postback or pingback URL.
- 02Wait for completion
Poll tasks_ready for completed tasks, or let the API call your webhook as soon as each task is done.
- 03Collect results
Call task_get for each id. Results stay available for 30 days.
Need one result right now? Use live. Need the same products regularly? Use monitoring.
Ready task
One completed task that has not been collected yet.
idTask id.
tagTag you set in task_post.
endpointPath to collect the result from.
date_postedWhen the task was posted, ISO 8601 in UTC.
Product object
Returned by task_get and live (result[0]), by history (every item) and inside monitoring subscriptions. Text is returned as the marketplace shows it, in its language. Any field that cannot be read reliably is null (empty for byline, variants and details) — values are never guessed.
Example, rendered
B0EXAMPLE1·amazon.com
okAcme Wireless Noise Cancelling Headphones, Black
Acme
- BlackB0EXAMPLE1
- WhiteB0EXAMPLE2
- Navy BlueB0EXAMPLE3
- Price
$59.99
USD
- Best Sellers Rank
#1,432
in Electronics
- Rating
4.5out of 5
2,318 ratings
- #12 in Over-Ear Headphones
- #31 in Noise-Cancelling Headphones
details8 pairs
- brand
- Acme
- color
- Black
- connectivity_
technology - Wireless
- date_
first_ available - March 4, 2025
- item_
model_ number - AC-WH400
- item_
weight - 8.8 ounces
- manufacturer
- Acme
- product_
dimensions - 7.3 x 6.5 x 3.1 inches
observed 24 Sept 2026, 12:35 UTC · parser 2026.09.2
asinASIN that was observed (uppercased).
marketplaceMarketplace code.
urlProduct page URL on the marketplace.
observed_atWhen the product page was read, ISO 8601 in UTC.
statusok — the page was read; no_bsr — the page has no Best Sellers Rank; not_found — the product does not exist on this marketplace.
titleProduct title as shown on the page.
bylineNames shown under the title, in page order — usually the brand of the product, from its "Visit the … Store" or "Brand: …" line. Empty when the page shows none or they could not be read.
variantLabel of the selected variant as the page shows it — a colour, size, style or configuration. When several options are selected (colour and size), their labels are joined with , , for example Black, Large. null when the page offers no variants.
variantsSibling variants listed on the page, each with name and asin — the selected one included. Empty when the page lists none.
variants[].nameLabel of the variant as the page shows it.
variants[].asinASIN of that variant.
priceCurrent price, or null when the page shows none.
price.amountPrice in the marketplace currency.
price.currencyISO 4217 currency code, for example USD.
bsrBest Sellers Rank, or null when status is no_bsr or not_found.
bsr.rankRank in the main category.
bsr.categoryMain category as the marketplace shows it, for example Electronics or Home & Kitchen.
bsr.subcategoriesRanks in subcategories, each with rank and category.
ratingAverage customer rating from 1.0 to 5.0.
ratings_countNumber of customer ratings.
image_urlURL of the main product image.
detailsEvery label → value pair of the page's product details — the details list and the product-information, technical-details, overview and product-facts tables — except the Best Sellers Rank and the customer rating, which are bsr, rating and ratings_count. Keys are the labels lower-cased, with every run of spaces and punctuation turned into _; they stay in the marketplace's language (item_weight on com, artikelgewicht on de, メーカー on jp) and are sorted. Values are the text as shown, trimmed, without invisible characters. At most 60 entries; a value longer than 500 characters is cut. {} when nothing could be read.
details.<key>One value as the page shows it, for example 8.8 ounces for item_weight.
parser_versionVersion of the parser that produced this object.