Nexscope logo

Amazon Reviews List API

REST API and MCP service documentation generated from server-side API definitions. Responses shown here are the direct payload returned by each API execution.

API selector
Amazon Marketplace Intelligence

API overview

Fetch and analyze Amazon product reviews by ASIN, supporting 15 marketplaces (including US) with star rating filtering.

Try this API
Endpoint
https://claw-callback.nexscope.ai/api/skill-api/v1/skills/amazon-reviews-list/run
MCP method
nexscope_amazon_reviews_list

Authentication

All run endpoints require a user API key. Send it as a bearer token in the Authorization header.

Authorization: Bearer nk_xxxxxxxxxxxxxxxxx
Missing or invalid API keys return an authentication error. Manage keys from .
POSThttps://claw-callback.nexscope.ai/api/skill-api/v1/skills/amazon-reviews-list/run

Run an API

Request parameters documented by ecommerce.amazon-reviews-list.

Slugamazon-reviews-list
HeadersAuthorization: Bearer nk_...
Content-Type: application/json
Request bodyAPI-specific JSON object.
Response bodyDirect API response payload. No data/result wrapper is added.

Status codes

CodeDescription
200API executed successfully. Body is the direct response payload.
400Request JSON or required API parameters are invalid.
401API key is missing, invalid, or cannot be matched to a user.
5xxAPI execution or upstream service failed.

Example request

curl -X POST https://api.nexscope.ai/api/skill-api/v1/skills/amazon-reviews-list/run \
  -H "Authorization: Bearer nk_xxxxxxxxxxxxxxxxx" \
  -H "Content-Type: application/json" \
  -d '{   "asin": "B072MQ5BRX",   "domainCode": "com",   "star4Num": 1,   "star3Num": 1,   "star2Num": 1,   "star1Num": 1,   "star5Num": 1 }'
All categories/ Amazon Marketplace Intelligence
POSThttps://claw-callback.nexscope.ai/api/skill-api/v1/skills/amazon-reviews-list/run

Run this API

Send a JSON request to execute this API and receive the direct response payload.

Open tester

Endpoint

MethodPOST
Pathhttps://claw-callback.nexscope.ai/api/skill-api/v1/skills/amazon-reviews-list/run
AuthBearer API key
Content-Typeapplication/json

Request body

NameTypeRequiredDescription
asinstringrequired
Amazon product ASIN
Example: B072MQ5BRX
domainCodestringoptional
Amazon domain code, default com. Options: com, ca, co.uk, in, de, fr, it, es, co.jp, com.au, com.br, nl, se, com.mx, ae. Use com for the US site
star1Numintegeroptional
Number of 1-star reviews, default 10, max 100
Example: 1
star2Numintegeroptional
Number of 2-star reviews, default 10, max 100
Example: 1
star3Numintegeroptional
Number of 3-star reviews, default 10, max 100
Example: 1
star4Numintegeroptional
Number of 4-star reviews, default 10, max 100
Example: 1
star5Numintegeroptional
Number of 5-star reviews, default 10, max 100
Example: 1
filterByKeywordstringoptional
Filter reviews by keyword, max length 1000 characters
Example: phone case
sortBystringoptional
Review sort order: recent (most recent reviews) or helpful (most helpful reviews), default recent
reviewerTypestringoptional
Reviewer type: all_reviews (all reviews) or avp_only_reviews (verified purchases only), default all_reviews
mediaTypestringoptional
Media type: all_contents (all content) or media_reviews_only (reviews with media only), default all_contents
formatTypestringoptional
Format type: all_formats (all formats) or current_format (current format), default all_formats

Request example

{
  "asin": "B072MQ5BRX",
  "domainCode": "com",
  "star4Num": 1,
  "star3Num": 1,
  "star2Num": 1,
  "star1Num": 1,
  "star5Num": 1
}

Response body

Returns the documented upstream API response directly without an additional wrapper.

