Amazon
Product Reviews
Buyer reviews for an Amazon listing, page by page: rating, title, text, date, author and helpful votes, plus the review count and seller the page header states. Requires your own signed-in Amazon cookies, passed as `cookies` — the pager answers a session and nothing else, so a call without one is refused rather than answered with an empty page.
/v1/amazon/product-reviews10 creditsheavyGetting every page
This endpoint pages. To collect all of it in one job, queue a batch task instead of walking the pages yourself — it charges the same 10 credits per page and you poll for the result.
curl --request POST 'https://data-api.roketfy.com/v1/tasks' \
--header 'Authorization: Bearer YOUR_TOKEN' \
--header 'Content-Type: application/json' \
--data '{
"platform": "amazon",
"endpoint": "product-reviews",
"params": {
"url": "<url>",
"asin": "<asin>",
"cookies": "<cookies>"
}
}'See batch tasks for the full lifecycle.
Parameters
Supply at least one of url or asin. Neither is required on its own.
| Name | Type | Required | Description |
|---|---|---|---|
| url | string | one of | The product's Amazon URL — its marketplace and ASIN are both read off it: https://www.amazon.com.tr/dp/B0CHX1W1XY. Either this or asin. |
| asin | string | one of | The 10-character ASIN, e.g. "B0CHX1W1XY". Either this or url. |
| domain | string | optional | Which marketplace the ASIN belongs to. Defaults to amazon.com.tr, and is ignored when a url is given. One of: amazon.com.tr, amazon.com, amazon.co.uk, amazon.de, amazon.fr, amazon.it, amazon.es, amazon.nl, amazon.se, amazon.pl, amazon.ae, amazon.sa, +7 more.Show all 19amazon.com.tr, amazon.com, amazon.co.uk, amazon.de, amazon.fr, amazon.it, amazon.es, amazon.nl, amazon.se, amazon.pl, amazon.ae, amazon.sa, amazon.ca, amazon.com.mx, amazon.com.br, amazon.co.jp, amazon.in, amazon.com.au, amazon.sg |
| page | number | optional | One-based page number. Amazon pages 10 reviews at a time. |
| starFilter | string | optional | all_stars (everything), positive (3-5 stars) or critical (1-3 stars) — Amazon's own three filters. One of: all_stars, positive, critical. |
| cookies | string | required | A signed-in Amazon Cookie header, copied out of a browser — see /docs/amazon-cookies for how. Required: Amazon answers an anonymous request with a logged-out page carrying no reviews at all, so a call without one is refused rather than charged for that. |
Request
curl --request GET 'https://data-api.roketfy.com/v1/amazon/product-reviews?url=%3Curl%3E' \
--header 'Authorization: Bearer YOUR_TOKEN'MCP
Available to AI agents as the tool amazon_product_reviews, with the same parameters and the same credit cost.