Walmart Marketplace Intelligence
Walmart Product Analysis MCP Tool
Returns normalized public ecommerce research data with a fixed read-only provider path.
MCP tool name
nexscope_walmart_product_analysisLegacy 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": "walmart-product-analysis-1",
"method": "tools/call",
"params": {
"name": "nexscope_walmart_product_analysis",
"arguments": {
"productId": "5169493923",
"operation": "detail"
}
}
}Legacy endpoint
POST /api/skill-api/v1/mcpCanonical detail URL
https://www.nexscope.ai/mcp-map/walmart-product-analysisArguments
operation: searchByName
| Name | Type | Required | Description |
|---|---|---|---|
operation | string | required | Operation: searchByName, detail, trend, or salesVolume Constant: searchByName |
name | string | required | Product name required by searchByName Minimum length: 1 |
pageIndex | integer | optional | Page number, starting at 1 Default: 1 Minimum: 1 |
operation: detail
| Name | Type | Required | Description |
|---|---|---|---|
operation | string | required | Operation: searchByName, detail, trend, or salesVolume Constant: detail |
productId | string | required | Walmart product ID required by detail, trend, and salesVolume Minimum length: 1 |
operation: trend
| Name | Type | Required | Description |
|---|---|---|---|
operation | string | required | Operation: searchByName, detail, trend, or salesVolume Constant: trend |
productId | string | required | Walmart product ID required by detail, trend, and salesVolume Minimum length: 1 |
operation: salesVolume
| Name | Type | Required | Description |
|---|---|---|---|
operation | string | required | Operation: searchByName, detail, trend, or salesVolume Constant: salesVolume |
productId | string | required | Walmart product ID required by detail, trend, and salesVolume Minimum length: 1 |
queryDate | string | optional | Sales-volume start date in YYYY-MM-DD format Format: date |
queryEndDate | string | optional | Sales-volume end date in YYYY-MM-DD format Format: date |
pageIndex | integer | optional | Page number, starting at 1 Default: 1 Minimum: 1 |
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 operation, value, requestConsumed
| Name | Type | Required | Description |
|---|---|---|---|
data | object | required | Data value used by this API operation. |
data.operation | any | required | Operation value used by this API operation. |
data.value | any | required | Value value used by this API operation. |
data.requestConsumed | integer | required | Request consumed value used by this API operation. Minimum: 0 |
operation: searchByName
| Name | Type | Required | Description |
|---|---|---|---|
data | object | required | Data value used by this API operation. |
data.operation | string | optional | Operation value used by this API operation. Constant: searchByName |
data.value | array | optional | Value value used by this API operation. |
operation: salesVolume
| Name | Type | Required | Description |
|---|---|---|---|
data | object | required | Data value used by this API operation. |
data.operation | string | optional | Operation value used by this API operation. Constant: salesVolume |
data.value | array | optional | Value value used by this API operation. |
data.value[] | array | required | Item in data value. Minimum items: 3 Maximum items: 3 |
data.value[][0] | string | required | Item in data value[]. Format: date |
data.value[][1] | number | required | Item in data value[]. |
data.value[][2] | integer | required | Item in data value[]. |
One of option 3
| Name | Type | Required | Description |
|---|---|---|---|
data | object | required | Data value used by this API operation. |
data.operation | any | optional | Operation value used by this API operation. Allowed: detail, trend |
data.value | object | optional | Value 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
{
"productId": "5169493923",
"operation": "detail"
}Example structuredContent
{
"data": {
"operation": "detail",
"requestConsumed": 1,
"value": {
"ProductId": "5169493923",
"Title": "Example Walmart product",
"Price": 1
}
},
"code": 0,
"msg": null,
"ts": "0",
"time": "2026-01-01 00:00:00",
"cost": "-1",
"traceId": null
}