NameTypeRequiredDescription
totalintegeroptional
Total review count
Example: 1
dataarrayoptional
Review list (see review object below)
Example: []
columnsarrayoptional
Rendered columns
Example: []
costTokenintegeroptional
Total token consumption
Example: 1
typestringoptional
Render style
columns[].reviewIdstringoptional
Review ID
Example: example-id
columns[].asinstringoptional
Product ASIN
Example: B072MQ5BRX
columns[].titlestringoptional
Review title
columns[].textstringoptional
Review content
columns[].ratingstringoptional
Rating
columns[].datestringoptional
Review date
Example: 2026-01-01
columns[].userNamestringoptional
Reviewer name
columns[].verifiedbooleanoptional
Whether verified purchase
Example: false
columns[].vinebooleanoptional
Whether Vine Voice review
Example: false
columns[].numberOfHelpfulintegeroptional
Helpful count
Example: 1
columns[].imageUrlListarrayoptional
Review image list
Example: []
columns[].videoUrlListarrayoptional
Review video list
Example: []
columns[].domainCodestringoptional
Country code
columns[].productTitlestringoptional
Product title
columns[].productRatingstringoptional
Product rating
columns[].countRatingsintegeroptional
Product rating count
Example: 1
columns[].countReviewsintegeroptional
Product review count
Example: 1
columns[].variationIdstringoptional
Variation ID
Example: example-id
columns[].variationListarrayoptional
Variation list
Example: []
columns[].profilePathstringoptional
Reviewer profile path
columns[].currentPageintegeroptional
Current page number
Example: 1
columns[].sortStrategystringoptional
Sort strategy
columns[].statusCodeintegeroptional
Status code
Example: 1
columns[].statusMessagestringoptional
Status message
columns[].localeobjectoptional
Locale information
Example: {}
columns[].reviewSummaryobjectoptional
Review summary data
Example: {}
columns[].filtersobjectoptional
Applied filter conditions
Example: {}
errcodeintegeroptional
Upstream status code returned by the provider.
errmsgstringoptional
Upstream status message returned by the provider.
codestringoptional
Provider-specific status code.
msgstringoptional
Provider-specific status message.
messagestringoptional
Provider-specific message.
titlestringoptional
Provider-specific response title.
sourceTypestringoptional
Provider-specific source platform type.
sourceToolstringoptional
Provider-specific source tool name.
costTimeintegeroptional
Execution time reported by the upstream provider.
pageintegeroptional
Current page returned by the upstream provider.
pageSizeintegeroptional
Page size returned by the upstream provider.
pageItemCountintegeroptional
Item count on the current page returned by the upstream provider.
totalPageintegeroptional
Total page count returned by the upstream provider.
dataSnapshotMonthstringoptional
Data snapshot month returned by the upstream provider.

Response example

Direct response payload. No extra wrapper is added.

{
  "total": 1,
  "data": [],
  "columns": [
    {
      "reviewId": "example-id",
      "asin": "B072MQ5BRX",
      "date": "2026-01-01",
      "verified": false,
      "vine": false,
      "numberOfHelpful": 1,
      "imageUrlList": [],
      "videoUrlList": [],
      "countRatings": 1,
      "countReviews": 1,
      "variationId": "example-id",
      "variationList": [],
      "currentPage": 1,
      "statusCode": 1,
      "locale": {},
      "reviewSummary": {},
      "filters": {}
    }
  ],
  "costToken": 1
}

Responses

CodeDescription
200API executed successfully. Body is the direct response payload.
400Request JSON or required API parameters are invalid.
401API key is missing, invalid, or cannot be matched to a user.
5xxAPI execution or upstream service failed.

Data source, freshness, and limitations

Source, freshness, coverage, rate limits, and estimation notes are not specified in this API definition unless they appear in the request or response field documentation above. Do not assume official marketplace data or real-time freshness when it is not explicitly documented.

Related APIs

MCP

Use the MCP endpoint when an agent needs to discover and call API tools with JSON-RPC.

GET /api/skill-api/v1/mcp
POST /api/skill-api/v1/mcp
Authorization: Bearer nk_xxxxxxxxxxxxxxxxx
Content-Type: application/json

Call a tool

{
  "jsonrpc": "2.0",
  "id": "tool-call-1",
  "method": "tools/call",
  "params": {
    "name": "nexscope_amazon_reviews_list",
    "arguments": {
      "asin": "B072MQ5BRX",
      "domainCode": "com",
      "star4Num": 1,
      "star3Num": 1,
      "star2Num": 1,
      "star1Num": 1,
      "star5Num": 1
    }
  }
}

Online test

Execute the current API with your API key and JSON payload.

Try it

Send a real request with the same contract shown in the reference.

Endpoint
https://claw-callback.nexscope.ai/api/skill-api/v1/skills/amazon-reviews-list/run
MCP method
nexscope_amazon_reviews_list
cURL
curl -X POST \
  https://claw-callback.nexscope.ai/api/skill-api/v1/skills/amazon-reviews-list/run \
  -H "Authorization: Bearer nk-..." \
  -H "Content-Type: application/json" \
  -d '{ "asin": "B072MQ5BRX", "domainCode": "com", "star4Num": 1, "star3Num": 1, "star2Num": 1, "star1Num": 1, "star5Num": 1 }'
Response
No response yet. Run the request to see the response here.