Nexscope logo

Walmart Product Detail 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

Query Walmart product details via WallySmarter, including pricing history and sales trends.

Try this API
Endpoint
https://claw-callback.nexscope.ai/api/skill-api/v1/skills/walmart-product-detail/run
MCP method
nexscope_walmart_product_detail

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/walmart-product-detail/run

Run an API

Request parameters documented by ecommerce.walmart-product-detail.

Slugwalmart-product-detail
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/walmart-product-detail/run \
  -H "Authorization: Bearer nk_xxxxxxxxxxxxxxxxx" \
  -H "Content-Type: application/json" \
  -d '{   "includeStats": false,   "productId": "5169493923" }'
All categories/ Amazon Marketplace Intelligence
POSThttps://claw-callback.nexscope.ai/api/skill-api/v1/skills/walmart-product-detail/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/walmart-product-detail/run
AuthBearer API key
Content-Typeapplication/json

Request body

NameTypeRequiredDescription
productIdintegerrequired
Product ID (ItemId), the numeric ID contained in the product detail link. For example: the 5169493923 in https://www.walmart.com/ip/5169493923
Example: 5169493923
includeStatsbooleanoptional
Whether to include historical price/historical sales, default true
Example: false

Request example

{
  "includeStats": false,
  "productId": "5169493923"
}

Response body

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

NameTypeRequiredDescription
codestringoptional
Return code ("200" indicates success)
msgstringoptional
Message ("ok" on success, error description on failure)
totalintegeroptional
Number of products returned (typically 1 for this endpoint)
Example: 1
productsarrayoptional
Product list (see product object below)
Example: []
columnsarrayoptional
Column definitions (metadata describing each field in products, including field, title, cellType, etc.)
Example: []
typestringoptional
Response render type (fixed value "productWorkbenches")
costTimeintegeroptional
API elapsed time (milliseconds)
Example: 1
costTokenintegeroptional
Token cost
Example: 1
products[].usItemIdintegeroptional
Internal product ID (same as the requested productId)
Example: 1
products[].productIdstringoptional
Walmart product unique identifier (alphanumeric, e.g., "6YBM50F6ZXAE")
Example: example-id
products[].titlestringoptional
Product name
products[].descriptionstringoptional
Product description
products[].pricenumberoptional
Current selling price (USD)
Example: 1
products[].wasPricenumberoptional
Striketrough price (USD), may be null when no discount
Example: 1
products[].minPricenumberoptional
Minimum price (USD)
Example: 1
products[].brandstringoptional
Brand name
products[].ratingnumberoptional
Product rating (0.0-5.0)
Example: 1
products[].reviewsintegeroptional
Review count
Example: 1
products[].salesEstimateintegeroptional
Sales estimate (units, in recent period)
Example: 1
products[].revenuenumberoptional
Revenue estimate (USD)
Example: 1
products[].sellerNamestringoptional
Seller name
products[].fulfillmentTypestringoptional
Fulfillment type: "MARKETPLACE" (third-party seller self-fulfilled) or "WFS" (Walmart Fulfillment Services)
products[].productPageUrlstringoptional
Product page URL
Example: https://example.com/image.jpg
products[].imageUrlstringoptional
Product image URL (thumbnail)
Example: https://example.com/image.jpg
products[].departmentNamestringoptional
Department name (e.g., "Cell Phones")
products[].departmentIdintegeroptional
Department ID
Example: 1
products[].listingScoreintegeroptional
Listing quality score
Example: 1
products[].contentScoreintegeroptional
Content quality score
Example: 1
products[].outOfStockintegeroptional
Whether out of stock (0=in stock, 1=out of stock)
Example: 1
products[].sponsoredintegeroptional
Whether a sponsored product (0=no, 1=yes)
Example: 1
products[].isBrandedintegeroptional
Whether a branded product (0=no, 1=yes)
Example: 1
products[].multipleOptionsAvailableintegeroptional
Whether there are variants (0=no, 1=yes)
Example: 1
products[].createdAtstringoptional
First indexed time by WallySmarter (format: yyyy-MM-dd'T'HH:mm:ss.SSSSSS'Z')
products[].updatedAtstringoptional
Most recent data update time (same format as above)
Example: 2026-01-01
products[].statsobjectoptional
Historical statistics (only returned when includeStats=true, otherwise null. See structure below)
Example: {}
products[].sourceToolstringoptional
Source tool identifier
products[].sourceTypestringoptional
Product source platform (fixed value "walmart")
stats.pricearrayoptional
Historical selling price time series (sorted by date ascending). Each item is a single date-price mapping
Example: []
stats.salesarrayoptional
Historical sales time series (sorted by date ascending). Each item is a single date-sales mapping
Example: []
errcodeintegeroptional
Upstream status code returned by the provider.
errmsgstringoptional
Upstream status message returned by the provider.
messagestringoptional
Provider-specific message.
titlestringoptional
Provider-specific response title.
sourceTypestringoptional
Provider-specific source platform type.
sourceToolstringoptional
Provider-specific source tool name.
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,
  "products": [
    {
      "usItemId": 1,
      "productId": "example-id",
      "price": 1,
      "wasPrice": 1,
      "minPrice": 1,
      "rating": 1,
      "reviews": 1,
      "salesEstimate": 1,
      "revenue": 1,
      "productPageUrl": "https://example.com/image.jpg",
      "imageUrl": "https://example.com/image.jpg",
      "departmentId": 1,
      "listingScore": 1,
      "contentScore": 1,
      "outOfStock": 1,
      "sponsored": 1,
      "isBranded": 1,
      "multipleOptionsAvailable": 1,
      "updatedAt": "2026-01-01",
      "stats": {}
    }
  ],
  "columns": [],
  "costTime": 1,
  "costToken": 1,
  "stats": {
    "price": [],
    "sales": []
  }
}

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_walmart_product_detail",
    "arguments": {
      "includeStats": false,
      "productId": "5169493923"
    }
  }
}

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/walmart-product-detail/run
MCP method
nexscope_walmart_product_detail
cURL
curl -X POST \
  https://claw-callback.nexscope.ai/api/skill-api/v1/skills/walmart-product-detail/run \
  -H "Authorization: Bearer nk-..." \
  -H "Content-Type: application/json" \
  -d '{ "includeStats": false, "productId": "5169493923" }'
Response
No response yet. Run the request to see the response here.