# Walmart Product Details by ID

> Walmart Product Details by ID is a paid API for AI agents from stableninja.dev, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Fetches detailed product information from Walmart for a given product ID, with optional US or Canada domain selection.

## Facts

- Endpoint: GET https://stableninja.dev/api/walmart/product-details
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/stableninja-dev-08c75538
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_VeWIEegxXzA8Fi4qb3JQj

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability stableninja-dev-08c75538
```

Example prompt: Can you pull up the full product details for Walmart item ID 10292863 on the US site — I need the name, price, and description.

## When to prefer this

Use this endpoint when you have a specific Walmart product ID and need full product details (name, price, description, specs) for either the US or Canadian Walmart storefront. Prefer this over keyword search endpoints when the exact product ID is already known. Use the sibling 'reviews' or 'seller offers' endpoints for review data or pricing from third-party sellers.

## Known failure modes

- Invalid or nonexistent product ID returns an error or empty result
- Unsupported domain value (other than 'us' or 'ca') causes a validation error
- Product ID is required — omitting it triggers a schema validation failure
- Walmart may rate-limit or block scraping, causing upstream fetch failures
- Payment failure or insufficient USDC balance blocks the request at the x402 layer

## How this service works

Fetch Walmart product details by product ID.

## Output

Returns structured product details for the specified Walmart product ID, including name, price, description, availability, and other product attributes. Supports US and Canada Walmart domains.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {
   "domain": "us",
   "product_id": "10292863"
  }
 }
}
```

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "required": {
   "type": "string"
  },
  "properties": {
   "type": "string"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/stableninja-dev-08c75538/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from stableninja.dev](https://www.zero.xyz/host/stableninja.dev/llms.txt)
