DocumentationDashboard

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.

GET/v1/amazon/product-reviews10 creditsheavy

Getting 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.

NameTypeRequiredDescription
urlstringone ofThe product's Amazon URL — its marketplace and ASIN are both read off it: https://www.amazon.com.tr/dp/B0CHX1W1XY. Either this or asin.
asinstringone ofThe 10-character ASIN, e.g. "B0CHX1W1XY". Either this or url.
domainstringoptionalWhich 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 19

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, amazon.ca, amazon.com.mx, amazon.com.br, amazon.co.jp, amazon.in, amazon.com.au, amazon.sg

pagenumberoptionalOne-based page number. Amazon pages 10 reviews at a time.
starFilterstringoptionalall_stars (everything), positive (3-5 stars) or critical (1-3 stars) — Amazon's own three filters. One of: all_stars, positive, critical.
cookiesstringrequiredA 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.