# Wirecutter Recommendation Search

> Wirecutter Recommendation Search is a paid API for AI agents from stableproduct.dev, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Searches the persisted Wirecutter product recommendation database by product type, pick name, review title, category, and model tokens using lexical matching.

## Facts

- Endpoint: GET https://stableproduct.dev/api/wirecutter/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/stableproduct-dev-7d09525e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_H3O7ZPWzGPO3Rrd5rMjRW

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 stableproduct-dev-7d09525e
```

Example prompt: Search the Wirecutter recommendation database for the best office chairs — show me the top 10 picks with active purchase offers.

## When to prefer this

Use this endpoint when an agent needs to surface editorially-vetted product recommendations from Wirecutter specifically, rather than general web search or price comparison. Best for answering 'what is the best X to buy' style queries where Wirecutter's expert pick database is the authoritative source. Prefer concise product/category nouns as queries rather than natural language sentences.

## Known failure modes

- Empty results when query terms are misspelled or too vague — lexical search requires concise exact product nouns
- No results for very new product categories not yet in the persisted database
- Pagination offset beyond available results returns empty array
- Payment failure (402) if x402 USDC payment is not provided or insufficient

## How this service works

Search the persisted Wirecutter recommendation database by product type, pick name, review title, category, and model tokens. Search is lexical today; pass concise, spelling-corrected product/category nouns instead of vague natural-language intent.

## Output

Returns a list of Wirecutter product picks matching the query, including pick names, review titles, product categories, and optionally active purchase offers (prices, retailer links). Results are paginated via limit/offset.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {
   "limit": 10,
   "query": "office chair",
   "offset": 0,
   "include_offers": true,
   "include_inactive_offers": false
  }
 }
}
```

## 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/stableproduct-dev-7d09525e/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from stableproduct.dev](https://www.zero.xyz/host/stableproduct.dev/llms.txt)
