Shopee Marketplace
Shopee Product Detail MCP Tool
Returns normalized public ecommerce research data with a fixed read-only provider path.
MCP tool name
nexscope_shopee_product_detailLegacy MCP endpoint
/api/skill-api/v1/mcpJSON-RPC method
tools/callAuthentication
Send the user API key as a bearer token on every MCP JSON-RPC request.
Authorization: Bearer nk-xxxxxxxxxxxxxxxxxIf authentication is missing or invalid, ask the user to open API Access and copy a valid key before calling this tool.
Call this MCP tool
Use tools/call with the MCP tool name below. The arguments object should match the table on this page.
{
"jsonrpc": "2.0",
"id": "shopee-product-detail-1",
"method": "tools/call",
"params": {
"name": "nexscope_shopee_product_detail",
"arguments": {
"productUrl": "https://shopee.sg/example-i.9641401.29691169956"
}
}
}Legacy endpoint
POST /api/skill-api/v1/mcpCanonical detail URL
https://www.nexscope.ai/mcp-map/shopee-product-detailArguments
| Name | Type | Required | Meaning |
|---|---|---|---|
productUrl | string | required | HTTPS Shopee product URL ending in -i.<shopId>.<itemId> on a supported Shopee host Example: https://shopee.sg/example-i.9641401.29691169956 |
Response fields
Treat structuredContent as the programmatic API response payload.
| 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 | 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. |
Any of option 1 — requires product
| Name | Type | Required | Description |
|---|---|---|---|
data | object | required | Data value used by this API operation. |
data.product | object | required | Product value used by this API operation. |
data.product.itemId | string | required | Item id value used by this API operation. |
data.product.shopId | string | required | Shop id value used by this API operation. |
data.product.url | string | optional | Url value used by this API operation. |
data.product.name | string | optional | Name value used by this API operation. |
data.product.brand | string | object | null | optional | Brand value used by this API operation. |
data.product.category | string | object | array | null | optional | Category value used by this API operation. |
data.product.images | array | optional | Images value used by this API operation. |
data.product.videos | array | optional | Videos value used by this API operation. |
data.product.price | number | object | null | optional | Price value used by this API operation. |
data.product.currency | string | optional | Currency value used by this API operation. |
data.product.sold | integer | number | null | optional | Sold value used by this API operation. |
data.product.rating | number | null | optional | Rating value used by this API operation. |
data.product.stock | integer | number | object | null | optional | Stock value used by this API operation. |
data.product.models | array | optional | Models value used by this API operation. |
Any of option 2
| Name | Type | Required | Description |
|---|---|---|---|
data | null | required | Data value used by this API operation. |
Examples
Example arguments
{
"productUrl": "https://shopee.sg/example-i.9641401.29691169956"
}Example structuredContent
{
"data": {
"product": {
"images": [],
"name": "Example Shopee product",
"itemId": "29691169956",
"shopId": "9641401",
"models": []
}
},
"code": 0,
"msg": null,
"ts": "0",
"time": "2026-01-01 00:00:00",
"cost": "-1",
"traceId": null
}