# Walmart Product Search

> Walmart Product Search 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).

Search Walmart's product catalog by keyword with filtering and sorting options

## Facts

- Endpoint: GET https://stableninja.dev/api/walmart/search
- 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-29806cd3
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_fmzus08zRNbDyYQmKqWUz

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-29806cd3
```

Example prompt: Search Walmart for 'wireless earbuds' under $50, sorted by best match, in the US — show me the first page of results.

## When to prefer this

Use this endpoint when you need to search Walmart's product catalog by keyword, especially when you want to filter by price range, sort results, or target a specific store or zip code. Prefer this over the category-browse endpoint when you have a specific product keyword in mind rather than a category to browse.

## Known failure modes

- Missing required 'query' parameter returns a validation error
- Invalid sort_by value returns an error
- Invalid domain value (not 'us' or 'ca') returns a validation error
- No results found for very specific or misspelled queries
- Rate limiting or payment failure for high-volume requests
- Invalid zip code or state format may return empty or incorrect results

## How this service works

Search Walmart products by keyword.

## Output

A list of Walmart product search results matching the keyword query, including product names, prices, and other catalog details, filtered and sorted according to the specified parameters.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {
   "page": 1,
   "query": "wireless earbuds",
   "domain": "us",
   "sort_by": "price_low",
   "max_price": 50
  }
 }
}
```

## 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-29806cd3/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)
