
Extract Amazon product reviews by ASIN with a single API call. No login required. Get ratings, review text, verified status, and variants for sentiment analysis and monitoring
Install this skill for me:
https://github.com/browser-act/skills/tree/main/amazon-reviews-api-skill
BrowserAct’s Amazon Reviews API lets you extract reviews for a specific Amazon product through a single API request — without building crawler scripts, or requiring an Amazon account login.
Simply provide an ASIN . BrowserAct opens the product’s public review pages, iterates through review pages as needed, and returns clean, structured review data directly via API.
This API is ideal for product feedback analysis, competitor review mining, QA insights, and sentiment monitoring.
The API extracts structured review fields from the selected product, including:
Collect reviews from publicly accessible Amazon review pages without requiring user authentication.
Pull reviews for an exact product using ASIN, avoiding keyword noise and mismatched listings.
No proxy configuration, crawler scripts, or anti-bot handling to manage. BrowserAct runs the workflow in the background.
Consistent, structured review records designed for sentiment analysis, dashboards, and automated reporting.
In short:
ASIN → API call → Reviews delivered
Parameter | Description | Default | Supported values (examples) |
ASIN | Amazon Standard Identification Number of the product | B07TS6R1SF | Any valid ASIN |
Click Get code, replace the API key, and run the code directly in your application.
API Key, get from: https://www.browseract.com/reception/integrations
API_KEY = os.getenv("BROWSERACT_API_KEY", "app-abcdefghijklmn")
Replace:
app-abcdefghijklmn
with your own API key, and the code will run successfully.
You can find your API key in the API & Integrations section of the BrowserAct dashboard.

B07TS6R1SF
The API returns a structured list of reviews for the specified ASIN.
Each review item is delivered in a consistent, machine-readable format, for example:
{
"Commentator": "Rick H",
"Commenter profile link": "https://www.amazon.com/gp/profile/amzn1.account.AGT3GHWX63QIKE6JLXHCHCVK43KA/ref=cm_cr_dp_d_gw_tr?ie=UTF8",
"Rating": 5,
"reviewTitle": "This is a great quality, sleek and sturdy non-slip design, made from aluminum.",
"review Description": "The iClever Bluetooth keyboard is a high quality, well built sturdy keyboard made from aluminum...",
"Published at": "December 12, 2025",
"Country": "the United States",
"Variant": "Color: gray black",
"Is Verified": true
}
To create your own Amazon Reviews API, simply start from a prebuilt template.
Once created, you can use the BrowserAct API to invoke your workflow programmatically and retrieve Amazon reviews directly in your application.