Amazon Product Detail API
REST API and MCP service documentation generated from server-side API definitions. Responses use the shared code, msg, and data envelope.
API selector
REST API and MCP service documentation generated from server-side API definitions. Responses use the shared code, msg, and data envelope.
Retrieve Amazon product details by ASIN, including content, images, specifications, pricing, ratings, reviews, and variants.
https://api.nexscope.ai/api/skill-api/v1/skills/amazon-product-detail/runnexscope_amazon_product_detailAll run endpoints require a user API key. Send it as a bearer token in the Authorization header.
Authorization: Bearer nk-xxxxxxxxxxxxxxxxxhttps://api.nexscope.ai/api/skill-api/v1/skills/amazon-product-detail/runRequest parameters documented by ecommerce.amazon-product-detail.
| Slug | amazon-product-detail |
| Headers | Authorization: Bearer nk-...Content-Type: application/json |
| Request body | API-specific JSON object. |
| Response body | Platform envelope: code, msg, data, ts, time, cost, traceId. Inspect data.status for asynchronous completion. |
| Code | Description |
|---|---|
| 200 | HTTP request completed. Check JSON code; only 0 indicates business success or acceptance. |
| 400 | Request JSON or required API parameters are invalid. |
| 401 | API key is missing, invalid, or cannot be matched to a user. |
| 5xx | API execution or upstream service failed. |
Replace YOUR_API_KEY, then run this command in your terminal.
curl -X POST 'https://api.nexscope.ai/api/skill-api/v1/skills/amazon-product-detail/run' \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"returnAuthorsReviews": false,
"asins": "B072MQ5BRX",
"returnBoughtTogether": false,
"returnRelatedProducts": false
}'https://api.nexscope.ai/api/skill-api/v1/skills/amazon-product-detail/runSend a JSON request to execute this API and receive the documented response payload.
| Method | POST |
| Path | https://api.nexscope.ai/api/skill-api/v1/skills/amazon-product-detail/run |
| Auth | Bearer API key |
| Content-Type | application/json |
| Name | Type | Required | Description |
|---|---|---|---|
asins | string | required | ASIN list, supports batch query, up to 40 ASINs. Format: ^[A-Z0-9]+(,[A-Z0-9]+){0,39}$. Example: B072MQ5BRX,B08N5WRWNW Example: B072MQ5BRX |
amazonDomain | string | optional | Amazon country site, default amazon.com. Options: amazon.com, amazon.co.uk, amazon.de, amazon.fr, amazon.it, amazon.es, amazon.co.jp, amazon.ca, amazon.com.au, amazon.com.br, amazon.in, amazon.nl, amazon.se, amazon.pl, amazon.sg, amazon.sa, amazon.ae, amazon.com.tr, amazon.com.mx, amazon.eg, amazon.cn, amazon.com.be |
language |
{
"returnAuthorsReviews": false,
"asins": "B072MQ5BRX",
"returnBoughtTogether": false,
"returnRelatedProducts": false
}Platform response envelope. code 0 indicates success or acceptance; data contains the business result.
{
"data": {
"total": 1,
"columns": [],
"costToken": 1,
"products": [
{
"asin": "B072MQ5BRX",
"price": 1,
"extractedPrice": 1,
"oldPrice": 1,
"extractedOldPrice": 1,
"rating": 1,
"ratings": 1,
"prime": false,
"asinUrl": "B072MQ5BRX",
"imageUrl": "https://example.com/image.jpg",
"productImageUrls": [],
"aboutItem": [],
"climatePledgeFriendly": false,
"snapEbtEligible": false,
"boughtLastMonthCount": 1,
"reviewsImages": [],
"pageFileUrl": "https://example.com/product.json",
"rawHtmlFile": "https://example.com/product.html",
"review": 1,
"fiveStar": 1,
"fourStar": 1,
"threeStar": 1,
"twoStar": 1,
"oneStar": 1,
"items": [],
"position": 1,
"image": "https://example.com/image.jpg",
"carouselImages": []
}
],
"asin": "B072MQ5BRX",
"extractedPrice": 1,
"extractedPriceUnit": 1,
"delivery": [],
"position": 1,
"extractedOldPrice": 1,
"rating": 1,
"reviews": 1,
"prime": false,
"sponsored": false,
"climatePledgeFriendly": false,
"badges": [],
"authorImage": "https://example.com/image.jpg",
"date": "2026-01-01",
"verifiedPurchase": false
},
"code": 0,
"msg": null,
"ts": "0",
"time": "2026-01-01 00:00:00",
"cost": "-1",
"traceId": null
}| Name | Type | Required | Description |
|---|---|---|---|
data | any | required | Data value used by this API operation. |
code | integer | required | 0 means accepted or successful; nonzero is a platform error. |
msg | string | null | required | Msg value used by this API operation. |
ts |
| Code | Description |
|---|---|
| 200 | HTTP request completed. Check JSON code; only 0 indicates business success or acceptance. |
| 400 | Request JSON or required API parameters are invalid. |
| 401 | API key is missing, invalid, or cannot be matched to a user. |
| 5xx | API execution or upstream service failed. |
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.
Connect remote agents through the standard MCP 2025-11-25 Streamable HTTP endpoint. Use OAuth 2.1 Authorization Code with PKCE, or an API key for compatibility.
POST https://api.nexscope.ai/api/skill-api/v2/mcp
MCP-Protocol-Version: 2025-11-25
Content-Type: application/jsonOAuth clients request the mcp:tools scope. The endpoint's 401 response advertises protected-resource metadata for authorization discovery.
{
"jsonrpc": "2.0",
"id": "tool-call-1",
"method": "tools/call",
"params": {
"name": "nexscope_amazon_product_detail",
"arguments": {
"returnAuthorsReviews": false,
"asins": "B072MQ5BRX",
"returnBoughtTogether": false,
"returnRelatedProducts": false
}
}
}Existing API-key clients can continue using the compatibility endpoint. New integrations should use MCP v2.
GET / POST /api/skill-api/v1/mcpExecute the current API with your API key and JSON payload.
Send a real request with the same contract shown in the reference.
https://api.nexscope.ai/api/skill-api/v1/skills/amazon-product-detail/runnexscope_amazon_product_detailcurl -X POST \
https://api.nexscope.ai/api/skill-api/v1/skills/amazon-product-detail/run \
-H "Authorization: Bearer nk-..." \
-H "Content-Type: application/json" \
-d '{ "returnAuthorsReviews": false, "asins": "B072MQ5BRX", "returnBoughtTogether": false, "returnRelatedProducts": false }'No response yet. Run the request to see the response here.
Analyze an Amazon ASIN’s traffic source mix and compare current, previous, newly entered, and exited keyword periods.
Search and filter Amazon products by price, sales, BSR, margin, ratings, fulfillment, badges, and seller origin across multiple marketplaces.
Browse Amazon category nodes by marketplace and parent identifier, or search category metadata by label for research and listing workflows.
Analyze Amazon competitors across 12 marketplaces using sales, BSR, pricing, ratings, and growth metrics. View request parameters, response fields, and MCP usage.
string |
| optional |
Language. Examples: en_US, de_DE, fr_FR, ja_JP, it_IT, es_ES, pt_BR, en_GB, zh_CN |
deliveryZip | string | optional | Delivery zip code, used to get delivery-related pricing. Examples: 10001 (New York, US), 10115 (Berlin, Germany), EC1A 1BB (London, UK) |
device | string | optional | Device type: desktop (default), mobile, tablet |
returnBoughtTogether | boolean | optional | Whether to return frequently bought together items (boughtTogether), default false Example: false |
returnRelatedProducts | boolean | optional | Whether to return related product list (relatedProducts), default false Example: false |
returnAuthorsReviews | boolean | optional | Whether to return author review list (authorsReviews), default false Example: false |
string |
| required |
Epoch milliseconds. |
time | string | required | Server local time: yyyy-MM-dd HH:mm:ss. |
cost | string | required | Elapsed milliseconds, never credits; -1 outside web requests. |
traceId | string | null | required | Trace id value used by this API operation. |
| Name | Type | Required | Description |
|---|---|---|---|
data | object | required | Data value used by this API operation. |
data.total | integer | optional | Total rows Example: 1 |
data.columns | array | optional | Rendered columns Example: [] |
data.type | string | optional | Render style Example: null |
data.costToken | integer | optional | Token consumption Example: 1 |
data.products | array | optional | Product list (see below) Example: [] |
data.products[].asin | string | optional | ASIN code Example: B072MQ5BRX |
data.products[].title | string | optional | Product title Example: null |
data.products[].brand | string | optional | Brand Example: null |
data.products[].price | string | optional | Price Example: null |
data.products[].extractedPrice | number | optional | Extracted price Example: 1 |
data.products[].oldPrice | string | optional | Original price Example: null |
data.products[].extractedOldPrice | number | optional | Extracted original price Example: 1 |
data.products[].currency | string | optional | Currency Example: null |
data.products[].discount | string | optional | Discount Example: null |
data.products[].saveWithCoupon | string | optional | Amount saved with coupon Example: null |
data.products[].rating | number | optional | Rating Example: 1 |
data.products[].ratings | integer | optional | Number of reviews Example: 1 |
data.products[].prime | boolean | optional | Whether it is a Prime item Example: false |
data.products[].stock | string | optional | Stock status Example: null |
data.products[].delivery | string | optional | Delivery information Example: null |
data.products[].link | string | optional | Link Example: null |
data.products[].linkClean | string | optional | Clean link Example: null |
data.products[].asinUrl | string | optional | Link Example: B072MQ5BRX |
data.products[].imageUrl | string | optional | Thumbnail Example: https://example.com/image.jpg |
data.products[].thumbnail | string | optional | Thumbnail Example: null |
data.products[].productImageUrls | array | optional | Product image URL list Example: [] |
data.products[].aboutItem | array | optional | Bullet points Example: [] |
data.products[].productDescription | string | optional | Product description; when A+ content exists, this is a JSON string (see A+ structure below) Example: null |
data.products[].description | string | optional | Product description Example: null |
data.products[].dimension | string | optional | Product dimensions Example: null |
data.products[].weight | string | optional | Weight Example: null |
data.products[].tags | string | optional | Tag list Example: null |
data.products[].badges | string | optional | Badge list Example: null |
data.products[].climatePledgeFriendly | boolean | optional | Whether it is Climate Pledge Friendly Example: false |
data.products[].snapEbtEligible | boolean | optional | Whether SNAP EBT eligible Example: false |
data.products[].boughtLastMonth | string | optional | Units bought last month (string) Example: null |
data.products[].boughtLastMonthCount | integer | optional | Units bought last month (number) Example: 1 |
data.products[].reviewsSummary | string | optional | Review summary Example: null |
data.products[].reviewsImages | array | optional | Review image list Example: [] |
data.products[].sourceTool | string | optional | Source tool Example: null |
data.products[].sourceType | string | optional | Source type: amazon Example: null |
data.products[].pageFileUrl | string | optional | Processed product JSON file URL; not raw HTML Example: https://example.com/product.json |
data.products[].rawHtmlFile | string | optional | Raw Amazon product-page HTML URL from the upstream provider; optional and matched to the containing product ASIN Example: https://example.com/product.html |
data.products[].manufacturer | string | optional | Manufacturer Example: null |
data.products[].productDimensions | string | optional | Product dimensions Example: null |
data.products[].upc | string | optional | UPC code Example: null |
data.products[].units | string | optional | Units Example: null |
data.products[].review | integer | optional | Number of reviews Example: 1 |
data.products[].fiveStar | integer | optional | Five-star review count Example: 1 |
data.products[].fourStar | integer | optional | Four-star review count Example: 1 |
data.products[].threeStar | integer | optional | Three-star review count Example: 1 |
data.products[].twoStar | integer | optional | Two-star review count Example: 1 |
data.products[].oneStar | integer | optional | One-star review count Example: 1 |
data.products[].items | array | optional | Variant item list, each item contains name (name), asin (ASIN code), position (position), selected (whether selected) Example: [] |
data.products[].position | integer | optional | Module order Example: 1 |
data.products[].image | string | optional | A+ module main image URL (often contains aplus-media-library-service-media) Example: https://example.com/image.jpg |
data.products[].carouselImages | array | optional | Optional; carousel sub-items, each containing position / title / image Example: [] |
data.asin | string | optional | ASIN code Example: B072MQ5BRX |
data.title | string | optional | Title Example: null |
data.extractedPrice | number | optional | Extracted price Example: 1 |
data.products[].priceUnit | string | optional | Unit price Example: null |
data.extractedPriceUnit | number | optional | Extracted unit price Example: 1 |
data.delivery | array | optional | Delivery information Example: [] |
data.position | integer | optional | Position Example: 1 |
data.extractedOldPrice | number | optional | Extracted original price Example: 1 |
data.rating | number | optional | Rating Example: 1 |
data.reviews | integer | optional | Number of reviews Example: 1 |
data.prime | boolean | optional | Whether it is a Prime item Example: false |
data.sponsored | boolean | optional | Whether it is a sponsored item Example: false |
data.climatePledgeFriendly | boolean | optional | Whether Climate Pledge Friendly Example: false |
data.badges | array | optional | Badge list Example: [] |
data.products[].text | string | optional | Review content Example: null |
data.products[].author | string | optional | Author Example: null |
data.authorImage | string | optional | Author avatar Example: https://example.com/image.jpg |
data.products[].authorLink | string | optional | Author link Example: null |
data.date | string | optional | Date Example: 2026-01-01 |
data.verifiedPurchase | boolean | optional | Whether verified purchase Example: false |
data.products[].helpfulVotes | string | optional | Helpful vote count Example: null |
data.products[].productSize | string | optional | Product size Example: null |
data.products[].productFlavorName | string | optional | Product flavor name Example: null |
data.sourceType | string | optional | Provider-specific source platform type. Example: null |
data.sourceTool | string | optional | Provider-specific source tool name. Example: null |
data.costTime | integer | optional | Execution time reported by the upstream provider. Example: null |
data.page | integer | optional | Current page returned by the upstream provider. Example: null |
data.pageSize | integer | optional | Page size returned by the upstream provider. Example: null |
data.pageItemCount | integer | optional | Item count on the current page returned by the upstream provider. Example: null |
data.totalPage | integer | optional | Total page count returned by the upstream provider. Example: null |
data.dataSnapshotMonth | string | optional | Data snapshot month returned by the upstream provider. Example: null |
| Name | Type | Required | Description |
|---|---|---|---|
data | null | required | Data value used by this API operation. |