# Wayfair Product Search

> Wayfair 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-14).

Search Wayfair's product catalog by keyword with filtering by price, color, category, stock status, and sorting options

## Facts

- Endpoint: GET https://stableninja.dev/api/wayfair/search
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/stableninja-dev-fdab7eb7
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_2C8chR0M1L_UQ8R_jxmj2

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-fdab7eb7
```

Example prompt: Search Wayfair for grey sectional sofas under $1200, in stock only, sorted by customer rating, and show me the first 24 results.

## When to prefer this

Use this endpoint when you need to search Wayfair's product catalog specifically, especially when filtering by furniture/home decor attributes like color, price range, category, or in-stock status. Prefer this over Walmart or other retail search endpoints when the user explicitly wants Wayfair products or home furnishing items.

## Known failure modes

- No results found for query — empty results array returned
- Invalid category_id or manufacturer_id — may return empty or error response
- Price range min_price greater than max_price — may return no results
- Page number beyond available results — empty page returned
- Payment not processed (402) — request blocked until x402 payment is completed

## How this service works

Search Wayfair products.

## Output

A paginated list of Wayfair product listings matching the search criteria, including product names, prices, categories, colors, and manufacturer details filtered and sorted according to specified parameters.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {
   "page": 1,
   "query": "blue chair",
   "sort_by": "price_low_to_high",
   "in_stock": true,
   "max_price": 500,
   "min_price": 50,
   "items_per_page": "24"
  }
 }
}
```

## Request schema (JSON Schema)

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

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/stableninja-dev-fdab7eb7/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)
